/* New Style CSS */
/* @import url('https://fonts.googleapis.com/css2?family=Inter:ital,opsz,wght@0,14..32,100..900;1,14..32,100..900&family=Lexend:wght@100..900&display=swap'); */

html {
  scroll-behavior: smooth;
}

body {
  font-family: "Quicksand", sans-serif !important;
  letter-spacing: 0.05rem;
  font-weight: 500;
}

h1,
.h1,
h2,
.h2,
h3,
.h3,
h4,
.h4,
h5,
.h5,
h6,
.h6 {
  font-family: "DM Serif Display", serif !important;
  letter-spacing: 0;
}

::selection {
  background-color: var(--theme-color);
  color: #fff;
}

body a:focus,
body button:focus {
  outline: 0;
}

body a {
  color: var(--theme-color);
}

body a:focus,
body button:focus,
body .button.alt:focus,
body input:focus,
body textarea:focus,
body input[type="button"]:focus,
body input[type="reset"]:focus,
body input[type="submit"]:focus,
body input[type="email"]:focus,
body input[type="tel"]:focus,
body input[type="url"]:focus,
body input[type="password"]:focus,
body input[type="search"]:focus {
  outline-color: var(--theme-color);
}

body label {
  font-weight: 500;
}

.loader {
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  position: fixed;
  inset: 0;
  background: rgba(255, 255, 255, 1);
  backdrop-filter: blur(6px);
  z-index: 9999;
}

/* From Uiverse.io by Smit-Prajapati */
.loader-inner {
  height: 2px;
  width: 300px;
  background: rgb(255 255 255);
  position: relative;
  overflow: hidden;
}

.loader-inner .black_overlay {
  background: linear-gradient(87deg, rgb(251 251 251) 0%, rgba(0, 0, 0, 0.14) 30%, rgba(0, 0, 0, 0.14) 70%, rgb(255 255 255) 100%);
  position: absolute;
  inset: 0px;
}

.loader-inner .light {
  width: 70px;
  height: 100%;
  position: absolute;
  left: -20%;
  top: 0px;
  background: linear-gradient(87deg,
      rgba(0, 0, 0, 0) 0%,
      rgb(241, 63, 138) 40%,
      rgb(241, 63, 138) 60%,
      rgba(0, 0, 0, 0) 100%);
  animation: light 2s infinite ease-in-out;
}

.loader-text {
  font-size: 16px;
  color: #303030;
  font-weight: 600;
  letter-spacing: 6px;
  text-transform: uppercase;
  display: block;
  position: absolute;
  inset: auto;
  transform: translateY(-30px);
}

@keyframes light {
  from {
    left: -30%;
  }

  to {
    left: 100%;
  }
}


.top-header-area .header-icons a svg {
  width: 22px;
  height: 22px;
}

/* =========================================
   Homepage Hero Slider - Creative v2
   ========================================= */

.homepage-slider {
  height: auto;
  padding: 0;
  overflow: hidden;
  position: relative;
}

.homepage-slider .owl-nav {
  display: none !important;
}

.ti-widget[data-wkey="feed-instagram"][data-style="custom-style"][data-widget-type="social"] .ti-widget-card,
.ti-lightbox[data-wkey="feed-instagram"] .ti-widget-card {
  border-radius: 16px !important;
}

.ti-widget[data-wkey="feed-instagram"][data-style="custom-style"][data-widget-type="social"] .ti-widget-card:not(.ti-lightbox *)[data-card-ratio="portrait"] .ti-card-body .ti-card-media:not(.ti-grid-type) {
  padding-bottom: 115% !important;
}

.ti-widget[data-wkey="feed-instagram"][data-style="custom-style"][data-widget-type="social"] .ti-card-header .ti-profile-image {
  border: 0;
}

/* ==== EACH SLIDE ==== */
.single-homepage-slider {
  position: relative;
  min-height: 580px;
  display: flex !important;
  align-items: center;
  overflow: hidden;
  background: linear-gradient(135deg, #fff0f6 0%, #ffd6eb 28%, #f5a8cf 52%, #d9649e 72%, #a8235e 100%);
}

/* ---- Decorative background layers ---- */

/* Large soft blob top-left */
.single-homepage-slider::before {
  content: '';
  position: absolute;
  top: -100px;
  left: -120px;
  width: 560px;
  height: 560px;
  background: radial-gradient(circle, rgba(255, 255, 255, 0.65) 0%, transparent 65%);
  pointer-events: none;
  z-index: 1;
  border-radius: 50%;
}

/* Floating circle accent top-right */
.single-homepage-slider::after {
  content: '';
  position: absolute;
  top: -40px;
  right: -60px;
  width: 300px;
  height: 300px;
  background: rgba(255, 255, 255, 0.08);
  border-radius: 50%;
  pointer-events: none;
  z-index: 1;
  animation: floatBubble 6s ease-in-out infinite;
}

@keyframes floatBubble {

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

  50% {
    transform: translateY(-18px) scale(1.05);
  }
}

/* Decorative ring (bottom-left) */
.single-homepage-slider .slide-ring {
  position: absolute;
  bottom: -80px;
  left: 30%;
  width: 200px;
  height: 200px;
  border: 28px solid rgba(255, 255, 255, 0.07);
  border-radius: 50%;
  pointer-events: none;
  z-index: 1;
  animation: floatBubble 8s ease-in-out infinite reverse;
}

/* Dot grid pattern overlay */
.single-homepage-slider .slide-dots-bg {
  position: absolute;
  inset: 0;
  background-image: radial-gradient(circle, rgba(255, 255, 255, 0.18) 1.5px, transparent 1.5px);
  background-size: 28px 28px;
  pointer-events: none;
  z-index: 1;
  opacity: 0.6;
}

.single-homepage-slider .container {
  position: relative;
  z-index: 3;
}

.single-homepage-slider .row {
  min-height: 580px;
  align-items: center;
}

/* ==== LEFT: TEXT CONTENT ==== */
.single-homepage-slider .hero-text {
  display: flex;
  align-items: center;
  padding: 60px 0 60px 10px;
}

.single-homepage-slider .hero-text-tablecell {
  max-width: 520px;
}

/* Eyebrow tag (badge above heading) */
.single-homepage-slider .hero-text-tablecell .slide-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  background: rgba(255, 255, 255, 0.25);
  backdrop-filter: blur(8px);
  border: 1px solid rgba(255, 255, 255, 0.45);
  border-radius: 30px;
  padding: 5px 14px 5px 10px;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: #fff;
  margin-bottom: 18px;
}

.single-homepage-slider .hero-text-tablecell .slide-eyebrow::before {
  content: '';
  display: inline-block;
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: #fff;
  box-shadow: 0 0 6px rgba(255, 255, 255, 0.9);
  animation: pulse 1.8s ease-in-out infinite;
}

@keyframes pulse {

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

  50% {
    transform: scale(1.4);
    opacity: 0.7;
  }
}

.single-homepage-slider .hero-text-tablecell h1,
.single-homepage-slider .hero-text-tablecell h2 {
  font-family: "DM Serif Display", serif !important;
  font-size: clamp(32px, 4vw, 52px) !important;
  font-weight: 700 !important;
  line-height: 1.1 !important;
  color: #1a1a1a !important;
  margin: 0 0 16px !important;
  letter-spacing: -0.8px;
  text-shadow: 0 2px 20px rgba(255, 255, 255, 0.3);
}

.single-homepage-slider .hero-text-tablecell .subtitle {
  font-size: 15.5px !important;
  font-weight: 500 !important;
  color: #3d1a2a !important;
  line-height: 1.65 !important;
  margin-bottom: 32px !important;
  text-transform: none !important;
  letter-spacing: 0 !important;
}

/* Stats / Trust line */
.single-homepage-slider .hero-stat {
  display: flex;
  align-items: center;
  gap: 6px;
  font-size: 13px;
  font-weight: 700;
  color: #1a1a1a;
  margin-bottom: 28px;
  opacity: 0.85;
}

.single-homepage-slider .hero-stat span.stat-val {
  font-size: 18px;
  font-weight: 800;
  color: #7a0030;
}

/* Buttons */
.single-homepage-slider .hero-btns {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  align-items: center;
}

.single-homepage-slider .boxed-btn {
  display: inline-flex !important;
  align-items: center;
  gap: 8px;
  padding: 14px 32px !important;
  background: #be205d !important;
  color: #fff !important;
  border-radius: 30px !important;
  font-size: 14px !important;
  font-weight: 700 !important;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  text-decoration: none !important;
  border: none !important;
  box-shadow: 0 8px 24px rgba(168, 35, 94, 0.45), inset 0 1px 0 rgba(255, 255, 255, 0.2);
  transition: all 0.25s ease;
  position: relative;
  overflow: hidden;
}

.single-homepage-slider .boxed-btn::after {
  content: '';
  position: absolute;
  top: 50%;
  left: 50%;
  width: 0;
  height: 0;
  background: rgba(255, 255, 255, 0.2);
  border-radius: 50%;
  transform: translate(-50%, -50%);
  transition: width 0.4s ease, height 0.4s ease;
}

.single-homepage-slider .boxed-btn:hover::after {
  width: 280px;
  height: 280px;
}

.single-homepage-slider .boxed-btn:hover {
  background: #8c1042 !important;
  transform: translateY(-3px);
  box-shadow: 0 14px 32px rgba(168, 35, 94, 0.5);
  color: #fff !important;
}

.single-homepage-slider .bordered-btn {
  display: inline-flex !important;
  align-items: center;
  padding: 13px 30px !important;
  background: rgba(255, 255, 255, 0.18) !important;
  backdrop-filter: blur(6px);
  color: #1a1a1a !important;
  border: 2px solid rgba(255, 255, 255, 0.7) !important;
  border-radius: 30px !important;
  font-size: 14px !important;
  font-weight: 700 !important;
  text-transform: uppercase;
  text-decoration: none !important;
  transition: all 0.25s ease;
}

.single-homepage-slider .bordered-btn:hover {
  background: rgba(255, 255, 255, 0.35) !important;
  color: #1a1a1a !important;
  transform: translateY(-3px);
  border-color: rgba(255, 255, 255, 1) !important;
}

/* ==== RIGHT: IMAGE ==== */
.hero-slide-banner {
  display: flex !important;
  align-items: center;
  justify-content: flex-end;
  padding: 30px 0;
  height: 100%;
  position: relative;
}

/* Glowing halo behind image */
.hero-slide-banner::before {
  content: '';
  position: absolute;
  right: -20px;
  top: 50%;
  transform: translateY(-50%);
  width: 440px;
  height: 440px;
  background: radial-gradient(circle, rgba(255, 255, 255, 0.22) 0%, transparent 68%);
  border-radius: 50%;
  pointer-events: none;
  z-index: 0;
}

.hero-slide-banner img {
  position: relative;
  z-index: 1;
  max-height: 470px;
  width: auto;
  max-width: 100%;
  object-fit: cover;
  /* border-radius: 50% 22px 22px 50% / 50% 22px 22px 50%; */
  border-radius: 190px 0px 0px 190px !important;
  box-shadow:
    -6px 12px 50px rgba(0, 0, 0, 0.18),
    0 0 0 8px rgba(255, 255, 255, 0.12),
    0 0 0 20px rgba(255, 255, 255, 0.05);
  display: block;
  margin-left: auto;
}

/* Slide-in animation */
.homepage-slider .slick-active .hero-slide-banner img {
  animation: heroImgIn 0.75s cubic-bezier(0.22, 1, 0.36, 1) both;
}

@keyframes heroImgIn {
  from {
    opacity: 0;
    transform: translateX(50px) scale(0.95) rotate(-2deg);
  }

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

/* Text entrance animation */
.homepage-slider .slick-active .hero-text-tablecell h1,
.homepage-slider .slick-active .hero-text-tablecell h2 {
  animation: heroTextIn 0.6s 0.1s cubic-bezier(0.22, 1, 0.36, 1) both;
}

.homepage-slider .slick-active .hero-text-tablecell .subtitle {
  animation: heroTextIn 0.6s 0.2s cubic-bezier(0.22, 1, 0.36, 1) both;
}

.homepage-slider .slick-active .hero-btns {
  animation: heroTextIn 0.6s 0.3s cubic-bezier(0.22, 1, 0.36, 1) both;
}

@keyframes heroTextIn {
  from {
    opacity: 0;
    transform: translateY(24px);
  }

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

/* ==== SLIDER DOTS ==== */
.homepage-slider ul.slick-dots {
  position: absolute;
  bottom: 22px;
  left: 50%;
  transform: translateX(-50%);
  margin: 0 !important;
  margin-top: 0 !important;
  display: flex !important;
  gap: 6px;
}

.homepage-slider ul.slick-dots li {
  width: 24px;
  height: 4px;
  border-radius: 2px;
  background: rgba(255, 255, 255, 0.35);
  opacity: 1;
  transition: background 0.3s, width 0.35s cubic-bezier(0.22, 1, 0.36, 1);
}

.homepage-slider ul.slick-dots li.slick-active {
  background: #fff;
  width: 48px;
  opacity: 1;
}

.homepage-slider ul.slick-dots li button {
  display: none;
}

/* ==== RESPONSIVE ==== */
@media (max-width: 1199px) {

  .single-homepage-slider .hero-text-tablecell h1,
  .single-homepage-slider .hero-text-tablecell h2 {
    font-size: clamp(28px, 3.5vw, 42px) !important;
  }
}

/* ============================================
   Kill ALL Storefront spacing on tp-home.php
   ============================================ */
.page-template-tp-home .site-main,
.page-template-tp-home:not(.has-post-thumbnail) .site-main {
  padding-top: 0 !important;
  margin-top: 0 !important;
  margin-bottom: 0 !important;
}

/* .type-page is the <article> Storefront wraps content in */
.page-template-tp-home .type-page,
.page-template-tp-home .hentry {
  padding-top: 0 !important;
  padding-bottom: 0 !important;
  margin-top: 0 !important;
  margin-bottom: 0 !important;
}

.page-template-tp-home .entry-content,
.page-template-tp-home .entry-header,
.page-template-tp-home .site-content {
  padding-top: 0 !important;
  margin-top: 0 !important;
  padding-bottom: 0 !important;
}

@media (max-width: 991px) {

  /* ---- Slide ---- */
  .single-homepage-slider {
    min-height: auto !important;
    background: linear-gradient(160deg, #fff0f6 0%, #fdd0e8 30%, #f5a8cf 58%, #c45c95 85%, #a8235e 100%);
  }

  .single-homepage-slider .row {
    min-height: auto !important;
    flex-direction: column !important;
  }

  /* Put text FIRST, image SECOND */
  .single-homepage-slider .col-md-12.col-lg-6:first-child {
    order: 1;
  }

  .single-homepage-slider .col-md-12.col-lg-6:last-child {
    order: 2;
  }

  /* ---- Text block ---- */
  .single-homepage-slider .hero-text {
    padding: 28px 24px 20px;
    text-align: center;
  }

  .single-homepage-slider .hero-text-tablecell {
    max-width: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
  }

  .single-homepage-slider .hero-text-tablecell h1,
  .single-homepage-slider .hero-text-tablecell h2 {
    font-size: clamp(26px, 7.5vw, 36px) !important;
    text-align: center;
    color: #1a1a1a !important;
    margin-bottom: 10px !important;
  }

  .single-homepage-slider .hero-text-tablecell .subtitle {
    font-size: 14px !important;
    text-align: center;
    color: #3d1a2a !important;
    margin-bottom: 22px !important;
    max-width: 300px;
  }

  .single-homepage-slider .hero-btns {
    justify-content: center;
    flex-direction: row;
    gap: 10px;
  }

  .single-homepage-slider .boxed-btn,
  .single-homepage-slider .bordered-btn {
    padding: 12px 24px !important;
    font-size: 13px !important;
  }

  /* ---- Image block: full-width, rounded top, intentional gap below ---- */
  .hero-slide-banner {
    justify-content: center;
    padding: 0;
    width: 100%;
    /* Gap below image before next section */
    padding-bottom: 28px;
  }

  .hero-slide-banner::before {
    display: none;
  }

  .hero-slide-banner img {
    max-height: none;
    width: 92%;
    height: 240px;
    object-fit: cover;
    object-position: center top;
    /* Rounded on all corners for a card feel */
    border-radius: 24px;
    box-shadow: 0 12px 36px rgba(168, 35, 94, 0.28);
    margin: 0 auto;
    display: block;
  }

  /* ---- Decorative circles ---- */
  .single-homepage-slider::before {
    width: 280px;
    height: 280px;
    top: -50px;
    left: -60px;
  }

  .single-homepage-slider::after {
    width: 140px;
    height: 140px;
    top: -20px;
    right: -30px;
  }

  /* ---- Dots ---- */
  .homepage-slider ul.slick-dots {
    bottom: 8px;
  }

  /* ---- Slider section bottom ---- */
  .homepage-slider {
    margin-bottom: 0;
  }

  .homepage-slider .slick-list,
  .homepage-slider .slick-track {
    overflow: visible;
  }
}

@media (max-width: 480px) {
  .hero-slide-banner img {
    height: 200px;
    width: 90%;
  }

  .single-homepage-slider .hero-text {
    padding: 22px 20px 16px;
  }
}

/* ===========================
   Shiprocket Pincode Checker
   =========================== */

.single-product .summary>div:has(#shiprocket_pincode_check) {
  margin: 16px 0;
  padding: 16px 18px;
  border: 1.5px solid #eee;
  border-radius: 16px;
  background: #fafafa;
  display: flex;
  align-items: center;
  gap: 10px;
  flex-wrap: wrap;
}

#shiprocket_pincode_check {
  flex: 1 1 160px;
  padding: 10px 18px !important;
  border: 1.5px solid #ddd !important;
  border-radius: 30px !important;
  font-size: 14px !important;
  font-weight: 500 !important;
  color: #333 !important;
  background: #fff !important;
  box-shadow: none !important;
  outline: none;
  transition: border-color 0.2s ease;
  min-width: 0;
}

#shiprocket_pincode_check:focus {
  border-color: var(--theme-color) !important;
}

#check_pincode {
  flex-shrink: 0;
  padding: 10px 22px !important;
  background: var(--theme-color) !important;
  color: #fff !important;
  border: none !important;
  border-radius: 30px !important;
  font-size: 14px !important;
  font-weight: 600 !important;
  cursor: pointer;
  transition: background 0.2s, transform 0.15s;
  white-space: nowrap;
}

#check_pincode:hover {
  background: #1a1a1a !important;
  transform: translateY(-1px);
}

#pincode_response {
  width: 100%;
  font-size: 13px;
  font-weight: 600;
  padding: 2px 4px;
  color: #2e7d32;
}

#pincode_response:empty {
  display: none;
}

/* ===========================
   Tabs - Storefront Compatible
   =========================== */

.woocommerce-tabs {
  margin-top: 24px;
}

.woocommerce-tabs ul.tabs {
  list-style: none;
  margin: 0;
  padding: 0;
  border: none;
  background: transparent;
}

.woocommerce-tabs ul.tabs li {
  display: block;
  margin: 0 0 6px;
  border: none;
  background: transparent;
  border-radius: 8px;
  margin-bottom: 15px !important;
}

.woocommerce-tabs ul.tabs li::before,
.woocommerce-tabs ul.tabs li::after {
  display: none !important;
  content: none !important;
  box-shadow: none !important;
  background: none !important;
}

.woocommerce-tabs ul.tabs li a {
  display: block;
  padding: 12px 16px !important;
  font-size: 14px;
  font-weight: 600;
  color: #666;
  text-decoration: none;
  border-radius: 8px;
  border-left: 3px solid transparent;
  background: #f7f7f7;
  transition: background 0.2s, color 0.2s, border-color 0.2s;
}

.woocommerce-tabs ul.tabs li a:hover {
  background: #fff0f5;
  color: var(--theme-color);
  border-left-color: var(--theme-color);
}

.woocommerce-tabs ul.tabs li.active a {
  background: #fff0f5;
  color: var(--theme-color);
  border-left: 3px solid var(--theme-color);
  font-weight: 700;
}

.woocommerce-tabs .panel {
  box-shadow: none;
}

.woocommerce-tabs .panel h1,
.woocommerce-tabs .panel h2,
.woocommerce-tabs .panel h3,
.woocommerce-tabs .panel h4 {
  font-size: 17px;
  font-weight: 700;
  color: #222;
  margin: 20px 0 10px;
  padding-bottom: 7px;
  border-bottom: 1.5px solid #f2f2f2;
}

.woocommerce-tabs .panel h2:first-child,
.woocommerce-tabs .panel h3:first-child {
  margin-top: 0;
}

.woocommerce-tabs .panel p {
  font-size: 14px;
  line-height: 1.75;
  color: #555;
  margin-bottom: 12px;
}

.single-product .woocommerce-tabs .panel ul {
  margin: 0 0 14px 0;
  padding: 0;
  list-style: none !important;
}

.single-product .woocommerce-tabs .panel ul li {
  position: relative;
  padding: 9px 14px;
  font-size: 14px;
  line-height: 1.65;
  color: #444;
  border-radius: 10px;
  background: #fafafa;
  margin-bottom: 7px;
  border-left: 3px solid var(--theme-color);
  transition: background 0.2s;
  list-style: none !important;
}

.single-product .woocommerce-tabs .panel ul li::before {
  display: none !important;
  content: none !important;
}

.single-product .woocommerce-tabs .panel ul li:hover {
  background: #fff5f9;
}

.single-product .woocommerce-tabs .panel ol {
  margin: 0 0 14px 0;
  padding: 0;
  list-style: none !important;
  counter-reset: step-counter;
}

.single-product .woocommerce-tabs .panel ol li {
  counter-increment: step-counter;
  position: relative;
  padding: 10px 14px 10px 50px;
  font-size: 14px;
  line-height: 1.65;
  color: #444;
  background: #f9f9f9;
  border-radius: 10px;
  margin-bottom: 8px;
  list-style: none !important;
}

.single-product .woocommerce-tabs .panel ol li::before {
  content: counter(step-counter) !important;
  display: flex !important;
  position: absolute;
  left: 13px;
  top: 50%;
  transform: translateY(-50%);
  width: 24px;
  height: 24px;
  background: var(--theme-color) !important;
  color: #fff !important;
  font-size: 12px;
  font-weight: 700;
  border-radius: 50%;
  align-items: center;
  justify-content: center;
  line-height: 1;
}

/* =========================================
   Floriaa Cart Drawer v3
   ========================================= */

.floriaa-cart-drawer {
  position: fixed;
  top: 0;
  right: 0;
  width: 390px;
  max-width: 100vw;
  height: 100%;
  background: #fff;
  z-index: 99999;
  display: flex;
  flex-direction: column;
  transform: translateX(110%);
  transition: transform 0.35s cubic-bezier(.4, 0, .2, 1);
  box-shadow: -4px 0 30px rgba(0, 0, 0, 0.12);
}

.floriaa-cart-drawer.active {
  transform: translateX(0);
}

.floriaa-cart-drawer-overlay {
  display: none;
  position: fixed;
  inset: 0;
  background: rgba(0, 0, 0, 0.45);
  z-index: 99998;
  backdrop-filter: blur(2px);
}

/* .floriaa-cart-drawer-overlay.active {
  display: block;
} */

.floriaa-cart-drawer-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 18px 20px 16px;
  border-bottom: 1px solid #f0f0f0;
  flex-shrink: 0;
}

.floriaa-cart-header-left {
  display: flex;
  align-items: center;
  gap: 8px;
}

.floriaa-cart-title {
  font-size: 16px;
  font-weight: 700;
  color: #1a1a1a;
  font-family: "DM Serif Display", serif;
}

.floriaa-cart-count {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 22px;
  height: 22px;
  background: var(--theme-color);
  color: #fff;
  font-size: 11px;
  font-weight: 700;
  border-radius: 50%;
  line-height: 1;
}

.floriaa-cart-drawer-close {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 34px;
  height: 34px;
  border: 1.5px solid #ddd;
  border-radius: 50%;
  background: #fff;
  font-size: 20px;
  color: #444;
  cursor: pointer;
  transition: all 0.2s;
  padding: 0;
  line-height: 1;
}

.floriaa-cart-drawer-close:hover {
  background: #f0f0f0;
  color: #111;
}

.floriaa-cart-drawer-content {
  flex: 1 1 auto;
  overflow-y: auto;
  overflow-x: hidden;
  -webkit-overflow-scrolling: touch;
  padding-bottom: 8px;
}

.floriaa-cart-drawer-content .woocommerce-mini-cart {
  list-style: none !important;
  margin: 0;
  padding: 0;
}

.floriaa-cart-drawer-content .mini_cart_item {
  list-style: none !important;
  border-bottom: 1px solid #f5f5f5;
}

.fmc-item {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  padding: 16px 20px;
}

.fmc-img-wrap {
  position: relative;
  flex-shrink: 0;
  width: 75px;
  height: 75px;
  border-radius: 12px;
  overflow: visible;
}

.fmc-img-wrap a,
.fmc-img-wrap img {
  max-width: 100% !important;
  display: block;
  width: 75px;
  height: 75px;
  object-fit: cover;
  border-radius: 12px;
  background: #f8f8f8;
  border: 1px solid #eee;
}

.fmc-qty-badge {
  position: absolute;
  top: -7px;
  left: -7px;
  width: 22px;
  height: 22px;
  background: #555;
  color: #fff;
  font-size: 11px;
  font-weight: 700;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 2;
  border: 2px solid #fff;
  line-height: 1;
}

.fmc-details {
  flex: 1 1 auto;
  min-width: 0;
  display: flex;
  flex-direction: column;
  gap: 4px;
}

.fmc-name-row {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 8px;
}

.fmc-name {
  font-size: 13px;
  font-weight: 700;
  color: var(--theme-color);
  text-decoration: none;
  line-height: 1.35;
  display: block;
  flex: 1;
  word-break: break-word;
}

.fmc-name:hover {
  opacity: 0.8;
}

.fmc-remove {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  width: 26px;
  height: 26px;
  border-radius: 50%;
  background: #f5f5f5;
  color: #aaa;
  text-decoration: none;
  transition: all 0.2s;
  margin-top: 1px;
}

.fmc-remove:hover {
  background: #ffe5e5;
  color: #e00;
}

.fmc-remove svg {
  display: block;
}

.fmc-details .variation,
.fmc-details dl.variation {
  font-size: 11.5px;
  color: #888;
  margin: 0;
  line-height: 1.4;
}

.fmc-details dl.variation dt,
.fmc-details dl.variation dd {
  display: inline;
  margin: 0;
}

.fmc-price-qty {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-top: 6px;
  gap: 8px;
}

.fmc-price {
  font-size: 14px;
  font-weight: 700;
  color: #222;
}

.fmc-price del {
  color: #bbb;
  font-weight: 400;
  margin-right: 3px;
  font-size: 12px;
}

.fmc-price ins {
  text-decoration: none;
  color: var(--theme-color);
}

.fmc-qty {
  display: inline-flex;
  align-items: center;
  border: 1.5px solid #ddd;
  border-radius: 20px;
  overflow: hidden;
  background: #fff;
  height: 30px;
  transition: opacity 0.2s;
}

.fmc-qty.fmc-loading {
  opacity: 0.4;
  pointer-events: none;
}

.fmc-qty-btn {
  width: 30px;
  height: 28px;
  border: none;
  background: transparent;
  font-size: 16px;
  color: #333;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background 0.15s, color 0.15s;
  flex-shrink: 0;
  padding: 0;
  line-height: 1;
}

.fmc-qty-btn:hover {
  background: var(--theme-color);
  color: #fff;
}

.fmc-qty-num {
  min-width: 26px;
  text-align: center;
  font-size: 13px;
  font-weight: 700;
  color: #333;
  line-height: 28px;
  padding: 0 2px;
}

.fmc-footer {
  flex-shrink: 0;
  padding: 16px 20px 22px;
  border-top: 1px solid #f0f0f0;
  background: #fff;
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.fmc-subtotal {
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 14px;
  color: #555;
}

.fmc-subtotal strong {
  font-size: 16px;
  font-weight: 800;
  color: #1a1a1a;
}

.fmc-checkout-btn {
  display: block;
  width: 100%;
  text-align: center;
  padding: 14px 20px;
  background: var(--theme-color);
  color: #fff !important;
  font-size: 14px;
  font-weight: 700;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  border-radius: 30px;
  text-decoration: none !important;
  cursor: pointer;
  transition: background 0.2s, transform 0.15s;
  box-sizing: border-box;
}

.fmc-checkout-btn:hover {
  background: #c41060;
  color: #fff !important;
  transform: translateY(-1px);
}

.fmc-viewcart-btn {
  display: block;
  text-align: center;
  font-size: 13px;
  font-weight: 600;
  color: #888;
  text-decoration: none;
  padding: 4px 0;
  transition: color 0.2s;
}

.fmc-viewcart-btn:hover {
  color: var(--theme-color);
  text-decoration: underline;
}

.fmc-empty {
  display: flex;
  flex-direction: column;
  align-items: center;
  padding: 60px 30px;
  gap: 14px;
  text-align: center;
}

.fmc-empty p {
  font-size: 14px;
  color: #999;
  margin: 0;
}

.fmc-empty .fmc-checkout-btn {
  width: auto;
  padding: 11px 28px;
  text-transform: none;
}

.floriaa-cart-drawer .woocommerce-mini-cart__buttons,
.floriaa-cart-drawer .woocommerce-mini-cart__total {
  display: none !important;
}


.bottom-footer-logo img {
  max-width: 90px;
  max-height: 30px;
  width: auto;
}

body ul.products,
body .wc-block-grid__products {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
}

body ul.products::before,
body ul.products::after {
  display: none;
}

ul.products li.product .woocommerce-loop-product__title,
ul.products li.product .woocommerce-loop-category__title,
ul.products li.product .wc-block-grid__product-title,
ul.products li.product .wc-block-grid__product-title>a:not(.has-font-size),
ul.products .wc-block-grid__product .woocommerce-loop-product__title,
ul.products .wc-block-grid__product .woocommerce-loop-category__title,
ul.products .wc-block-grid__product .wc-block-grid__product-title,
ul.products .wc-block-grid__product .wc-block-grid__product-title>a:not(.has-font-size),
.wc-block-grid__products li.product .woocommerce-loop-product__title,
.wc-block-grid__products li.product .woocommerce-loop-category__title,
.wc-block-grid__products li.product .wc-block-grid__product-title,
.wc-block-grid__products li.product .wc-block-grid__product-title>a:not(.has-font-size),
.wc-block-grid__products .wc-block-grid__product .woocommerce-loop-product__title,
.wc-block-grid__products .wc-block-grid__product .woocommerce-loop-category__title,
.wc-block-grid__products .wc-block-grid__product .wc-block-grid__product-title,
.wc-block-grid__products .wc-block-grid__product .wc-block-grid__product-title>a:not(.has-font-size) {
  display: -webkit-box;
  -webkit-line-clamp: 2;
  /* limit to 2 lines */
  -webkit-box-orient: vertical;
  overflow: hidden;
}

button.wc-block-components-button.wp-element-button.wc-block-components-totals-coupon__button.contained,
a.wc-block-components-button.wp-element-button.wc-block-cart__submit-button.contained {
  border-radius: 26px;
  background: #1a1a1a;
  text-decoration: none;
}

button.wc-block-components-button.wp-element-button.wc-block-components-totals-coupon__button.contained:hover,
a.wc-block-components-button.wp-element-button.wc-block-cart__submit-button.contained:hover {
  background: var(--theme-color);
}

.wc-block-components-totals-coupon .wc-block-components-panel__content {
  -webkit-animation-name: fadeIn;
  animation-name: fadeIn;
  animation-duration: 0.5s;
  animation-iteration-count: initial;
}

@container (min-width: 700px) {
  body .wc-block-checkout__sidebar {
    align-self: flex-start;
    top: 84px;
  }
}

body ul.products li.product,
body ul.products .wc-block-grid__product,
body .wc-block-grid__products li.product,
body .wc-block-grid__products .wc-block-grid__product {
  margin-bottom: 0.5em;
}

ul.products li.product img {
  width: 100%;
  height: 280px;
  /* border-radius: 5px; */
  margin: 0 auto;
  /* margin-bottom: 20px; */
  object-fit: contain;
  object-position: center;
  background: #ffffff;
  margin-bottom: 15px;
  border-radius: 16px;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
  overflow: hidden;
}

/* Wholesale Page Start */
/* HERO */
.wholesale-hero {
  background: #f5f5f5;
  /* color: #fff; */
  padding: 100px 0;
}

.wholesale-hero h1 {
  font-size: 42px;
  font-weight: 700;
}

.wholesale-hero p {
  font-size: 18px;
  margin: 15px 0 25px;
}

/* ABOUT */
.wholesale-about {
  padding: 60px 0;
  text-align: center;
}

/* BENEFITS */
.wholesale-benefits {
  background: #f5f5f5;
  padding: 60px 0;
}

.benefit-box {
  background: #fff;
  padding: 25px;
  margin-bottom: 20px;
  border-radius: 10px;
  text-align: center;
  box-shadow: 0 5px 20px rgba(0, 0, 0, 0.05);
}

.benefit-icon {
  margin-bottom: 15px;
}

.benefit-icon svg {
  width: 45px;
  height: 45px;
}

.benefit-box {
  transition: 0.3s;
}

.benefit-box:hover svg {
  stroke: var(--theme-color);
  transform: scale(1.1);
}

/* PRODUCTS */
.wholesale-products {
  padding: 60px 0;
}

.product-box {
  background: #fff;
  padding: 25px;
  margin-bottom: 20px;
  border-radius: 10px;
  border: 1px solid #eee;
}

.product-box img {
  aspect-ratio: 6 / 5;
  object-fit: scale-down;
  object-position: center;
  margin-bottom: 10px;
}

/* PARTNERS */
.wholesale-partners {
  background: #f5f5f5;
  color: #fff;
  padding: 60px 0;
}

/* STEPS */
.wholesale-steps {
  padding: 60px 0;
}

.step-card {
  position: relative;
  background: #f1f1f1;
  padding: 40px 20px 20px;
  border-radius: 12px;
  margin-bottom: 20px;
  transition: 0.3s;
}

.step-number {
  position: absolute;
  top: -20px;
  left: 50%;
  transform: translateX(-50%);
  background: var(--theme-color);
  color: #fff;
  width: 40px;
  height: 40px;
  line-height: 40px;
  border-radius: 50%;
  font-weight: bold;
  display: flex;
  align-items: center;
  justify-content: center;
}

.step-card:hover {
  background: #e8f5e9;
}

/* CONTACT */
.wholesale-contact {
  background: #222;
  color: #fff;
  padding: 60px 0;
  border-radius: 30px;
}

.wholesale-contact .btn {
  margin-top: 15px;
}

/* ===== Modern About Section ===== */
.wholesale-about-modern {
  padding: 80px 0;
  background: #ffffff;
}

/* Title */
.about-title {
  font-size: 36px;
  font-weight: 700;
  color: #222;
  margin-bottom: 20px;
}

/* Text */
.about-text {
  font-size: 16px;
  color: #666;
  line-height: 1.7;
  margin-bottom: 25px;
}

/* Points List */
.about-points {
  list-style: none;
  padding: 0;
  margin-bottom: 25px;
}

.about-points li {
  font-size: 15px;
  color: #444;
  margin-bottom: 10px;
}

/* Button */
.about-btn {
  padding: 12px 25px;
  font-size: 15px;
  border-radius: 5px;
}

/* Image */
.about-img {
  width: 100%;
  /* max-width: 450px; */
  border-radius: 12px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

/* ===== CONTACT ===== */
.contact-modern {
  background: linear-gradient(135deg, #1c1c1c, #2b2b2b);
  color: #fff;
  padding: 80px 0;
}

.contact-title {
  font-size: 36px;
  font-weight: 700;
}

.contact-subtitle {
  color: #bbb;
  margin-bottom: 25px;
}

.contact-info p {
  margin: 8px 0;
  font-size: 16px;
}

.contact-btn {
  display: inline-block;
  margin-top: 20px;
  padding: 12px 30px;
  background: linear-gradient(135deg, #ff4b7d, #ff7aa2);
  color: #fff;
  border-radius: 30px;
  text-decoration: none;
  transition: 0.3s;
}

.contact-btn:hover {
  transform: scale(1.05);
}

.partner-box {
  background: #fff;
  padding: 30px 20px;
  border-radius: 12px;
  text-align: center;
  margin-bottom: 20px;
  box-shadow: 0 5px 20px rgba(0, 0, 0, 0.05);
  transition: 0.3s;
}

.partner-box .icon {
  font-size: 40px;
  margin-bottom: 10px;
}

.partner-box:hover {
  transform: translateY(-5px);
}

/* ===== CTA SECTION ===== */
.cta-modern {
  background: linear-gradient(135deg, #f13f8a, #db88ab);
  padding: 70px 30px;
  color: #fff;
  border-radius: 12px;
  /* margin: 60px 0; */
}

/* Title */
.cta-title {
  font-size: 34px;
  font-weight: 700;
  margin-bottom: 15px;
}

.cta-title span {
  color: #ffffff;
}

/* Text */
.cta-text {
  font-size: 16px;
  color: #e8f5e9;
  line-height: 1.7;
}

/* Button */
.cta-btn {
  display: inline-block;
  background: #fff;
  color: var(--theme-color);
  padding: 14px 35px;
  font-weight: 600;
  border-radius: 50px;
  text-decoration: none;
  transition: 0.3s;
}

/* Hover */
.cta-btn:hover {
  background: var(--theme-color);
  color: #ffffff;
  transform: scale(1.05);
}

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

  .cta-modern {
    text-align: center;
  }

  .cta-btn {
    margin-top: 20px;
  }
}

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

  .wholesale-about-modern {
    text-align: center;
  }
}

/* Wholesale Page End */

.wpcf7-form-control-wrap {
  padding: 0 7px;
}

.wpcf7-form-control-wrap {
  padding: 0 7px;
  width: calc(50% - 15px);
  display: inline-flex;
  flex-direction: column;
}

.wpcf7-form-control-wrap[data-name="your-message"] {
  width: 98%;
}

/* ===============================
   APPENDED MISSING CSS FROM OLD FILE
   =============================== */

.homepage-slider {
  height: auto;
  padding: 0px;
}

body .mean-container .mean-nav {
  background: #e5e5e5;
  margin-top: 47px;
}

body .mean-container .mean-nav ul li a {
  text-transform: capitalize;
  color: #303030;
  border-top: 1px solid rgb(193 193 193 / 50%);
  font-weight: 500;
}

body .mean-container .mean-nav ul li a.mean-expand {
  border: 0 !important;
  background: transparent;
  top: 4px;
}

body .mean-container .mean-nav ul li a.mean-expand:hover {
  background: rgb(203 203 203 / 90%);
}

body .mean-container .mean-nav ul li li a {
  border-top: 1px solid rgb(145 142 142 / 25%);
}

ul.slick-dots {
  margin-inline: 0;
  list-style: none;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-top: 30px;
  gap: 4px;
}

ul.slick-dots li {
  width: 20px;
  height: 2px;
  overflow: hidden;
  background-color: #b4235b;
  opacity: 0.4;
}

ul.slick-dots li.slick-active {
  opacity: 1;
}

ul.slick-dots li button {
  display: none;
}

a:focus,
button:focus,
.button.alt:focus,
input:focus,
textarea:focus,
input[type="button"]:focus,
input[type="reset"]:focus,
input[type="submit"]:focus,
input[type="email"]:focus,
input[type="tel"]:focus,
input[type="url"]:focus,
input[type="password"]:focus,
input[type="search"]:focus {
  outline-color: var(--theme-color);
}

.about-list-box {
  gap: 15px;
}

.about-list-box .list-icon i {
  font-size: 18px;
  width: 55px;
  height: 55px;
  line-height: 50px;
}

.about-list-box .content h3 {
  font-weight: 500;
  font-size: 20px;
}

.about-list-box .content p {
  font-weight: 600;
}

ul.products li.product .woocommerce-LoopProduct-link .onsale {
  position: absolute;
  top: 20px;
  right: 20px;
  border: 0;
  background: linear-gradient(90deg, rgb(190 32 93), transparent 90%) 50% center, radial-gradient(circle at left top, transparent 20%, rgb(255 148 189) 100%);
  background-position: 0% 0%;
  opacity: 1;
  border-radius: 15px;
  color: #fff;
  backdrop-filter: blur(6px);
}

ul.products li.product .woocommerce-LoopProduct-link .price .woocommerce-Price-amount {
  font-size: 16px;
  font-weight: 600;
  color: var(--theme-color);
}

.product-section .container>.storefront-sorting:nth-of-type(2) {
  display: none;
}

.storefront-sorting {
  text-align: center;
}

.storefront-sorting .woocommerce-pagination {
  margin: 0 auto;
  float: none;
}

body .pagination-wrap ul li span.current,
body .woocommerce-pagination .page-numbers li .page-numbers.current {
  background: linear-gradient(90deg, rgb(190 32 93), transparent 90%) 50% center, radial-gradient(circle at left top, transparent 20%, rgb(255 148 189) 100%);
  background-position: 0% 0%;
  color: #fff;
}

body .pagination-wrap ul li a,
body .pagination .page-numbers li .page-numbers,
body .woocommerce-pagination .page-numbers li .page-numbers {
  min-width: 36px;
  min-height: 36px;
  border-radius: 50px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 14px;
  font-weight: 600;
  background: #F5F5F5;
}

body .pagination-wrap ul li a:hover,
body .pagination .page-numbers li .page-numbers:hover,
body .woocommerce-pagination .page-numbers li .page-numbers:hover {
  background: linear-gradient(90deg, rgb(190 32 93), transparent 90%) 50% center, radial-gradient(circle at left top, transparent 20%, rgb(255 148 189) 100%);
  background-position: 0% 0%;
  color: #fff;
}

body .pagination .page-numbers li,
body .woocommerce-pagination .page-numbers li {
  padding: 2px;
}

body .woocommerce-pagination .next::after {
  content: "";
}

ul.products li.product .button,
ul.products .wc-block-grid__product .button,
.wc-block-grid__products li.product .button,
.wc-block-grid__products .wc-block-grid__product .button {
  margin-bottom: 0;
}

body .pagination-wrap ul li span {
  margin: 0;
  min-width: 36px;
  min-height: 36px;
}

nav.main-menu ul li a:focus {
  outline: 0;
}

.single-product .product .onsale {
  background: linear-gradient(90deg, rgb(190 32 93), transparent 90%) 50% center, radial-gradient(circle at left top, transparent 20%, rgb(255 148 189) 95%);
  background-position: 0% 0%;
  border: 0;
  color: #fff;
  border-radius: 20px;
}

.single-product .product .product_title {
  font-size: 28px;
}

.single-product .product .woocommerce-Price-amount.amount {
  font-weight: 600;
}

.single-product .product .woocommerce-product-details__short-description p {
  font-weight: 600;
}

.single-product div.product form.cart input {
  padding: 10px;
  background: #e1e1e1;
  border-radius: 16px;
  box-shadow: 0 0;
}

.single_add_to_cart_button.button.alt {
  border-radius: 16px;
  padding: 10px 22px;
  background-color: var(--theme-color);
}

.single_add_to_cart_button.button.alt:hover {
  background-color: #1a1a1a;
}

body .single-product div.product form.cart {
  margin-bottom: 0;
}

.single-product .breadcrumb-text h1 {
  font-size: 26px;
}

.single-product .breadcrumb-text p {
  letter-spacing: 1.3px;
}

.related>h2:first-child,
.upsells>h2:first-child {
  font-size: 30px;
}

.storefront-product-pagination a .storefront-product-pagination__title {
  margin-right: auto;
  font-weight: 500;
}

.single-article-text>*+* {
  margin-top: 8px;
}

.single-article-text {
  max-width: 800px;
  margin: 0 auto 30px;
}

.single-article-text h1 b,
.single-article-text h1 strong,
.single-article-text h2 b,
.single-article-text h2 strong,
.single-article-text h3 b,
.single-article-text h3 strong,
.single-article-text h4 b,
.single-article-text h4 strong,
.single-article-text h5 b,
.single-article-text h5 strong,
.single-article-text h6 b,
.single-article-text h6 strong {
  font-weight: 500;
}

.single-artcile-bg img {
  width: 100%;
  height: 580px;
  object-fit: cover;
  margin: 0 auto;
  border-radius: 16px;
}

.post-navigation .nav-next .nav-subtitle {
  justify-self: flex-end;
}

.hentry .entry-content .woocommerce-MyAccount-navigation ul li.woocommerce-MyAccount-navigation-link a {
  font-weight: 600;
}

.hentry .entry-content .woocommerce-MyAccount-navigation ul {
  background: #efefef;
  padding: 5px 20px;
  border-radius: 16px;
  border: 0;
}

.hentry .entry-content .woocommerce-MyAccount-navigation ul li.woocommerce-MyAccount-navigation-link a {
  padding: 8px 0;
  color: #535050;
  transition: all 0.5s;
}

.hentry .entry-content .woocommerce-MyAccount-navigation ul li.woocommerce-MyAccount-navigation-link a:hover {
  color: #303030;
}

.hentry .entry-content .woocommerce-MyAccount-navigation ul li:last-child {
  margin-bottom: 0;
  border-bottom: 0;
}

body .woocommerce-MyAccount-navigation {
  width: 20%;
  margin-right: 30px;
}

}

.u-columns.woocommerce-Addresses.col2-set.addresses {
  display: flex;
  gap: 15px;
}

.u-columns.woocommerce-Addresses.col2-set.addresses .u-column1.woocommerce-Address,
.u-columns.woocommerce-Addresses.col2-set.addresses .u-column2.woocommerce-Address {
  margin: 0;
  float: none;
  width: auto;
  flex-grow: 1;
  flex: 1;
  max-width: max-content;
  padding: 0;
}

body .woocommerce-MyAccount-content h2 {
  font-size: 1.8em;
  font-weight: 500;
  flex-grow: 1;
}

body header.woocommerce-Address-title.title {
  width: 100%;
  display: inline-flex;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 8px;
}

body .hentry.type-page .entry-header {
  margin-bottom: 16px;
}

.hentry .entry-content .woocommerce-MyAccount-navigation ul li.woocommerce-MyAccount-navigation-link.is-active a {
  color: var(--theme-color);
}

input[type=text],
input[type=number],
input[type=email],
input[type=tel],
input[type=url],
input[type=password],
input[type=search],
textarea,
.input-text {
  width: 100%;
  padding: 10px 20px;
  border: 1px solid #ddd;
  border-radius: 26px;
  box-shadow: 0 0;
  font-weight: 500;
}

.show-password-input {
  position: absolute;
  right: 3px;
  top: 2px;
  border-radius: 30px;
}

form.woocommerce-EditAccountForm.edit-account>fieldset {
  padding: 0;
}

form.woocommerce-EditAccountForm.edit-account>fieldset legend {
  padding: 0;
  margin-bottom: 15px;
  color: #303030;
}

form.woocommerce-EditAccountForm.edit-account>fieldset legend,
form.woocommerce-EditAccountForm.edit-account>fieldset .form-row {
  margin-left: 0;
  margin-right: 0;
}

button.wc-block-components-button.wp-element-button.wc-block-components-checkout-place-order-button.contained,
button.woocommerce-Button.button {
  padding: 12px 26px;
  background: var(--theme-color);
  color: #ffffff;
  border-radius: 26px;
}

button.wc-block-components-button.wp-element-button.wc-block-components-checkout-place-order-button.contained:hover,
button.woocommerce-Button.button:hover {
  background-color: #1a1a1a;
}

form.woocommerce-EditAccountForm.edit-account>fieldset .form-row {
  gap: 10px;
}

table.wc-block-cart-items .wc-block-cart-items__row .wc-block-components-product-name {
  font-weight: 600;
}

.wc-block-formatted-money-amount.wc-block-components-formatted-money-amount {
  font-size: 16px;
  font-weight: 700;
  color: #303030;
}

span.price.wc-block-components-product-price del,
span.price.wc-block-components-product-price ins {
  font-weight: 700;
  color: #303030;
}

.wc-block-components-quantity-selector input.wc-block-components-quantity-selector__input {
  padding: 0.6em 0;
  font-weight: 600;
}

.wc-block-components-quantity-selector .wc-block-components-quantity-selector__button {
  font-size: 22px;
}

.wc-block-cart .wc-block-cart__totals-title {
  font-size: 20px;
  color: #303030;
}

.wc-block-components-totals-footer-item .wc-block-components-totals-item__label {
  font-size: 16px;
}

.wc-block-components-quantity-selector {
  border: 2px solid color-mix(in srgb, currentColor 30%, transparent);
  border-radius: 30px;
}

.wc-blocks-components-select .wc-blocks-components-select__select,
.wc-block-components-textarea,
.wc-block-components-form .wc-block-components-text-input input[type=email],
.wc-block-components-form .wc-block-components-text-input input[type=number],
.wc-block-components-form .wc-block-components-text-input input[type=password],
.wc-block-components-form .wc-block-components-text-input input[type=tel],
.wc-block-components-form .wc-block-components-text-input input[type=text],
.wc-block-components-form .wc-block-components-text-input input[type=url],
.wc-block-components-text-input input[type=email],
.wc-block-components-text-input input[type=number],
.wc-block-components-text-input input[type=password],
.wc-block-components-text-input input[type=tel],
.wc-block-components-text-input input[type=text],
.wc-block-components-text-input input[type=url] {
  width: 100%;
  padding: 15px 20px;
  border: 1px solid #ddd;
  border-radius: 26px;
  box-shadow: 0 0;
  font-weight: 500;
}

.wp-block-woocommerce-checkout-order-summary-block {
  border: 1px solid hsla(0, 0%, 7%, .11);
  border-radius: 20px;
}

.custom-account-wrapper {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 40px;
  max-width: 900px;
  margin: 60px auto;
}

.account-card {
  background: #fff;
  padding: 40px;
  border-radius: 12px;
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.08);
}

.account-card h2 {
  margin-bottom: 20px;
  font-size: 26px;
}

.account-card input {
  width: 100%;
  padding: 12px;
  border-radius: 8px;
  border: 1px solid #ddd;
  margin-top: 5px;
}

.account-card .button {
  margin-top: 15px;
  width: 100%;
  background: #ff4f81;
  border: none;
  padding: 12px;
  border-radius: 8px;
  color: #fff;
  font-weight: 600;
}

body .show-password-input {
  top: 50%;
  transform: translateY(-50%);
  padding: 7px 10px;
}

.page.page-id-12 header.entry-header {
  display: none;
}

/* Faqs CSS Start */
/* ===== FAQ Section Wrapper ===== */
.floriaa-faqs {
  padding: 80px 0;
  /* background: #f8f9fb; */
}

/* ===== Title ===== */
.faq-title {
  font-size: 38px;
  font-weight: 700;
  margin-bottom: 10px;
  color: #222;
}

.faq-subtitle {
  color: #777;
  font-size: 16px;
  margin-bottom: 50px;
}

/* ===== Panel Card Style ===== */
.panel {
  border: none !important;
  border-radius: 10px !important;
  margin-bottom: 15px !important;
  overflow: hidden;
  box-shadow: 0 5px 20px rgba(0, 0, 0, 0.05);
  transition: all 0.3s ease;
}

/* Hover effect */
/* .panel:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.08);
} */

/* ===== Question Header ===== */
.panel-heading {
  background: #ffffff !important;
  padding: 18px 20px;
  border: none !important;
  position: relative;
}

/* Question text */
.panel-title a {
  display: block;
  font-size: 17px;
  font-weight: 600;
  color: #222;
  text-decoration: none;
  position: relative;
  padding-right: 30px;
}

/* ===== Arrow Icon ===== */
.panel-title a:after {
  content: "+";
  position: absolute;
  right: 0;
  top: 0;
  font-size: 22px;
  font-weight: 700;
  color: #4CAF50;
  transition: 0.3s;
}

/* Active state (- icon) */
.panel-title a[aria-expanded="true"]:after {
  content: "-";
}

/* ===== Answer Body ===== */
.panel-body {
  background: #f9f9f9;
  padding: 18px 20px;
  font-size: 15px;
  color: #555;
  line-height: 1.7;
  border-top: 1px solid #eee;
}

/* ===== Contact Info Styling ===== */
.panel-body br {
  margin-bottom: 6px;
}

.faq-title {
  font-size: 28px;
}

.panel-title a {
  font-size: 15px;
}

}

/* Faqs CSS End */

/* Wholesale Page Start */
/* HERO */
.wholesale-hero {
  background: #f5f5f5;
  /* color: #fff; */
  padding: 100px 0;
}

}

/* Wholesale Page End */

nav.main-menu ul>li.header-btn .nav-link {
  background: linear-gradient(90deg, rgb(190 32 93), transparent 90%) 50% center, radial-gradient(circle at left top, transparent 20%, rgb(255 148 189) 95%);
  background-position: 0% 0%;
  color: #fff;
  padding: 8px 16px;
  border: 1px solid var(--theme-color);
  font-weight: 700;
  font-size: 16px;
  text-transform: capitalize;
  border-radius: 30px;
}

.mean-container .mean-nav ul li.header-btn .nav-link {
  background: linear-gradient(90deg, rgb(190 32 93), transparent 90%) 50% center, radial-gradient(circle at left top, transparent 20%, rgb(255 148 189) 95%);
  background-position: 0% 0%;
  color: #fff;
}

body .added_to_cart.alt,
body .added_to_cart,
body .widget a.button.checkout {
  border-radius: 26px;
  padding: 10px 14px;
}

body .single-product-item .product-actions {
  gap: 10px;
}

.wc-block-cart-items .wc-block-components-product-metadata {
  display: none;
}

.custom-account-wrapper {
  grid-template-columns: 1fr;
}

}

/* Side Cart Drawer Styles - START */
.floriaa-cart-drawer-overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100vw;
  height: 100vh;
  background: rgba(0, 0, 0, 0.5);
  z-index: 9998;
  opacity: 0;
  visibility: hidden;
  transition: all 0.3s ease;
}

.floriaa-cart-drawer {
  position: fixed;
  top: 0;
  right: 0;
  width: 350px;
  max-width: 100%;
  height: 100vh;
  background: #fff;
  z-index: 9999;
  transform: translateX(100%);
  transition: transform 0.3s ease;
  display: flex;
  flex-direction: column;
  box-shadow: -5px 0 15px rgba(0, 0, 0, 0.1);
}

.floriaa-cart-drawer-header h3 {
  margin: 0;
  font-size: 1.2rem;
  font-weight: 600;
}

.floriaa-cart-drawer .widget_shopping_cart_content {
  height: 100%;
  display: flex;
  flex-direction: column;
}

.floriaa-cart-drawer .woocommerce-mini-cart {
  flex-grow: 1;
  overflow-y: auto;
  padding: 0;
  margin: 0 0 20px 0;
  list-style: none;
}

/* Side Cart Drawer Styles - END */
/* ===========================
   Side Cart Drawer - Layout Overrides
   =========================== */

/* Make drawer a flex column so bottom section sticks to bottom */
.floriaa-cart-drawer {
  display: flex;
  flex-direction: column;
}

/* Cart content area grows to fill, scrollable */
.floriaa-cart-drawer-content {
  flex: 1 1 auto;
  overflow-y: auto;
  padding: 15px 20px;
  display: flex;
  flex-direction: column;
}

/* Widget fills full height of content area */
.floriaa-cart-drawer-content .widget_shopping_cart_content {
  display: flex;
  flex-direction: column;
  flex: 1 1 auto;
  height: 100%;
}

/* Cart list - scrollable middle section */
.floriaa-cart-drawer-content .woocommerce-mini-cart {
  flex: 1 1 auto;
  overflow-y: auto;
  list-style: none;
  margin: 0;
  padding: 0;
}

/* ---- Each cart item: image | text | remove ---- */
.floriaa-cart-drawer-content .woocommerce-mini-cart-item.mini_cart_item {
  display: flex;
  flex-direction: row;
  align-items: flex-start;
  gap: 10px;
  padding: 12px 0;
  border-bottom: 1px solid #f0f0f0;
  position: relative;
}

/* Product link wrapper: holds image + name, takes available space */
.floriaa-cart-drawer-content .woocommerce-mini-cart-item.mini_cart_item>a:not(.remove) {
  display: flex;
  flex-direction: row;
  align-items: flex-start;
  gap: 10px;
  flex: 1 1 auto;
  text-decoration: none;
  color: inherit;
  order: 1;
}

/* Product thumbnail - left side */
.floriaa-cart-drawer-content .woocommerce-mini-cart-item.mini_cart_item>a:not(.remove) img {
  width: 60px;
  height: 60px;
  object-fit: cover;
  border-radius: 6px;
  flex-shrink: 0;
  display: block;
}

/* Product name - left aligned */
.floriaa-cart-drawer-content .woocommerce-mini-cart-item.mini_cart_item>a:not(.remove) .woocommerce-loop-product__title,
.floriaa-cart-drawer-content .woocommerce-mini-cart-item.mini_cart_item>a:not(.remove) {
  text-align: left;
  font-size: 0.85rem;
  line-height: 1.4;
  color: #333;
}

/* Quantity text - left aligned */
.floriaa-cart-drawer-content .woocommerce-mini-cart-item.mini_cart_item .quantity {
  display: block;
  text-align: left;
  font-size: 0.82rem;
  color: #666;
  margin-top: 4px;
  order: 2;
  flex-shrink: 0;
  align-self: flex-end;
  padding-left: 0;
}

/* Remove button - push to the RIGHT */
.floriaa-cart-drawer-content .woocommerce-mini-cart-item.mini_cart_item>a.remove {
  order: 3;
  flex-shrink: 0;
  margin-left: auto;
  font-size: 1.1rem;
  color: #999;
  line-height: 1;
  padding: 2px 4px;
  text-decoration: none;
  transition: color 0.2s;
}

.floriaa-cart-drawer-content .woocommerce-mini-cart-item.mini_cart_item>a.remove:hover {
  color: #e00;
}

/* ---- Bottom section: subtotal + buttons - pinned to bottom ---- */
.floriaa-cart-drawer-content .woocommerce-mini-cart__total,
.floriaa-cart-drawer-content .woocommerce-mini-cart__buttons {
  flex-shrink: 0;
}

.floriaa-cart-drawer-content .woocommerce-mini-cart__total {
  border-top: 2px solid #eee;
  padding: 14px 0 8px;
  text-align: left;
  font-weight: 600;
  font-size: 0.95rem;
}

.floriaa-cart-drawer-content .woocommerce-mini-cart__buttons {
  padding: 10px 0 0;
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.floriaa-cart-drawer-content .woocommerce-mini-cart__buttons .button {
  display: block;
  width: 100%;
  text-align: center;
  padding: 12px;
  border-radius: 25px;
  font-size: 0.9rem;
  font-weight: 600;
  text-decoration: none;
  transition: all 0.2s ease;
}

/* View Cart button */
.floriaa-cart-drawer-content .woocommerce-mini-cart__buttons .button.wc-forward:not(.checkout) {
  background: #f5f5f5;
  color: #333;
  border: 1px solid #ddd;
}

.floriaa-cart-drawer-content .woocommerce-mini-cart__buttons .button.wc-forward:not(.checkout):hover {
  background: #e8e8e8;
}

/* Checkout button */
.floriaa-cart-drawer-content .woocommerce-mini-cart__buttons .checkout {
  background: #222;
  color: #fff !important;
  border: none;
}

.floriaa-cart-drawer-content .woocommerce-mini-cart__buttons .checkout:hover {
  background: #000;
}

/* ===========================
   Side Cart Drawer - Layout Overrides END
   =========================== */
/* ===========================
   Floriaa Cart Item Layout (Image LEFT | Text MIDDLE | Remove RIGHT)
   =========================== */

/* Each list item: reset default styling */
.floriaa-cart-drawer .woocommerce-mini-cart-item {
  padding: 12px 0;
  border-bottom: 1px solid #f0f0f0;
  list-style: none;
}

/* Inner flex row */
.floriaa-cart-item-inner {
  display: flex;
  flex-direction: row;
  align-items: flex-start;
  gap: 12px;
}

/* Image block - LEFT */
.floriaa-cart-item-image {
  flex-shrink: 0;
  width: 64px;
  height: 64px;
}

.floriaa-cart-item-image img {
  width: 64px;
  height: 64px;
  object-fit: cover;
  border-radius: 6px;
  display: block;
}

/* Details block - MIDDLE, takes remaining space */
.floriaa-cart-item-details {
  flex: 1 1 auto;
  display: flex;
  flex-direction: column;
  gap: 4px;
  text-align: left;
  min-width: 0;
}

/* Product name link */
.floriaa-cart-item-name {
  font-size: 0.82rem;
  font-weight: 500;
  color: #222;
  text-decoration: none;
  line-height: 1.3;
  display: block;
  word-break: break-word;
}

.floriaa-cart-item-name:hover {
  color: #e75480;
}

/* Quantity text */
.floriaa-cart-item-details .quantity {
  font-size: 0.8rem;
  color: #666;
  display: block;
  text-align: left;
}

/* Remove block - RIGHT */
.floriaa-cart-item-remove {
  flex-shrink: 0;
  display: flex;
  align-items: flex-start;
  padding-top: 2px;
}

.floriaa-cart-item-remove a.remove {
  font-size: 1.2rem;
  color: #bbb;
  text-decoration: none;
  line-height: 1;
  display: block;
  transition: color 0.2s;
  background: none !important;
  width: auto !important;
  height: auto !important;
}

.floriaa-cart-item-remove a.remove:hover {
  color: #e00;
}

/* ===========================
   Footer section - pinned to BOTTOM
   =========================== */
.floriaa-cart-drawer-content {
  display: flex;
  flex-direction: column;
  flex: 1 1 auto;
  overflow: hidden;
  padding: 0;
}

.floriaa-cart-drawer-content .widget_shopping_cart_content {
  display: flex;
  flex-direction: column;
  flex: 1 1 auto;
  overflow: hidden;
}

/* Scrollable items area */
.floriaa-cart-drawer-content .woocommerce-mini-cart {
  flex: 1 1 auto;
  overflow-y: auto;
  list-style: none;
  margin: 0;
  padding: 15px 20px;
}

/* Footer - no shrink, always at bottom */
.floriaa-cart-drawer-footer {
  flex-shrink: 0;
  padding: 14px 20px 20px;
  border-top: 2px solid #eee;
  background: #fff;
}

.floriaa-cart-drawer-footer .woocommerce-mini-cart__total {
  text-align: left;
  font-weight: 600;
  font-size: 0.95rem;
  margin: 0 0 12px;
  padding: 0;
}

.floriaa-cart-drawer-footer .woocommerce-mini-cart__buttons {
  display: flex;
  flex-direction: column;
  gap: 8px;
  margin: 0;
  padding: 0;
}

.floriaa-cart-drawer-footer .woocommerce-mini-cart__buttons .button {
  display: block;
  width: 100%;
  text-align: center;
  padding: 11px 16px;
  border-radius: 25px;
  font-size: 0.88rem;
  font-weight: 600;
  text-decoration: none;
  transition: all 0.2s ease;
  box-sizing: border-box;
}

.floriaa-cart-drawer-footer .woocommerce-mini-cart__buttons .button.wc-forward:not(.checkout) {
  background: #f5f5f5;
  color: #333 !important;
  border: 1px solid #ddd;
}

.floriaa-cart-drawer-footer .woocommerce-mini-cart__buttons .button.wc-forward:not(.checkout):hover {
  background: #e8e8e8;
}

.floriaa-cart-drawer-footer .woocommerce-mini-cart__buttons .checkout {
  background: #222;
  color: #fff !important;
  border: none;
}

.floriaa-cart-drawer-footer .woocommerce-mini-cart__buttons .checkout:hover {
  background: #000;
}

/* ===========================
   Floriaa Cart Item Layout END
   =========================== */
/* ===========================
   Floriaa Mini Cart - Screenshot Match Layout
   Remove top-left on image | Image | Name (middle) | Qty x Price (right)
   =========================== */

/* Reset WC default item styling */
.floriaa-cart-drawer .woocommerce-mini-cart-item {
  padding: 14px 0;
  border-bottom: 1px solid #f0f0f0;
  list-style: none;
  margin: 0;
}

.floriaa-cart-drawer .woocommerce-mini-cart-item:last-child {
  border-bottom: none;
}

/* Inner row: thumb | details | qty */
.floriaa-cart-item-inner {
  display: flex;
  flex-direction: row;
  align-items: flex-start;
  gap: 12px;
}

/* --- Thumb block (position: relative so remove can overlay) --- */
.floriaa-cart-item-thumb {
  position: relative;
  flex-shrink: 0;
  width: 64px;
  height: 64px;
}

.floriaa-cart-item-thumb img {
  width: 64px;
  height: 64px;
  object-fit: cover;
  border-radius: 6px;
  display: block;
}

/* Remove button - sits top-left over the image */
.floriaa-cart-item-thumb a.remove {
  position: absolute;
  top: -8px;
  left: -8px;
  z-index: 2;
  width: 20px;
  height: 20px;
  border-radius: 50%;
  background: #555 !important;
  color: #fff !important;
  font-size: 13px;
  line-height: 20px;
  text-align: center;
  text-decoration: none;
  display: flex;
  align-items: center;
  justify-content: center;
  border: 2px solid #fff;
  box-shadow: 0 1px 3px rgba(0, 0, 0, 0.2);
  transition: background 0.2s;
}

.floriaa-cart-item-thumb a.remove:hover {
  background: #e00 !important;
}

/* --- Details block (product name) - MIDDLE, grows --- */
.floriaa-cart-item-details {
  flex: 1 1 auto;
  min-width: 0;
  text-align: left;
}

.floriaa-cart-item-name {
  font-size: 0.8rem;
  font-weight: 500;
  color: #222;
  text-decoration: none;
  line-height: 1.35;
  display: block;
  word-break: break-word;
}

.floriaa-cart-item-name:hover {
  color: #e75480;
}

/* --- Qty x Price - RIGHT, no-wrap --- */
.floriaa-cart-item-qty {
  flex-shrink: 0;
  text-align: right;
  white-space: nowrap;
}

.floriaa-cart-item-qty .quantity {
  font-size: 0.8rem;
  color: #444;
  white-space: nowrap;
  display: block;
}

/* ===========================
   Drawer layout: items scroll, footer sticks to bottom
   =========================== */

.floriaa-cart-drawer {
  display: flex;
  flex-direction: column;
  height: 100vh;
}

.floriaa-cart-drawer-content .widget_shopping_cart_content {
  flex: 1 1 auto;
  overflow: hidden;
  display: flex;
  flex-direction: column;
}

/* Scrollable items list */
.floriaa-cart-drawer-content .woocommerce-mini-cart {
  flex: 1 1 auto;
  overflow-y: auto;
  list-style: none;
  margin: 0;
  padding: 10px 20px;
}

/* Footer - always pinned to bottom */
.floriaa-cart-drawer-footer {
  flex-shrink: 0;
  padding: 16px 20px 20px;
  border-top: 1px solid #eee;
  background: #fff;
}

.floriaa-cart-drawer-footer .woocommerce-mini-cart__total {
  text-align: center;
  font-weight: 600;
  font-size: 0.95rem;
  margin: 0 0 14px;
  padding: 0;
  color: #222;
}

.floriaa-cart-drawer-footer .woocommerce-mini-cart__buttons {
  display: flex;
  flex-direction: column;
  gap: 10px;
  margin: 0;
  padding: 0;
}

.floriaa-cart-drawer-footer .woocommerce-mini-cart__buttons .button {
  display: block;
  width: 100%;
  text-align: center;
  padding: 12px 16px;
  border-radius: 30px;
  font-size: 0.88rem;
  font-weight: 600;
  text-decoration: none !important;
  transition: all 0.2s ease;
  box-sizing: border-box;
  cursor: pointer;
}

.floriaa-cart-drawer-footer .woocommerce-mini-cart__buttons .button.wc-forward:not(.checkout) {
  background: #f2f2f2;
  color: #333 !important;
  border: 1px solid #ddd;
}

.floriaa-cart-drawer-footer .woocommerce-mini-cart__buttons .button.wc-forward:not(.checkout):hover {
  background: #e5e5e5;
}

.floriaa-cart-drawer-footer .woocommerce-mini-cart__buttons .checkout {
  background: #222;
  color: #fff !important;
  border: none;
}

.floriaa-cart-drawer-footer .woocommerce-mini-cart__buttons .checkout:hover {
  background: #000;
}

/* ===========================
   Floriaa Mini Cart Layout END
   =========================== */
/* px-3 fallback for mini cart buttons (Bootstrap px-3 = 1rem horizontal padding) */
.floriaa-cart-drawer .woocommerce-mini-cart__buttons.buttons {
  padding-left: 1rem !important;
  padding-right: 1rem !important;
}

/* px-3 text-center for empty cart message (Bootstrap class fallback) */
.floriaa-cart-drawer .woocommerce-mini-cart__empty-message {
  padding-left: 1rem !important;
  padding-right: 1rem !important;
  text-align: center !important;
}

/* Empty cart message - padding + center */
.floriaa-cart-drawer .widget_shopping_cart_content p.woocommerce-mini-cart__empty-message {
  padding: 30px 20px !important;
  text-align: center !important;
  margin: 0 !important;
  color: #888;
  font-size: 0.95rem;
}