@charset "UTF-8";
@import url("https://fonts.googleapis.com/css2?family=Lato:ital,wght@0,100;0,300;0,400;0,700;0,900;1,100;1,300;1,400;1,700;1,900&family=Playfair+Display:ital,wght@0,400..900;1,400..900&display=swap");
/*-----------------------------------------------------------------------------------

  Beauten – Beauty Cosmetic & Skincare HTML Template
  Author: ThemeWolfs
  Developer: Masirul Islam
  Description: Beauten is a modern and elegant beauty & skincare HTML template,
               built with well-structured SCSS architecture for scalability
               and easy customization.
  Design Source: https://themeforest.net/user/themewolfs
  Version: 1.0

-----------------------------------------------------------------------------------*/
/*===========================
  TABLE OF CONTENTS
=============================

  01. Utils SCSS
      - Variables
      - Mixins
      - Functions
      - Helpers

  02. Components SCSS
      - Buttons
      - Forms
      - Modals
      - Menus
      - Common UI Components

  03. Pages SCSS (Index 01)
      - Beauty Lipstick
      - Beauty Skincare Solution
      - Natural Product Skincare 
      - Blog
      - Blog Standard
      - Blog Details
      - Shop
      - Shop List
      - Product Details
      - Wishlist
      - Cart
      - Checkout
      - About
      - Contact

=============================*/
/* === Colors variable scss (index 01) === */
:root {
  --primary: #FFEFF2;
  --primary-two: #EE2D7A;
  --secondary: #EAF2F5;
  --thardary: #F5EBE2;
  --black: #000000;
  --white: #FFFFFF;
  --yellow: #F2C94C;
  --bg-color: #E9EDEC;
  --bg-color2: #EFE2F4;
  --bg-color3: #202020;
  --text-color-one: #0C0C0C;
  --text-color-two: #5B5B5B;
  --text-color-three: #333333;
  --text-color-four: #E6E6E6;
  --text-color-five: #464646;
  --text-color6: #707070;
  --text-color7: #CDCDCD;
  --border-color: rgba(255, 255, 255, 0.1);
  --border-color2: #DADADA;
}

/* === Font Family variable scss === */
/* === Responsive variable scss  === */
/* === For Box Layout scss  === */
/* === Responsive container scss  === */
/* === heading scss (index 01) === */
/* === dark scss (index 01) === */
/* === bg primary  scss (index 01) === */
/* === Transition multiple scss (index 01) === */
/* === Transform scss (index 01) === */
/* === Flexbox scss (index 01) === */
:root {
  --font_Playfair: "Playfair Display", serif;
  --font_Lato: "Lato", sans-serif;
  --font_awesome: "Font Awesome 6 Pro";
}

* {
  margin: 0;
  padding: 0;
}

.header-lang{
    display: none;
}
body {
  font-family: var(--font_Lato);
  line-height: 1;
  font-size: 16px;
  font-weight: 400;
  line-height: 20px;
  letter-spacing: -0.48px;
  color: var(--secondary);
}

html {
  scroll-behavior: smooth;
}

h1,
h2,
h3,
h4,
h5,
h6 {
  padding: 0;
  margin: 0;
  color: var(--text-color-one);
  font-family: var(--font_Playfair);
  font-weight: 700;
}

ul,
ol {
  padding: 0;
  margin: 0;
}

a {
  text-decoration: none;
  transition: all 0.3s;
  color: inherit;
}
a:hover {
  color: var(--primary-two);
}

button {
  background-color: transparent;
  border: 0;
}

p {
  padding: 0;
  margin: 0;
  color: var(--text-color-one);
}

strong {
  font-weight: 500;
}

video,
iframe,
img {
  margin: 0;
  padding: 0;
}

img {
  max-width: 100%;
}
.img-60{
  width: 60%;
 }
.img-70{
  width: 70%;
 }
 .img-80{
  width: 80%;
 }

.medium {
  font-weight: 600;
}

.bold {
  font-weight: 700;
}

/* === Gutter scss (index 03) === */
@media only screen and (max-width: 767px) {
  .g-0 {
    padding-right: 15px;
    padding-left: 15px;
  }
  .row.g-0 {
    padding-right: 0;
    padding-left: 0;
  }
  br {
    display: none;
  }
}
main {
  display: inline-block;
  width: 100%;
  overflow: hidden;
}

h1 {
  font-size: 48px;
}

h2 {
  font-size: 40px;
}

h3 {
  font-size: 24px;
}

h4 {
  font-size: 20px;
}

h5 {
  font-size: 22px;
}

h6 {
  font-size: 18px;
}

.fs-10 {
  font-size: 10px;
}
.fs-11 {
  font-size: 11px;
}
.fs-12 {
  font-size: 12px;
}
.fs-13 {
  font-size: 13px;
}
.fs-14 {
  font-size: 14px;
}
.fs-15 {
  font-size: 15px;
}
.fs-16 {
  font-size: 16px;
}
.fs-17 {
  font-size: 17px;
}
.fs-18 {
  font-size: 18px;
}
.fs-20 {
  font-size: 20px;
}

.word-spacing-6 {
  word-spacing: 6px;
}
.word-spacing-3 {
  word-spacing: 3px;
}
.text-justify {
  text-align: justify;
}
.container {
  padding: 0 15px;
}
@media (min-width: 1800px) {
  .container {
    max-width: 1800px;
    margin: 0 auto;
  }
}

.container-1600 {
  padding: 0 15px;
}
@media (min-width: 1800px) {
  .container-1600 {
    max-width: 1630px;
    margin: 0 auto;
  }
}

/* animation css */
.t_parallax_image {
  overflow: hidden;
}

.rotate-spin {
  display: inline-block;
  animation: spin 7s linear infinite;
}

@keyframes spin {
  from {
    transform: rotate(0deg);
  }
  to {
    transform: rotate(360deg);
  }
}
/* === Scrollbar scss (index 01) === */
::-webkit-scrollbar {
  width: 5px;
}

::-webkit-scrollbar-track {
  background: #d6d6d6;
}

::-webkit-scrollbar-thumb {
  background: #888;
}

::-webkit-scrollbar-thumb:hover {
  background: #555;
}

/* === positioning scss (index 02) === */
.rr-pos-rel {
  position: relative;
}

.rr-pos-abs {
  position: absolute;
}

.rr-ov-hidden {
  overflow: hidden;
}

/* === Container scss (index) === */
.rr-container-1895 {
  max-width: 1895px;
}

.rr-container-1792 {
  max-width: 1792px;
}

.rr-container-1750 {
  max-width: 1750px;
}

.rr-container-1730 {
  max-width: 1730px;
}

.rr-container-1650 {
  max-width: 1650px;
}

.rr-container-1350 {
  max-width: 1350px;
}

.container-1352 {
  max-width: 1352px;
}

/* === Background scss (index 04) === */
.rr-bg-primary {
  background-color: var(--primary);
}

/* === Parallax view scss (index 05) === */
.parallax-view {
  overflow: hidden;
}

.fix {
  overflow: hidden;
}

.go-down {
  width: 28px;
  height: 28px;
  background-color: var(--primary);
  color: var(--white);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 12px;
  border-radius: 50%;
}
.dark .go-down {
  color: var(--black);
}

/* === Section title scss (index 06) === */
/* === Section title scss (sofware 04) === */
/* === Section title scss (seo-agency 06) === */
/* === Header Section () === */
.section-heading {
  text-align: center;
  margin-bottom: 40px;
}
@media only screen and (max-width: 1199px) {
  .section-heading {
    margin-bottom: 35px;
  }
}
@media only screen and (max-width: 991px) {
  .section-heading {
    margin-bottom: 30px;
  }
}
@media only screen and (max-width: 767px) {
  .section-heading {
    margin-bottom: 25px;
  }
}
@media (max-width: 575px) {
  .section-heading {
    margin-bottom: 20px;
  }
}
.section-heading__subtitle {
  color: #EE2D7A;
  font-family: var(--font_Playfair);
  font-weight: 500;
  font-style: Medium;
  font-size: 18px;
  line-height: 24px;
  display: block;
  letter-spacing: 0px;
  text-align: center;
  text-transform: capitalize;
  margin-bottom: 10px;
}
@media only screen and (max-width: 991px) {
  .section-heading__subtitle {
    font-size: 16px;
    line-height: 22px;
    margin-bottom: 8px;
  }
}
@media (max-width: 575px) {
  .section-heading__subtitle {
    font-size: 14px;
    line-height: 20px;
    margin-bottom: 6px;
  }
}
.section-heading__title {
  font-weight: 700;
  font-style: Bold;
  font-size: 40px;
  line-height: 48px;
  letter-spacing: -0.5px;
  text-align: center;
}
@media only screen and (max-width: 1399px) {
  .section-heading__title {
    font-size: 36px;
  }
}
@media only screen and (max-width: 1199px) {
  .section-heading__title {
    font-size: 34px;
  }
}
@media only screen and (max-width: 991px) {
  .section-heading__title {
    font-size: 30px;
    line-height: 50px;
    margin-bottom: 38px;
  }
}
@media only screen and (max-width: 767px) {
  .section-heading__title {
    font-size: 27px;
    line-height: 45px;
  }
}
@media (max-width: 575px) {
  .section-heading__title {
    font-size: 25px;
    line-height: 34px;
    margin-bottom: 35px;
  }
}

/* === ontainer styling with full HD support  scss (index 08) === */
.container {
  --bs-gutter-x: 30px;
}
@media (min-width: 1600px) {
  .container.full-hd {
    max-width: 1920px;
    margin-left: auto;
    margin-right: auto;
    padding-left: 0;
    padding-right: 0;
  }
}

/* ===Inverted scss (index 09) === */
.text-invert > div {
  background-image: linear-gradient(to right, var(--primary) 50%, #cdc9c6 51%);
  background-size: 200% 100%;
  background-position-x: 100%;
  color: transparent;
  background-clip: text;
  -webkit-background-clip: text;
}

/* ===Side info and offcanvas scss (index 10) === */
.offcanvas-overlay {
  position: fixed;
  height: 100%;
  width: 100%;
  background: rgba(0, 0, 0, 0.6);
  backdrop-filter: blur(4px);
  -webkit-backdrop-filter: blur(4px);
  z-index: 9998;
  top: 0;
  right: 0;
  left: 0;
  bottom: 0;
  opacity: 0;
  visibility: hidden;
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  cursor: pointer;
  touch-action: none;
}
@media (max-width: 575px) {
  .offcanvas-overlay {
    background: rgba(0, 0, 0, 0.7);
  }
}
.offcanvas-overlay.overlay-open {
  opacity: 1;
  visibility: visible;
}

.side-info-close {
  font-size: 20px;
  padding: 0;
  transition: all 0.3s linear;
  background-color: transparent;
  color: var(--black);
  width: 40px;
  height: 40px;
  border: 1px solid var(--black);
  border-radius: 50%;
  line-height: 38px;
}
.dark .side-info-close {
  border-color: var(--white);
  color: var(--white);
}
.side-info-close:hover {
  transform: rotate(90deg);
}

.side-info {
  background: transparent;
  padding: 0;
  position: fixed;
  right: 0;
  top: 0;
  width: 500px;
  height: 100%;
  max-height: 100vh;
  transform: translateX(calc(100% + 80px));
  transition: transform 0.45s cubic-bezier(0.4, 0, 0.2, 1), opacity 0.45s ease-in-out, visibility 0.45s;
  z-index: 9999;
  overflow: hidden;
  box-shadow: -10px 0 40px rgba(0, 0, 0, 0.1);
  visibility: hidden;
  opacity: 0;
}
.dark .side-info {
  background: transparent;
}
@media only screen and (max-width: 1199px) {
  .side-info {
    width: 460px;
    transform: translateX(calc(100% + 60px));
  }
}
@media only screen and (max-width: 991px) {
  .side-info {
    width: 400px;
    transform: translateX(calc(100% + 50px));
  }
}
@media only screen and (max-width: 767px) {
  .side-info {
    width: 350px;
    transform: translateX(calc(100% + 40px));
  }
}
@media (max-width: 575px) {
  .side-info {
    width: 100%;
    max-width: 100%;
    padding: 0;
    transform: translateX(100%);
  }
}
.side-info.info-open {
  opacity: 1;
  visibility: visible;
  transform: translateX(0);
  box-shadow: -10px 0 50px rgba(0, 0, 0, 0.15);
}

/* === Offset header scss (index 11) === */
.offset-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 30px 35px;
  background: var(--white);
  border-bottom: 1px solid rgba(238, 45, 122, 0.1);
  position: sticky;
  top: 0;
  z-index: 10;
  backdrop-filter: blur(10px);
}
@media only screen and (max-width: 991px) {
  .offset-header {
    padding: 25px 30px;
  }
}
@media (max-width: 575px) {
  .offset-header {
    padding: 20px 25px;
  }
}
.offset-logo {
  width: 120px;
  min-width: 120px;
  flex-shrink: 0;
  transition: transform 0.3s ease;
}
@media only screen and (max-width: 991px) {
  .offset-logo {
    width: 110px;
    min-width: 110px;
  }
}
@media (max-width: 575px) {
  .offset-logo {
    width: 100px;
    min-width: 100px;
  }
}
.offset-logo a {
  display: block;
  line-height: 0;
}
.offset-logo img {
  width: 100%;
  height: auto;
  display: block;
  transition: transform 0.3s ease;
}
.offset-logo:hover {
  transform: scale(1.05);
}
.offset-button {
  margin-top: 0;
  padding: 20px 28px;
  background: var(--white);
  border-top: 1px solid rgba(238, 45, 122, 0.1);
  position: sticky;
  bottom: 0;
  z-index: 10;
}
@media (min-width: 576px) {
  .offset-button {
    display: none;
  }
}
@media only screen and (max-width: 991px) {
  .offset-button {
    padding: 18px 24px;
  }
}
@media (max-width: 575px) {
  .offset-button {
    padding: 16px 20px;
  }
}
.offset-button .rr-btn {
  width: 100%;
  display: block;
  text-align: center;
  padding: 12px 20px;
  background: #EE2D7A;
  color: var(--white);
  border-radius: 10px;
  font-weight: 600;
  font-size: 15px;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  box-shadow: 0 4px 12px rgba(238, 45, 122, 0.3);
}
@media (max-width: 575px) {
  .offset-button .rr-btn {
    padding: 11px 16px;
    font-size: 14px;
  }
}
.offset-button .rr-btn:hover {
  background: #EE2D7A;
  transform: translateY(-2px);
  box-shadow: 0 6px 16px rgba(238, 45, 122, 0.4);
}
.offset-button .rr-btn:active {
  transform: translateY(0);
}
.offset-button .rr-btn .btn-wrap .text-one,
.offset-button .rr-btn .btn-wrap .text-two {
  color: var(--white);
}

/* === Offset widget box scss (index 12) === */
.side-info-content {
  display: flex;
  flex-direction: column;
  height: 100%;
  min-height: 100vh;
  max-height: 100vh;
  background: linear-gradient(180deg, #FFFFFF 0%, #FFEFF2 100%);
  overflow: hidden;
}

.offset-widget-box {
  margin-top: 0;
  padding: 24px 28px 28px;
  background: var(--white);
  border-radius: 16px 16px 0 0;
  margin-top: auto;
  position: relative;
  z-index: 5;
}
@media only screen and (max-width: 991px) {
  .offset-widget-box {
    padding: 20px 24px 24px;
  }
}
@media (max-width: 575px) {
  .offset-widget-box {
    padding: 18px 20px 22px;
    border-radius: 12px 12px 0 0;
  }
}
.offset-widget-box::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 1px;
  background: linear-gradient(90deg, transparent 0%, rgba(238, 45, 122, 0.15) 50%, transparent 100%);
}
.offset-widget-box .title {
  font-size: 20px;
  line-height: 1.3;
  margin-bottom: 14px;
  color: #0C0C0C;
  font-family: var(--font_Playfair);
  font-weight: 700;
  position: relative;
  padding-bottom: 10px;
}
@media only screen and (max-width: 991px) {
  .offset-widget-box .title {
    font-size: 18px;
    margin-bottom: 12px;
  }
}
@media (max-width: 575px) {
  .offset-widget-box .title {
    font-size: 17px;
    margin-bottom: 10px;
    padding-bottom: 8px;
  }
}
.offset-widget-box .title::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  width: 40px;
  height: 2px;
  background: linear-gradient(90deg, #EE2D7A 0%, rgba(238, 45, 122, 0.3) 100%);
  border-radius: 2px;
}
@media only screen and (max-width: 1919px) {
  .offset-widget-box .title {
    margin-bottom: 14px;
  }
}
.offset-widget-box .contact-meta {
  display: flex;
  flex-direction: column;
  gap: 4px;
}
.offset-widget-box .contact-meta > *:not(:first-child) {
  margin-top: 0;
}
.offset-widget-box .contact-item {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 8px 12px;
  background: rgba(255, 239, 242, 0.5);
  border-radius: 8px;
  transition: all 0.25s ease;
  border: 1px solid transparent;
}
@media (max-width: 575px) {
  .offset-widget-box .contact-item {
    padding: 6px 10px;
    gap: 6px;
  }
}
.offset-widget-box .contact-item:hover {
  background: rgba(255, 239, 242, 0.8);
  border-color: rgba(238, 45, 122, 0.2);
  transform: translateX(3px);
  box-shadow: 0 2px 8px rgba(238, 45, 122, 0.08);
}
.offset-widget-box .contact-item span {
  color: #0C0C0C;
  font-weight: 500;
  font-size: 13px;
  line-height: 1.35;
}
@media (max-width: 575px) {
  .offset-widget-box .contact-item span {
    font-size: 12px;
  }
}
.offset-widget-box .contact-item span a {
  color: #5B5B5B;
  transition: color 0.25s ease;
}
.offset-widget-box .contact-item span a:hover {
  color: #EE2D7A;
}
.offset-widget-box .contact-item .icon {
  width: 32px;
  min-width: 32px;
  height: 32px;
  display: inline-flex;
  background: #EE2D7A;
  justify-content: center;
  align-items: center;
  border-radius: 50%;
  color: var(--white);
  font-size: 12px;
  box-shadow: 0 2px 8px rgba(238, 45, 122, 0.2);
  transition: all 0.25s ease;
}
@media (max-width: 575px) {
  .offset-widget-box .contact-item .icon {
    width: 28px;
    min-width: 28px;
    height: 28px;
    font-size: 11px;
  }
}
.offset-widget-box .contact-item .icon:hover {
  transform: scale(1.05);
  box-shadow: 0 3px 10px rgba(238, 45, 122, 0.25);
}

/* ===Mobile menu customization scss (index 13) === */
.mobile-menu {
  margin-top: 0;
  padding: 30px 35px;
  flex: 1;
  overflow-y: auto;
  overflow-x: hidden;
  background: transparent;
  -webkit-overflow-scrolling: touch;
}
@media only screen and (max-width: 991px) {
  .mobile-menu {
    padding: 25px 30px;
  }
}
@media (max-width: 575px) {
  .mobile-menu {
    padding: 20px 25px;
  }
}
.mobile-menu::-webkit-scrollbar {
  width: 6px;
}
.mobile-menu::-webkit-scrollbar-track {
  background: transparent;
}
.mobile-menu::-webkit-scrollbar-thumb {
  background: #EE2D7A;
  border-radius: 10px;
}
.mobile-menu::-webkit-scrollbar-thumb:hover {
  background: #EE2D7A;
  opacity: 0.8;
}
.mobile-menu.mean-container .mean-nav > ul {
  padding: 0;
  margin: 0;
  width: 100%;
  list-style-type: none;
  display: block !important;
}
.mobile-menu.mean-container .mean-nav > ul > li {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 0;
  margin-bottom: 8px;
}
.mobile-menu.mean-container .mean-nav > ul > li:last-child {
  margin-bottom: 0;
}
.mobile-menu.mean-container .mean-nav > ul > li:last-child > a:not(.mean-expand) {
  border-bottom: none;
}
.mobile-menu.mean-container .mean-nav > ul > li > a:not(.mean-expand) {
  flex: 1 1 auto;
  min-width: 0;
  width: auto;
  margin-bottom: 0;
  order: 1;
}
.mobile-menu.mean-container .mean-nav > ul > li > a.mean-expand {
  flex-shrink: 0;
  margin-left: 8px;
  order: 2;
}
.mobile-menu.mean-container .mean-nav > ul > li > ul {
  flex-basis: 100%;
  width: 100%;
  margin-top: 0;
  order: 3;
}
.mobile-menu.mean-container .mean-nav {
  background: none;
  margin-top: 0;
}
.mobile-menu.mean-container .mean-nav .new {
  font-size: 10px;
  font-weight: 600;
  background: #EE2D7A;
  color: var(--white);
  padding: 4px 8px;
  line-height: 1;
  display: inline-flex;
  align-items: center;
  border-radius: 12px;
  margin-left: 8px;
  box-shadow: 0 2px 6px rgba(238, 45, 122, 0.3);
  animation: pulse 2s infinite;
}
@keyframes pulse {
  0%, 100% {
    opacity: 1;
  }
  50% {
    opacity: 0.8;
  }
}
.mobile-menu.mean-container .mean-nav ul li {
  margin-bottom: 8px;
}
.mobile-menu.mean-container .mean-nav ul li a {
  width: 100%;
  padding: 14px 18px;
  padding-inline-start: 18px;
  font-weight: 600;
  font-size: 16px;
  line-height: 1.5;
  color: #0C0C0C;
  text-transform: capitalize;
  border: none;
  border-radius: 10px;
  background: rgba(255, 255, 255, 0.9);
  display: flex;
  gap: 12px;
  justify-content: space-between;
  align-items: center;
  outline: none;
  transform: translateY(0) translateZ(0);
  transition: all 0.25s ease;
  box-sizing: border-box;
  opacity: 1;
  box-shadow: 0 1px 3px rgba(0, 0, 0, 0.06);
  position: relative;
  overflow: visible;
  border-left: 3px solid transparent;
}
@media only screen and (max-width: 991px) {
  .mobile-menu.mean-container .mean-nav ul li a {
    padding: 12px 16px;
    font-size: 15px;
  }
}
@media only screen and (max-width: 767px) {
  .mobile-menu.mean-container .mean-nav ul li a {
    padding: 12px 16px;
    font-size: 15px;
  }
}
@media (max-width: 575px) {
  .mobile-menu.mean-container .mean-nav ul li a {
    padding: 11px 14px;
    font-size: 14px;
  }
}
.mobile-menu.mean-container .mean-nav ul li a::before {
  display: none;
}
.mobile-menu.mean-container .mean-nav ul li a:hover {
  color: #EE2D7A;
  background: rgba(255, 239, 242, 0.6);
  border-left-color: #EE2D7A;
  transform: translateX(4px);
  box-shadow: 0 2px 8px rgba(238, 45, 122, 0.08);
}
.mobile-menu.mean-container .mean-nav ul li a.mean-expand {
  width: 44px;
  height: 44px;
  min-width: 44px;
  justify-content: center;
  font-weight: 600;
  border: none !important;
  background: #EE2D7A;
  color: var(--white);
  border-radius: 8px;
  padding: 0;
  margin-left: auto;
  flex-shrink: 0;
  transition: all 0.3s ease;
  box-shadow: 0 2px 8px rgba(238, 45, 122, 0.2);
}
@media (max-width: 575px) {
  .mobile-menu.mean-container .mean-nav ul li a.mean-expand {
    width: 40px;
    height: 40px;
    min-width: 40px;
  }
}
.mobile-menu.mean-container .mean-nav ul li a.mean-expand::before {
  display: none;
}
.mobile-menu.mean-container .mean-nav ul li a.mean-expand:hover {
  background: #EE2D7A;
  transform: scale(1.1);
  box-shadow: 0 4px 12px rgba(238, 45, 122, 0.3);
  opacity: 1;
}
.mobile-menu.mean-container .mean-nav ul li a.mean-expand.mean-clicked {
  background: #EE2D7A;
  transform: rotate(180deg);
}
.mobile-menu.mean-container .mean-nav ul li li:first-child a {
  border-top: none;
}
.mobile-menu.mean-container .mean-nav ul li li li {
  margin-bottom: 6px;
  margin-left: 20px;
}
.mobile-menu.mean-container .mean-nav ul li li li:last-child {
  border-bottom: none;
  margin-bottom: 0;
}
.mobile-menu.mean-container .mean-nav ul li li li a {
  padding: 12px 18px 12px 36px;
  background: rgba(255, 239, 242, 0.4);
  font-size: 15px;
  font-weight: 500;
  border-radius: 8px;
  border-top: none !important;
  border-left: 2px solid transparent;
}
@media (max-width: 575px) {
  .mobile-menu.mean-container .mean-nav ul li li li a {
    padding: 10px 14px 10px 30px;
    font-size: 14px;
  }
}
.mobile-menu.mean-container .mean-nav ul li li li a::before {
  left: 18px;
  width: 2px;
}
.mobile-menu.mean-container .mean-nav ul li li li a:hover {
  background: rgba(255, 239, 242, 0.7);
  color: #EE2D7A;
  border-left-color: #EE2D7A;
  transform: translateX(3px);
}
.mobile-menu.mean-container .mean-bar {
  padding-bottom: 20px;
  background: none;
  max-height: auto;
  overflow-y: auto;
}
.mobile-menu.mean-container .mean-bar::-webkit-scrollbar {
  width: 6px;
}
.mobile-menu.mean-container .mean-bar::-webkit-scrollbar-track {
  background: transparent;
}
.mobile-menu.mean-container .mean-bar::-webkit-scrollbar-thumb {
  background: #EE2D7A;
  border-radius: 10px;
}
.mobile-menu.mean-container .mean-bar::-webkit-scrollbar-thumb:hover {
  background: #EE2D7A;
  opacity: 0.8;
}
.mobile-menu.mean-container a.meanmenu-reveal {
  display: none !important;
}

/* === Sticky header scss (index 14) === */
.header-sticky {
  transition: all 0.5s;
}

.transformed {
  position: fixed !important;
  top: 0;
  left: 0;
  right: 0;
  width: 100%;
  z-index: 800;
  transform: translateY(-100%);
}
.transformed .header-area__inner {
  height: 80px;
}

.sticky {
  position: fixed !important;
  top: 0;
  left: 0;
  right: 0;
  width: 100%;
  z-index: 800;
  background-color: #ffffff;
  transform: translateY(0%);
}

/* === inverted text scss (index 15) === */
.text-invert > div {
  background-image: linear-gradient(to right, var(--primary) 50%, rgba(17, 17, 17, 0.3) 50%);
  background-size: 200% 100%;
  background-position-x: 100%;
  color: transparent;
  background-clip: text;
  -webkit-background-clip: text;
}

.background-image {
  background-position: center;
  background-repeat: no-repeat !important;
  background-size: cover !important;
}

.border-top {
  border-top: 1px solid rgba(255, 255, 255, 0.15);
}

.border-bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.15);
}

/* === Section spacing  scss (index) === */
.section-spacing {
  padding-bottom: 130px;
  padding-top: 130px;
}
@media only screen and (max-width: 1919px) {
  .section-spacing {
    padding-bottom: 90px;
    padding-top: 90px;
  }
}
@media only screen and (max-width: 1399px) {
  .section-spacing {
    padding-bottom: 80px;
    padding-top: 80px;
  }
}
@media only screen and (max-width: 1199px) {
  .section-spacing {
    padding-bottom: 60px;
    padding-top: 60px;
  }
}
@media only screen and (max-width: 991px) {
  .section-spacing {
    padding-bottom: 50px;
    padding-top: 50px;
  }
}
@media only screen and (max-width: 767px) {
  .section-spacing {
    padding-bottom: 40px;
    padding-top: 40px;
  }
}
@media (max-width: 575px) {
  .section-spacing {
    padding-bottom: 35px;
    padding-top: 35px;
  }
}

.section-spacing-120 {
  padding-bottom: 120px;
  padding-top: 120px;
}
@media only screen and (max-width: 1919px) {
  .section-spacing-120 {
    padding-bottom: 70px;
    padding-top: 70px;
  }
}
@media only screen and (max-width: 1399px) {
  .section-spacing-120 {
    padding-bottom: 50px;
    padding-top: 50px;
  }
}
@media only screen and (max-width: 1199px) {
  .section-spacing-120 {
    padding-bottom: 40px;
    padding-top: 40px;
  }
}
@media only screen and (max-width: 991px) {
  .section-spacing-120 {
    padding-bottom: 30px;
    padding-top: 30px;
  }
}
@media only screen and (max-width: 767px) {
  .section-spacing-120 {
    padding-bottom: 20px;
    padding-top: 20px;
  }
}
@media (max-width: 575px) {
  .section-spacing-120 {
    padding-bottom: 15px;
    padding-top: 15px;
  }
}

.section-spacing-top-120 {
  padding-top: 120px;
}
@media only screen and (max-width: 1919px) {
  .section-spacing-top-120 {
    padding-top: 90px;
  }
}
@media only screen and (max-width: 1399px) {
  .section-spacing-top-120 {
    padding-top: 80px;
  }
}
@media only screen and (max-width: 1199px) {
  .section-spacing-top-120 {
    padding-top: 60px;
  }
}
@media only screen and (max-width: 991px) {
  .section-spacing-top-120 {
    padding-top: 50px;
  }
}
@media only screen and (max-width: 767px) {
  .section-spacing-top-120 {
    padding-top: 40px;
  }
}
@media (max-width: 575px) {
  .section-spacing-top-120 {
    padding-top: 35px;
  }
}

.section-spacing-top {
  padding-top: 130px;
}
@media only screen and (max-width: 1919px) {
  .section-spacing-top {
    padding-top: 90px;
  }
}
@media only screen and (max-width: 1399px) {
  .section-spacing-top {
    padding-top: 80px;
  }
}
@media only screen and (max-width: 1199px) {
  .section-spacing-top {
    padding-top: 60px;
  }
}
@media only screen and (max-width: 991px) {
  .section-spacing-top {
    padding-top: 50px;
  }
}
@media only screen and (max-width: 767px) {
  .section-spacing-top {
    padding-top: 40px;
  }
}
@media (max-width: 575px) {
  .section-spacing-top {
    padding-top: 35px;
  }
}

.section-spacing-bottom {
  padding-bottom: 130px;
}
@media only screen and (max-width: 1919px) {
  .section-spacing-bottom {
    padding-bottom: 90px;
  }
}
@media only screen and (max-width: 1399px) {
  .section-spacing-bottom {
    padding-bottom: 80px;
  }
}
@media only screen and (max-width: 1199px) {
  .section-spacing-bottom {
    padding-bottom: 60px;
  }
}
@media only screen and (max-width: 991px) {
  .section-spacing-bottom {
    padding-bottom: 50px;
  }
}
@media only screen and (max-width: 767px) {
  .section-spacing-bottom {
    padding-bottom: 40px;
  }
}
@media (max-width: 575px) {
  .section-spacing-bottom {
    padding-bottom: 35px;
  }
}

.background-image {
  background-position: center;
  background-repeat: no-repeat !important;
  background-size: cover !important;
}

.border-top {
  border-top: 1px solid rgba(255, 255, 255, 0.15);
}

.border-bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.15);
}

.section-bg {
  background-color: #f0f2f4;
}

.ml-107 {
  margin-left: 107px;
}
@media only screen and (max-width: 1399px) {
  .ml-107 {
    margin-left: 70px;
  }
}
@media only screen and (max-width: 991px) {
  .ml-107 {
    margin-left: 0px;
  }
}

.inner-page__title {
  font-family: var(--font_thunder);
  font-weight: 700;
  font-size: 420px;
  line-height: 400px;
  letter-spacing: 0%;
  text-transform: uppercase;
  text-align: center;
  color: var(--black);
  padding-bottom: 40px;
}
@media only screen and (max-width: 1919px) {
  .inner-page__title {
    font-size: 320px;
    line-height: 1;
  }
}
@media only screen and (max-width: 1399px) {
  .inner-page__title {
    font-size: 300px;
  }
}
@media only screen and (max-width: 1199px) {
  .inner-page__title {
    font-size: 200px;
  }
}
@media only screen and (max-width: 991px) {
  .inner-page__title {
    font-size: 180px;
  }
}
@media only screen and (max-width: 767px) {
  .inner-page__title {
    font-size: 150px;
  }
}
@media (max-width: 575px) {
  .inner-page__title {
    font-size: 70px;
  }
}

.bg-light-pick {
  background: var(--primary);
}

.nice-select:after {
  display: none !important;
}

/* === Button  scss (index) === */
.testimonial-controls {
  display: flex;
  align-items: center;
  gap: 24px;
}
@media only screen and (max-width: 1399px) {
  .testimonial-controls {
    margin-right: auto;
    margin-bottom: 50px;
  }
}
@media (max-width: 575px) {
  .testimonial-controls {
    margin-bottom: 20px;
  }
}
.testimonial-controls__arrowLeft {
  width: 111px;
  height: 48px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font_Playfair);
  font-weight: 500;
  font-style: Medium;
  font-size: 18px;
  line-height: 24px;
  letter-spacing: 0px;
  text-transform: capitalize;
  color: #0C0C0C;
  border: 1px solid #E6E6E6;
  border-radius: 1000px;
  gap: 8px;
  transition: all 0.4s ease-in-out;
}
.testimonial-controls__arrowLeft .icon {
  background: #0C0C0C;
  width: 36px;
  height: 36px;
  line-height: 36px;
  border-radius: 79.2px;
  text-align: center;
  gap: 7px;
  color: #FFFFFF;
  font-size: 16px;
  transition: all 0.4s ease-in-out;
}
.testimonial-controls__arrowLeft:hover {
  background: #EE2D7A;
  color: #E6E6E6;
}
.testimonial-controls__arrowLeft:hover .icon {
  background: #FFFFFF;
  color: #0C0C0C;
}
.testimonial-controls__arrowRight {
  width: 111px;
  height: 48px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font_Playfair);
  font-weight: 500;
  font-style: Medium;
  font-size: 18px;
  line-height: 24px;
  letter-spacing: 0px;
  text-transform: capitalize;
  background: #EE2D7A;
  color: #E6E6E6;
  border: 1px solid #E6E6E6;
  border-radius: 1000px;
  gap: 8px;
  transition: all 0.4s ease-in-out;
}
.testimonial-controls__arrowRight .icon {
  background: #0C0C0C;
  width: 36px;
  height: 36px;
  line-height: 36px;
  border-radius: 79.2px;
  text-align: center;
  gap: 7px;
  color: #FFFFFF;
  font-size: 16px;
  transition: all 0.4s ease-in-out;
}
.testimonial-controls__arrowRight:hover {
  color: #0C0C0C;
  background-color: transparent;
}

/* === Pagination  scss (index) === */
.pagination {
  display: flex;
  justify-content: center;
  align-items: center;
  margin-top: 20px;
  gap: 24px;
}
@media (max-width: 575px) {
  .pagination {
    gap: 10px;
  }
}
.pagination a {
  display: flex;
  justify-content: center;
  align-items: center;
  width: 35px;
  height: 35px;
  border-radius: 50%;
  text-decoration: none;
  font-size: 14px;
  color: #666;
}
@media (max-width: 575px) {
  .pagination a {
    width: 20px;
    height: 20px;
  }
}
.pagination a.active {
  border: 1px solid #EE2D7A;
  background: #fff;
  background: #EE2D7A;
  color: #fff;
  border-color: #EE2D7A;
}
.pagination a:hover {
  background: #EE2D7A;
  color: #fff !important;
}
.pagination a.prev {
  width: 100px;
  gap: 2px;
  border-radius: 92px;
  padding: 21px 16px;
  background: #0C0C0C;
  color: #FFFFFF;
  font-family: var(--font_Playfair);
  font-weight: 500;
  font-style: Medium;
  font-size: 16px;
  line-height: 22px;
  letter-spacing: 0px;
  transition: all 0.4s ease-in-out;
}
.pagination a.prev i {
  margin-right: 8px;
}
@media (max-width: 575px) {
  .pagination a.prev {
    padding: 18px 16px;
    width: 80px;
    font-size: 14px;
  }
}
.pagination a.prev:hover {
  background: #EE2D7A;
}
.pagination a.next {
  width: 100px;
  gap: 2px;
  border-radius: 92px;
  padding: 21px 16px;
  background: #0C0C0C;
  color: #FFFFFF;
  font-family: var(--font_Playfair);
  font-weight: 500;
  font-style: Medium;
  font-size: 16px;
  line-height: 22px;
  letter-spacing: 0px;
  transition: all 0.4s ease-in-out;
}
.pagination a.next i {
  margin-left: 8px;
}
@media (max-width: 575px) {
  .pagination a.next {
    padding: 18px 16px;
    width: 80px;
    font-size: 14px;
  }
}
.pagination a.next:hover {
  background: #EE2D7A;
}

/* === theme scss (index 01) === */
html {
  --container-max-widths: 1320px;
}
@media only screen and (max-width: 1399px) {
  html {
    --container-max-widths: 1140px;
  }
}
@media only screen and (max-width: 1199px) {
  html {
    --container-max-widths: 960px;
  }
}
@media only screen and (max-width: 991px) {
  html {
    --container-max-widths: 720px;
  }
}
@media only screen and (max-width: 767px) {
  html {
    --container-max-widths: 540px;
  }
}

.body-wrapper {
  background-color: var(--white);
}
.body-wrapper.dark {
  background-color: var(--black);
}

.img_anim_reveal {
  visibility: hidden;
  overflow: hidden;
}
.img_anim_reveal img {
  object-fit: cover;
  transform-origin: left;
}

.anim-reveal {
  overflow: hidden;
}

.anim-reveal-line {
  overflow: hidden;
}

.color-white {
  color: var(--white);
}
.color-black {
  color: var(--black);
}
.color-primary {
  color: var(--primary);
}
.color-secondary {
  color: var(--secondary);
}

/* === BG Color scss (index 02) === */
.theme-bg-white {
  background-color: var(--white);
}
.theme-bg-black {
  background-color: var(--black);
}
.dark .theme-bg-black {
  background-color: #171717;
}
.theme-bg-primary {
  background-color: var(--primary);
}
.theme-bg-secondary {
  background-color: var(--secondary);
}
.theme-bg-transparent {
  background-color: transparent;
}
.theme-bg-theme {
  background-color: var(--theme);
}

/* === Z-index scss (index 03) === */
.zi-1 {
  z-index: 1;
}
.zi-2 {
  z-index: 2;
}
.zi-0 {
  z-index: 0;
}
.zi--1 {
  z-index: -1;
}

/* === Text Border scss (index 04) === */
.text-underline {
  text-decoration: underline;
  text-decoration-thickness: 2px;
  text-underline-offset: 5px;
  text-decoration-skip-ink: none;
}

.vertically-center {
  height: 100%;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

/* === Text Indent scss (index 05) === */
.text-indent-40 {
  text-indent: 40px;
}
.text-indent-50 {
  text-indent: 50px;
}

header {
  margin-bottom: -1px;
  z-index: 100;
}

.mb--1 {
  margin-bottom: -1px;
}

.dir-rtl {
  direction: rtl;
}

.show-light {
  display: inline-block;
}
.dark .show-light {
  display: none;
}

.show-dark {
  display: none;
}
.dark .show-dark {
  display: inline-block;
}

.line-divider-sm {
  height: 0.5px;
  background-color: var(--black-9);
}

/* === preloader scss (index 02) === */
.loader-wrap {
  position: fixed;
  z-index: 10;
  height: 100vh;
  width: 100vw;
  left: 0;
  top: 0;
  right: 0;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  overflow: hidden;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  background: var(--action);
  z-index: 99999999999999;
}

.loader-wrap svg {
  position: absolute;
  top: 0;
  width: 100vw;
  height: 110vh;
  fill: #000;
}

.loader-wrap .loader-wrap-heading .load-text {
  font-size: 100px;
  font-weight: 800;
  text-transform: uppercase;
  color: var(--white);
  z-index: 20;
}
@media only screen and (max-width: 767px) {
  .loader-wrap .loader-wrap-heading .load-text {
    font-size: 50px;
  }
}

.load-text span {
  -webkit-animation: loading 1s infinite alternate;
  animation: loading 1s infinite alternate;
}

.load-text span:nth-child(1) {
  -webkit-animation-delay: 0s;
  animation-delay: 0s;
}

.load-text span:nth-child(2) {
  -webkit-animation-delay: 0.1s;
  animation-delay: 0.1s;
}

.load-text span:nth-child(3) {
  -webkit-animation-delay: 0.2s;
  animation-delay: 0.2s;
}

.load-text span:nth-child(4) {
  -webkit-animation-delay: 0.3s;
  animation-delay: 0.3s;
}

.load-text span:nth-child(5) {
  -webkit-animation-delay: 0.4s;
  animation-delay: 0.4s;
}

.load-text span:nth-child(6) {
  -webkit-animation-delay: 0.5s;
  animation-delay: 0.5s;
}

.load-text span:nth-child(7) {
  -webkit-animation-delay: 0.6s;
  animation-delay: 0.6s;
}

@-webkit-keyframes loading {
  0% {
    opacity: 1;
  }
  100% {
    opacity: 0;
  }
}
@keyframes loading {
  0% {
    opacity: 1;
  }
  100% {
    opacity: 0;
  }
}
.search-wrap {
  width: 100%;
  height: 100%;
  overflow: hidden;
  display: none;
  position: fixed;
  top: 0;
  left: 0;
  z-index: 999999;
  background-color: rgba(255, 255, 255, 0.9);
}
.search-wrap .search-inner {
  position: relative;
  width: 100%;
  height: 100%;
}
.search-wrap .search-cell {
  position: absolute;
  top: 10%;
  width: 100%;
  transform: translateY(-50%);
}
.search-wrap .search-field-holder {
  width: 50%;
  margin: auto;
  position: relative;
  animation: slideInUp 0.3s;
}

@media only screen and (min-width: 768px) and (max-width: 991px) {
  .search-wrap .search-field-holder {
    width: 70%;
  }
}
@media (max-width: 575px) {
  .search-wrap .search-field-holder {
    width: 80%;
  }
}
.search-wrap .main-search-input {
  width: 100%;
  height: 70px;
  border: 0;
  padding: 0 50px;
  text-transform: capitalize;
  background: transparent;
  font-size: 25px;
  color: var(--primary-two) !important;
  border-bottom: 2px solid var(--primary-two) !important;
  text-align: center;
  letter-spacing: 2px;
}

@media (max-width: 575px) {
  .search-wrap .main-search-input {
    height: 50px;
    padding: 0 0;
    line-height: 50px;
    font-size: 18px;
  }
}
.search-wrap input.form-control,
.search-wrap input.form-control:focus {
  background-color: var(--primary-two) !important;
}

input.main-search-input::placeholder {
  color: var(--primary-two) !important;
  opacity: 1;
  font-size: 25px;
}

@media (max-width: 575px) {
  input.main-search-input::placeholder {
    font-size: 18px;
  }
}
.search-close {
  position: absolute;
  top: 50px;
  right: 50px;
  font-size: 30px;
  color: var(--primary-two);
  cursor: pointer;
}

/* === scroll scss (index 01) === */
.scroll__down {
  display: flex;
  gap: 20px;
  align-items: center;
}
.scroll__down p {
  font-weight: 500;
  font-size: 14px;
  line-height: 1.9;
  text-transform: uppercase;
  color: var(--white);
}
.scroll__down span {
  width: 66px;
  height: 106px;
  border: 1px solid var(--black-6);
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 89px;
}
.scroll__down span i {
  color: var(--white);
}
.scroll__down-wrapper {
  height: 425px;
  display: flex;
  align-items: center;
  justify-content: center;
}
@media only screen and (max-width: 1399px) {
  .scroll__down-wrapper {
    height: 380px;
  }
}
@media only screen and (max-width: 1199px) {
  .scroll__down-wrapper {
    height: 350px;
  }
}
@media only screen and (max-width: 767px) {
  .scroll__down-wrapper {
    height: auto;
    padding: 40px 0;
  }
}
.scroll-top {
  width: 50px;
  height: 50px;
  position: fixed;
  right: 15px;
  bottom: 0px;
  z-index: 9999;
  border-radius: 100px;
  mix-blend-mode: exclusion;
  opacity: 0;
  visibility: hidden;
  transition: all 0.5s;
  background-color: #EE2D7A;
}
.scroll-top.showed {
  opacity: 1;
  visibility: visible;
  bottom: 20px;
  background-color: #EE2D7A;
}

.go-top-writer {
  width: 105px;
  font-size: 16px;
  cursor: pointer;
  text-align: left;
  color: var(--white);
  background-image: url(../imgs/writer/go-top.webp);
  background-position: right center;
  background-repeat: no-repeat;
  right: 16%;
  visibility: hidden;
  opacity: 0;
  z-index: 9;
  transition: all 0.5s;
}
.go-top-writer:hover {
  color: var(--primary);
}
.go-top-writer.showed {
  opacity: 1;
  visibility: visible;
  bottom: 20px;
}
@media only screen and (max-width: 767px) {
  .go-top-writer br {
    display: block;
  }
}

/* === progress-wrap scss (index 01) === */
.progress-wrap {
  position: fixed;
  right: 20px;
  bottom: 20px;
  height: 46px;
  width: 46px;
  cursor: pointer;
  display: block;
  border-radius: 50px;
  z-index: 99;
  opacity: 0;
  visibility: hidden;
  transform: translateY(-100px);
  transition: all 300ms linear;
  background-color: #EE2D7A;
}

.progress-wrap.active-progress {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
  background-color: #EE2D7A;
}

.progress-wrap::after {
  position: absolute;
  content: "\f062";
  font: var(--fa-font-solid);
  text-align: center;
  line-height: 46px;
  font-size: 20px;
  color: var(--primary);
  left: 0;
  top: 0;
  height: 46px;
  width: 46px;
  cursor: pointer;
  display: block;
  z-index: 1;
  transition: all 200ms linear;
  border-radius: 50px;
  background-color: #EE2D7A;
}
.dark .progress-wrap::after {
  color: var(--black);
}

.progress-wrap svg path {
  fill: #EE2D7A;
}

.progress-wrap svg.progress-circle path {
  fill: #EE2D7A;
  stroke: transparent;
  stroke-width: 5;
  box-sizing: border-box;
  transition: all 200ms linear;
}

/* === primary btn scss (index 01) === */
.rr-btn-green {
  z-index: 5;
  font-size: 18px;
  overflow: hidden;
  font-weight: 500;
  line-height: 28px;
  position: relative;
  padding: 18px 31px;
  align-items: center;
  display: inline-flex;
  border-radius: 500px;
  letter-spacing: -0.48px;
  justify-content: center;
  text-transform: uppercase;
  font-family: var(--font_bai);
  background-color: var(--lime-green);
}
.rr-btn-green:hover::before, .rr-btn-green:focus::before {
  height: 100%;
}
.rr-btn-green:hover .btn-wrap .text-one, .rr-btn-green:focus .btn-wrap .text-one {
  transform: translateY(-150%);
}
.rr-btn-green:hover .btn-wrap .text-two, .rr-btn-green:focus .btn-wrap .text-two {
  top: 50%;
  transform: translateY(-50%);
  color: var(--white);
}
.rr-btn-green:after {
  display: block;
  clear: both;
  content: "";
}
.rr-btn-green::before {
  background-color: var(--primary-two);
  content: "";
  width: 100%;
  height: 0;
  bottom: 0;
  position: absolute;
  transition: all 0.5s;
}
.rr-btn-green .btn-wrap {
  z-index: 1;
  float: left;
  overflow: hidden;
  position: relative;
  display: inline-block;
  border: none;
}
.rr-btn-green .btn-wrap .text-one,
.rr-btn-green .btn-wrap .text-two {
  gap: 6px;
  display: flex;
  align-items: center;
}
.rr-btn-green .btn-wrap .text-one {
  position: relative;
  color: var(--primary);
  transition: all 0.5s;
}
.rr-btn-green .btn-wrap .text-two {
  top: 100%;
  position: absolute;
  color: var(--white);
  transition: all 0.5s;
}
.rr-btn-green.green-2 {
  font-size: 16px;
  line-height: 20px;
  padding: 12px 28px;
  border-radius: 2px;
  background: var(--green);
}
.rr-btn-green.btn-purple::before {
  background: #b4f914;
}
.rr-btn-green.btn-purple .text-one {
  color: var(--white);
}
.rr-btn-green.btn-purple:hover {
  background-color: transparent;
}
.rr-btn-green.btn-purple:hover .text-two {
  color: var(--primary);
}
.rr-btn-green.btn-black {
  background-color: var(--primary);
}
.rr-btn-green.btn-black::before {
  background: #b4f914;
  z-index: -1;
}
.rr-btn-green.btn-black .text-one {
  color: var(--white);
}
.rr-btn-green.btn-black:hover {
  background-color: transparent;
  color: var(--primary);
}
.rr-btn-green.btn-black:hover .text-two {
  color: var(--primary);
}
.rr-btn-green.btn-blue {
  background-color: var(--purple);
}
.rr-btn-green.btn-blue::before {
  background: var(--purple);
}
.rr-btn-green.btn-blue .text-one {
  color: var(--white);
}
.rr-btn-green.btn-blue:hover {
  background-color: transparent;
}
.rr-btn-green.btn-blue:hover .text-two {
  color: var(--primary);
}

.rr-btn-2 {
  z-index: 5;
  font-size: 16px;
  overflow: hidden;
  font-weight: 500;
  line-height: 162.5%;
  position: relative;
  padding: 14px 44px;
  align-items: center;
  display: inline-flex;
  border-radius: 90px;
  letter-spacing: -0.48px;
  justify-content: center;
  text-transform: uppercase;
  font-family: Kanit;
  background: #febc00;
}
.rr-btn-2:hover::before, .rr-btn-2:focus::before {
  height: 100%;
}
.rr-btn-2:hover .btn-wrap .text-one, .rr-btn-2:focus .btn-wrap .text-one {
  transform: translateY(-150%);
}
.rr-btn-2:hover .btn-wrap .text-two, .rr-btn-2:focus .btn-wrap .text-two {
  top: 50%;
  transform: translateY(-50%);
  color: var(--white);
  color: #000;
  font-family: Kanit;
  font-size: 16px;
  font-style: normal;
  font-weight: 500;
  line-height: 162.5%;
}
.rr-btn-2:after {
  display: block;
  clear: both;
  content: "";
}
.rr-btn-2::before {
  background-color: var(--primary-two);
  content: "";
  width: 100%;
  height: 0;
  bottom: 0;
  position: absolute;
  transition: all 0.5s;
}
.rr-btn-2 .btn-wrap {
  z-index: 1;
  float: left;
  overflow: hidden;
  position: relative;
  display: inline-block;
  border: none;
}
.rr-btn-2 .btn-wrap .text-one,
.rr-btn-2 .btn-wrap .text-two {
  gap: 6px;
  display: flex;
  align-items: center;
}
.rr-btn-2 .btn-wrap .text-one {
  position: relative;
  color: var(--primary);
  transition: all 0.5s;
}
.rr-btn-2 .btn-wrap .text-two {
  top: 100%;
  position: absolute;
  color: var(--white);
  transition: all 0.5s;
}
.rr-btn-2.green-2 {
  font-size: 16px;
  line-height: 20px;
  padding: 12px 28px;
  border-radius: 2px;
  background: var(--green);
}
.rr-btn-2.btn-purple::before {
  background: #febc00;
}
.rr-btn-2.btn-purple .text-one {
  color: #000;
  font-family: Kanit;
  font-size: 16px;
  font-style: normal;
  font-weight: 500;
  line-height: 162.5%;
}
.rr-btn-2.btn-purple:hover {
  background-color: transparent;
}
.rr-btn-2.btn-purple:hover .text-two {
  color: var(--primary);
}
.rr-btn-2.btn-black {
  background-color: var(--primary);
}
.rr-btn-2.btn-black::before {
  background: #febc00;
}
.rr-btn-2.btn-black .text-one {
  color: var(--white);
}
.rr-btn-2.btn-black:hover {
  background-color: transparent;
}
.rr-btn-2.btn-black:hover .text-two {
  color: var(--primary);
}

.rr-btn-border {
  gap: 15px;
  font-size: 16px;
  font-weight: 500;
  line-height: 26px;
  align-items: center;
  display: inline-flex;
  color: var(--primary);
  border-radius: 500px;
  text-transform: uppercase;
  padding: 7px 8px 7px 24px;
  border: 1px solid #e3e3e3;
  font-family: var(--font_kanit);
  justify-content: space-between;
  background: rgba(241, 241, 241, 0);
}
.rr-btn-border .icon {
  width: 36px;
  height: 36px;
  display: flex;
  font-size: 20px;
  color: var(--white);
  align-items: center;
  border-radius: 500px;
  transition: all 0.3s;
  background: var(--primary-two);
  justify-content: center;
}
.rr-btn-border:hover .icon {
  rotate: -45deg;
}
.rr-btn-border.btn-black {
  color: var(--white);
  background: var(--primary);
}
.rr-btn-border.btn-black .icon {
  color: var(--primary);
  background: var(--white);
}
.rr-btn-border.btn-purple {
  gap: 30px;
  color: var(--white);
  background: var(--purple);
  padding: 10px 11px 10px 37px;
}
.rr-btn-border.btn-purple .icon {
  width: 44px;
  height: 44px;
  color: var(--primary);
  background: var(--white);
}

.btn-orange {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  padding: 17px 40px;
  background: #EE2D7A;
  border-radius: 36px;
  font-family: var(--font_Playfair);
  font-weight: 500;
  font-style: Medium;
  font-size: 16px;
  line-height: 22px;
  letter-spacing: 0px;
  text-align: center;
  color: #FFFFFF;
  border: none;
  cursor: pointer;
  transition: all 0.4s ease-in-out;
}
.btn-orange:hover {
  background: #FFEFF2;
  color: #5B5B5B;
  transition: all 0.4s ease-in-out;
}

.btn-dark {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 220px;
  padding: 15px 40px;
  background: var(--black);
  color: var(--white);
  border: none;
  color: #fff;
  font-family: var(--font_kanit);
  font-size: 18px;
  font-style: normal;
  font-weight: 500;
  line-height: 26px;
  border-radius: 15px;
  cursor: pointer;
}

.rr-btn-button {
  gap: 11px;
  font-family: var(--font_Playfair);
  font-weight: 500;
  font-style: Medium;
  font-size: 16px;
  line-height: 18px;
  letter-spacing: 0px;
  align-items: center;
  display: inline-flex;
  color: #FFFFFF;
  border-radius: 90px;
  text-transform: capitalize;
  padding: 9px 9px 9px 24px;
  border: 1px solid #e3e3e3;
  justify-content: space-between;
  background: #0C0C0C;
}
@media (max-width: 575px) {
  .rr-btn-button {
    padding: 8px 8px 8px 20px;
  }
}
.rr-btn-button .icon {
  width: 36px;
  height: 36px;
  display: flex;
  font-size: 20px;
  color: var(--white);
  align-items: center;
  border-radius: 500px;
  transition: all 0.3s;
  background: var(--primary-two);
  justify-content: center;
  background: #EE2D7A;
}
.rr-btn-button:hover .icon {
  rotate: -45deg;
}
.rr-btn-button.btn-black {
  color: var(--white);
  background: var(--primary);
}
.rr-btn-button.btn-black .icon {
  color: var(--primary);
  background: var(--white);
}
.rr-btn-button.btn-purple {
  gap: 11px;
  color: #000;
  color: #FFFFFF;
  background: #0C0C0C;
  padding: 9px 14px 9px 17px;
}
@media (max-width: 575px) {
  .rr-btn-button.btn-purple {
    padding: 8px 8px 8px 18px;
  }
}
.rr-btn-button.btn-purple .icon {
  width: 44px;
  height: 44px;
  background: #FFFFFF;
}
.rr-btn-button.btn-purple .icon:hover {
  background: #EE2D7A;
}

.rr-btn-button2 {
  gap: 15px;
  font-size: 16px;
  font-weight: 500;
  font-style: Medium;
  line-height: 26px;
  line-height: 22px;
  letter-spacing: 0px;
  text-align: center;
  vertical-align: middle;
  background: #EE2D7A;
  align-items: center;
  display: inline-flex;
  color: #FFFFFF;
  border-radius: 90px;
  text-transform: capitalize;
  padding: 6px 9px 7px 24px;
  border: 1px solid none;
  font-family: var(--font_Playfair);
  justify-content: space-between;
}
.rr-btn-button2 .icon {
  width: 36px;
  height: 36px;
  display: flex;
  font-size: 20px;
  color: var(--white);
  align-items: center;
  border-radius: 500px;
  transition: all 0.3s;
  background: #FFFFFF;
  justify-content: center;
}
.rr-btn-button2:hover {
  color: #FFFFFF;
}
.rr-btn-button2:hover .icon {
  rotate: -45deg;
}
.rr-btn-button2.btn-black {
  color: var(--white);
  background: var(--primary);
}
.rr-btn-button2.btn-black .icon {
  color: var(--primary);
  background: var(--white);
}
.rr-btn-button2.btn-purple {
  gap: 30px;
  color: #000;
  background: #f3ff0a;
  padding: 10px 11px 10px 37px;
}
.rr-btn-button2.btn-purple .icon {
  width: 44px;
  height: 44px;
  background: #000;
}

.rr-btn-button3 {
  gap: 15px;
  font-size: 16px;
  font-weight: 500;
  line-height: 26px;
  align-items: center;
  display: inline-flex;
  color: #000;
  border-radius: 90px;
  text-transform: uppercase;
  padding: 7px 8px 7px 24px;
  border: 1px solid #e3e3e3;
  font-family: Kanit;
  justify-content: space-between;
  background: rgba(241, 241, 241, 0);
}
.rr-btn-button3 .icon {
  width: 36px;
  height: 36px;
  display: flex;
  font-size: 20px;
  color: #000;
  align-items: center;
  border-radius: 500px;
  transition: all 0.3s;
  background: var(--primary-two);
  justify-content: center;
}
.rr-btn-button3:hover .icon {
  rotate: -45deg;
}
.rr-btn-button3.btn-black {
  color: var(--white);
  background: var(--primary);
}
.rr-btn-button3.btn-black .icon {
  color: var(--primary);
  background: var(--white);
}
.rr-btn-button3.btn-purple {
  gap: 30px;
  color: #fff;
  background: #000;
  padding: 10px 11px 10px 37px;
}
.rr-btn-button3.btn-purple .icon {
  width: 44px;
  height: 44px;
  background: #f3ff0a;
}

.rr-btn-button4 {
  font-family: var(--font_Playfair);
  font-weight: 500;
  font-size: 16px;
  line-height: 22px;
  letter-spacing: 0px;
  text-align: center;
  vertical-align: middle;
  align-items: center;
  display: inline-flex;
  color: #FFFFFF;
  border-radius: 34px;
  text-transform: capitalize;
  padding: 8px 10px 8px;
  border: none;
  justify-content: space-between;
  background: #0C0C0C;
}
@media (max-width: 575px) {
  .rr-btn-button4 {
    padding: 8px 8px 9px 20px;
  }
}
.rr-btn-button4 .text {
  display: block;
  display: flex;
  text-align: center;
  justify-content: center;
  align-items: center;
  justify-items: center;
  margin: 0 auto;
  font-weight: 500;
  font-style: Medium;
  font-size: 16px;
  color: #FFFFFF;
  line-height: 22px;
  letter-spacing: 0px;
  text-align: center;
}
.rr-btn-button4 .icon {
  width: 36px;
  height: 36px;
  display: flex;
  font-size: 20px;
  color: #0C0C0C;
  align-items: center;
  border-radius: 500px;
  transition: all 0.3s;
  justify-content: center;
  background: #FFFFFF;
}
.rr-btn-button4:hover {
  background-color: #FFFFFF;
  color: #EE2D7A;
}
.rr-btn-button4:hover .icon {
  rotate: -45deg;
  background: #EE2D7A;
}
.rr-btn-button4:hover .icon svg path {
  fill: #0C0C0C;
}
.rr-btn-button4:hover .text {
  color: #EE2D7A;
}
.rr-btn-button4.btn-black {
  color: var(--white);
  background: var(--primary);
}
.rr-btn-button4.btn-black .icon {
  color: var(--primary);
  background: var(--white);
}
.rr-btn-button4.btn-purple {
  gap: 16px;
  color: #000;
  color: #FFFFFF;
  background: #0C0C0C;
  padding: 10px 11px 10px 37px;
}
@media (max-width: 575px) {
  .rr-btn-button4.btn-purple {
    padding: 10px 8px 10px 20px;
  }
}
.rr-btn-button4.btn-purple .icon {
  width: 44px;
  height: 44px;
  background: #FFFFFF;
}
.rr-btn-button4.btn-purple .icon:hover {
  background: #EE2D7A;
}

.rr-btn-button5 {
  color: #0C0C0C;
  font-family: var(--font_Playfair);
  font-weight: 500;
  font-style: Medium;
  font-size: 16px;
  line-height: 22px;
  letter-spacing: 0px;
  text-align: center;
  vertical-align: middle;
  align-items: center;
  display: inline-flex;
  gap: 10px;
  border-radius: 36px;
  text-transform: capitalize;
  padding: 7px 10px 7px;
  border: 1px solid #B5B5B5;
  justify-content: space-between;
  background: transparent;
}
@media (max-width: 575px) {
  .rr-btn-button5 {
    padding: 7px 7px 7px 20px;
  }
}
.rr-btn-button5 .text {
  display: block;
  display: flex;
  text-align: center;
  justify-content: center;
  align-items: center;
  justify-items: center;
  margin: 0 auto;
  color: #0C0C0C;
  font-family: var(--font_Playfair);
  font-weight: 500;
  font-style: Medium;
  font-size: 16px;
  line-height: 22px;
  letter-spacing: 0px;
  text-align: center;
}
.rr-btn-button5 .icon {
  width: 28px;
  height: 28px;
  display: flex;
  font-size: 20px;
  color: #0C0C0C;
  align-items: center;
  border-radius: 500px;
  transition: all 0.3s;
  justify-content: center;
  background: #EE2D7A;
}
.rr-btn-button5:hover {
  background-color: #FFFFFF;
  color: #EE2D7A;
}
.rr-btn-button5:hover .icon {
  rotate: -45deg;
  background: #EE2D7A;
}
.rr-btn-button5:hover .icon svg path {
  fill: #0C0C0C;
}
.rr-btn-button5:hover .text {
  color: #EE2D7A;
}
.rr-btn-button5.btn-black {
  color: var(--white);
  background: var(--primary);
}
.rr-btn-button5.btn-black .icon {
  color: var(--primary);
  background: var(--white);
}
.rr-btn-button5.btn-purple {
  gap: 16px;
  color: #000;
  color: #FFFFFF;
  background: #0C0C0C;
  padding: 10px 11px 10px 37px;
}
@media (max-width: 575px) {
  .rr-btn-button5.btn-purple {
    padding: 10px 8px 10px 20px;
  }
}
.rr-btn-button5.btn-purple .icon {
  width: 44px;
  height: 44px;
  background: #FFFFFF;
}
.rr-btn-button5.btn-purple .icon:hover {
  background: #EE2D7A;
}

.rr-btn-button6 {
  gap: 15px;
  font-size: 16px;
  font-weight: 500;
  line-height: 26px;
  align-items: center;
  display: inline-flex;
  color: #000;
  border-radius: 90px;
  text-transform: uppercase;
  padding: 7px 8px 7px 24px;
  border: 1px solid #f80;
  font-family: Kanit;
  justify-content: space-between;
  background: rgba(241, 241, 241, 0);
}
.rr-btn-button6 .icon {
  width: 36px;
  height: 36px;
  display: flex;
  font-size: 20px;
  color: var(--white);
  align-items: center;
  border-radius: 500px;
  transition: all 0.3s;
  background: var(--primary-two);
  justify-content: center;
}
.rr-btn-button6:hover .icon {
  rotate: -45deg;
}
.rr-btn-button6.btn-black {
  color: var(--white);
  background: var(--primary);
}
.rr-btn-button6.btn-black .icon {
  color: var(--primary);
  background: var(--white);
}
.rr-btn-button6.btn-purple {
  gap: 30px;
  color: #000;
  background: #febc00;
  padding: 10px 11px 10px 37px;
}
.rr-btn-button6.btn-purple .icon {
  width: 44px;
  height: 44px;
  background: #000;
}

.rr-btn-button7 {
  gap: 15px;
  font-size: 16px;
  font-weight: 500;
  line-height: 26px;
  align-items: center;
  display: inline-flex;
  color: #000;
  border-radius: 90px;
  text-transform: uppercase;
  padding: 7px 8px 7px 24px;
  border: 1px solid #f80;
  font-family: var(--font_kanit);
  justify-content: space-between;
  background: var(--primary);
}
.rr-btn-button7 .icon {
  width: 36px;
  height: 36px;
  display: flex;
  font-size: 20px;
  color: var(--white);
  align-items: center;
  border-radius: 500px;
  transition: all 0.3s;
  background: var(--primary-two);
  justify-content: center;
}
.rr-btn-button7 .icon svg path {
  stroke: #000;
}
.rr-btn-button7:hover .icon {
  rotate: -45deg;
}
.rr-btn-button7.btn-dark {
  gap: 30px;
  color: var(--white);
  background: var(--primary);
  padding: 10px 11px 10px 37px;
}
.rr-btn-button7.btn-dark .icon {
  width: 44px;
  height: 44px;
  background: #febc00;
}

/* === menu scss (index 01) === */
.main-menu.menu-dark > ul > li > a {
  color: var(--black);
}
.main-menu.menu-light > ul > li > a {
  color: var(--white);
}
.main-menu > ul {
  display: flex;
}
.main-menu > ul > li:first-child > a {
  padding-left: 0;
}
.main-menu > ul > li:last-child > a {
  padding-right: 0;
}
.main-menu > ul > li:hover > a {
  color: var(--secondary);
}
.main-menu > ul > li:hover > ul {
  opacity: 1;
  pointer-events: all;
  inset-inline-start: 0;
}
.main-menu > ul > li:hover > ul.dp-menu li:hover > ul {
  opacity: 1;
  pointer-events: all;
  inset-inline-start: 100%;
}
.main-menu li {
  position: relative;
  list-style: none;
}
.main-menu li a {
  display: flex;
  align-items: center;
  font-weight: 400;
  font-size: 18px;
  line-height: 1;
  color: var(--primary);
  padding: 37px 15px;
  text-transform: capitalize;
}
.main-menu ul.dp-menu {
  background-color: #232529;
  padding: 18px 0px;
  width: 250px;
  position: absolute;
  inset-inline-start: 10px;
  opacity: 0;
  pointer-events: none;
  z-index: 10;
  transition: all 0.5s;
}
.main-menu ul.dp-menu.column-2 {
  column-count: 2;
  width: 480px;
  column-gap: 0;
}
.main-menu ul.dp-menu ul {
  background: var(--black);
  padding: 18px 0px;
  width: 300px;
  position: absolute;
  inset-inline-start: calc(100% + 10px);
  top: 0;
  opacity: 0;
  z-index: 10;
  transition: all 0.5s;
}
.main-menu ul.dp-menu li {
  position: relative;
  padding: 0 25px;
}
.main-menu ul.dp-menu li:hover > a {
  color: var(--white);
  background-color: transparent;
}
.main-menu ul.dp-menu li:hover > ul {
  opacity: 1;
  transform: none !important;
  pointer-events: all;
}
.main-menu ul.dp-menu li a {
  font-size: 16px;
  font-weight: 500;
  color: #999999;
  padding: 10px 0;
  background-color: transparent;
  border-radius: 8px;
  text-transform: capitalize;
}
.main-menu ul.dp-menu li a:hover {
  letter-spacing: 0.5px;
}
.main-menu ul.dp-menu li a:after {
  transform: rotate(-90deg);
  margin-left: auto;
}
.main-menu .has-mega-menu {
  position: static;
}
.main-menu li.menu-item-has-children > a:after {
  content: "\f107";
  display: inline-block;
  font-family: var(--font_awesome);
  position: relative;
  margin-left: 4px;
  font-weight: 400;
  top: 0;
  font-size: 0.9em;
  transition: 0.3s ease-in-out;
}
.main-menu .mega-menu {
  background-color: var(--black);
  padding: 30px 50px;
  width: 100%;
  position: absolute;
  left: 10px;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  column-gap: 50px;
  justify-content: center;
  overflow: hidden;
  opacity: 0;
  pointer-events: none;
  z-index: 10;
  transition: all 0.5s;
}
@media only screen and (max-width: 1399px) {
  .main-menu .mega-menu {
    column-gap: 30px;
  }
}
.main-menu .mega-menu li:has(ul) > a:after {
  content: "\f107";
  transform: rotate(180deg);
  -webkit-transform: rotate(180deg);
  -moz-transform: rotate(180deg);
  -ms-transform: rotate(180deg);
  -o-transform: rotate(180deg);
}
.main-menu .mega-menu li a {
  font-size: 16px;
  font-weight: 500;
  color: #999999;
  height: 40px;
  padding: 0 20px;
  display: flex;
  align-items: center;
  gap: 8px;
  background: var(--black);
  border-radius: 8px;
  overflow: hidden;
}
.main-menu .mega-menu li a:hover {
  color: var(--white);
  background: #2c2c2f;
}
.main-menu .mega-menu .title {
  font-weight: 600;
  color: var(--white);
  text-transform: uppercase;
  border-bottom: 1px solid #333337;
  padding-bottom: 20px;
  margin-bottom: 20px;
  pointer-events: none;
  border-radius: 0;
}
.main-menu .span-first-item ul li:first-child {
  grid-column: 1/-1;
  column-span: all;
}

/* === offcanvas scss (index 02) === */
.offcanvas__menu-wrapper.mean-container .mean-nav > ul {
  padding: 0;
  margin: 0;
  width: 100%;
  list-style-type: none;
  display: block !important;
}
.offcanvas__menu-wrapper.mean-container .mean-nav > ul > li:last-child > a {
  border-bottom: 1px solid var(--black-4);
}
.offcanvas__menu-wrapper.mean-container .mean-nav {
  background: none;
  margin-top: 0;
}
.offcanvas__menu-wrapper.mean-container .mean-nav .new {
  font-size: 10px;
  font-weight: 600;
  background: #ffa38e;
  color: var(--black);
  padding: 3px 7px;
  line-height: 1;
  display: flex;
  align-items: center;
  border-radius: 2px;
}
.offcanvas__menu-wrapper.mean-container .mean-nav ul li a {
  width: 100%;
  padding: 15px 0;
  padding-inline-start: 15px;
  font-weight: 400;
  font-size: 22px;
  line-height: 1;
  color: var(--white);
  text-transform: capitalize;
  border-top: 1px solid var(--black-4);
  display: flex;
  gap: 8px;
  justify-content: flex-start;
  align-items: center;
  outline: none;
  transform: translateY(var(--y)) translateZ(0);
  transition: transform 0.4s ease, box-shadow 0.4s ease;
  box-sizing: border-box;
}
@media only screen and (max-width: 767px) {
  .offcanvas__menu-wrapper.mean-container .mean-nav ul li a {
    font-size: 20px;
  }
}
.offcanvas__menu-wrapper.mean-container .mean-nav ul li a.mean-expand {
  width: 54px;
  height: 54px;
  justify-content: center;
  font-weight: 300;
  border: none !important;
}
@media only screen and (max-width: 767px) {
  .offcanvas__menu-wrapper.mean-container .mean-nav ul li a.mean-expand {
    height: 50px;
  }
}
.offcanvas__menu-wrapper.mean-container .mean-nav ul li a.mean-expand:hover {
  background: var(--secondary);
  opacity: 1;
}
.offcanvas__menu-wrapper.mean-container .mean-nav ul li li:first-child {
  border-top: 1px solid var(--black-4);
}
.offcanvas__menu-wrapper.mean-container .mean-nav ul li li a {
  font-size: 20px;
  text-transform: capitalize;
  border-top: none !important;
  padding: 12px 0;
  padding-inline-start: 30px;
}
@media only screen and (max-width: 767px) {
  .offcanvas__menu-wrapper.mean-container .mean-nav ul li li a {
    font-size: 18px;
  }
}
.offcanvas__menu-wrapper.mean-container .mean-nav ul li li a.mean-expand {
  height: 58px;
}
@media only screen and (max-width: 991px) {
  .offcanvas__menu-wrapper.mean-container .mean-nav ul li li a.mean-expand {
    height: 25px;
  }
}
@media only screen and (max-width: 767px) {
  .offcanvas__menu-wrapper.mean-container .mean-nav ul li li a.mean-expand {
    height: 22px;
  }
}
.offcanvas__menu-wrapper.mean-container .mean-nav ul li li li:last-child {
  border-bottom: 1px solid var(--black-4);
}
.offcanvas__menu-wrapper.mean-container .mean-nav ul li li li a {
  padding-left: 40px;
}
.offcanvas__menu-wrapper.mean-container .mean-bar {
  padding: 0;
  background: none;
  max-height: auto;
  overflow-y: scroll;
}
.offcanvas__menu-wrapper.mean-container .mean-bar::-webkit-scrollbar {
  width: 0;
}
.offcanvas__menu-wrapper.mean-container a.meanmenu-reveal {
  display: none !important;
}

/* === cursor css scss (index 01) === */
/*! normalize.css v7.0.0 | MIT License | github.com/necolas/normalize.css */
.cb-cursor {
  position: fixed;
  top: 0;
  left: 0;
  z-index: 150;
  contain: layout style size;
  pointer-events: none;
  will-change: transform;
  transition: opacity 0.3s, color 0.4s;
}

.cb-cursor:before {
  content: "";
  position: absolute;
  top: -24px;
  left: -24px;
  width: 48px;
  height: 48px;
  background: transparent;
  border-radius: 500px;
  transform: scale(0);
  transition: opacity 0.1s, transform 0.3s ease-in-out;
}

.cb-cursor-text {
  position: absolute;
  top: -18px;
  left: -18px;
  width: 36px;
  height: 36px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 16px;
  line-height: 20px;
  text-align: center;
  letter-spacing: -0.01em;
  opacity: 0;
  transform: scale(0) rotate(10deg);
  transition: opacity 0.4s, transform 0.3s;
  color: white;
}

/* Exclusion and Blending Modes */
@supports (mix-blend-mode: exclusion) {
  .cb-cursor.-exclusion,
  .cb-cursor.-opaque {
    mix-blend-mode: exclusion;
  }
  .cb-cursor.-exclusion:before,
  .cb-cursor.-opaque:before {
    background: white;
  }
}
.cb-cursor.-normal,
.cb-cursor.-text {
  mix-blend-mode: normal;
}

.cb-cursor.-normal:before,
.cb-cursor.-text:before {
  background: currentColor;
}

.cb-cursor.-inverse {
  color: white;
}

/* Cursor Visibility and Transformations */
.cb-cursor.-visible:before {
  transform: scale(0.2);
}

.cb-cursor.-visible.-active:before {
  transform: scale(0.23);
  transition-duration: 0.2s;
}

.cb-cursor.-pointer:before {
  transform: scale(0);
}

.cb-cursor.-text .cb-cursor-text {
  opacity: 1;
  transform: scale(1);
}

.cb-cursor.-text.-active:before {
  transform: scale(1.6);
  transition-duration: 0.2s;
}

.cb-cursor.all-element:before {
  transform: scale(1.6);
  opacity: 0.2;
  transition-duration: 0.2s;
}

.cb-cursor.-opaque:before {
  transform: scale(1.32);
}

.cb-cursor.-text:before {
  background: #000;
  opacity: 1;
  backdrop-filter: blur(10px);
  transform: scale(2);
}

.cb-cursor.-opaque.-active:before {
  transform: scale(1.2);
}

.cb-cursor.-lg:before {
  transform: scale(2);
}

.cb-cursor.-hidden:before {
  transform: scale(0);
}

/*----------------------------------------*/
/*  Context-Specific Styles  */
/*----------------------------------------*/
@supports (mix-blend-mode: exclusion) {
  .body-startup-agency .cb-cursor.-exclusion,
  .body-startup-agency .cb-cursor {
    mix-blend-mode: exclusion;
    opacity: 1;
  }
  .body-startup-agency .cb-cursor.-exclusion:before,
  .body-startup-agency .cb-cursor:before {
    background: white;
    opacity: 1;
  }
}

.cb-cursor.-small {
  mix-blend-mode: normal;
  white-space: nowrap;
}
.cb-cursor.-small::before {
  background-color: #fff;
  width: 80px;
  height: 28px;
  top: -14px;
  left: -40px;
}
.cb-cursor.-small .cb-cursor-text {
  color: black;
}

.cb-cursor.-big {
  mix-blend-mode: normal;
  white-space: nowrap;
}
.cb-cursor.-big::before {
  background-color: #fff;
  width: 80px;
  height: 80px;
  top: -40px;
  left: -40px;
  mix-blend-mode: normal;
}
.cb-cursor.-big .cb-cursor-text {
  color: black;
}

.cb-cursor.portfolio:before {
  display: none;
}

.cb-cursor-text.portfolio {
  width: 420px;
  left: -210px;
}
@media only screen and (max-width: 1919px) {
  .cb-cursor-text.portfolio {
    width: 350px;
    left: -175px;
  }
}
@media only screen and (max-width: 1399px) {
  .cb-cursor-text.portfolio {
    width: 280px;
    left: -140px;
  }
}
.cb-cursor-text.portfolio .cb-cursor-text {
  top: 0;
  left: 0;
  width: auto;
  height: auto;
  display: block;
  text-align: start;
}
.cb-cursor-text.portfolio .hover-display {
  width: 420px;
}
@media only screen and (max-width: 1919px) {
  .cb-cursor-text.portfolio .hover-display {
    width: 350px;
  }
}
@media only screen and (max-width: 1399px) {
  .cb-cursor-text.portfolio .hover-display {
    width: 280px;
  }
}
.cb-cursor-text.portfolio .hover-display .hover-thumb img {
  width: 100%;
}
.cb-cursor-text.portfolio .hover-display .hover-content {
  display: grid;
  gap: 10px 30px;
  grid-template-columns: 1fr auto;
  margin-top: 14px;
  text-align: start;
}
.cb-cursor-text.portfolio .hover-display .title {
  font-family: var(--font_bdogrotesk);
  font-weight: 400;
  font-size: 18px;
  line-height: 24px;
  letter-spacing: -0.05em;
  text-transform: uppercase;
  color: var(--white);
}
.cb-cursor-text.portfolio .hover-display .date {
  font-family: var(--font_bdogrotesk);
  font-weight: 400;
  font-size: 18px;
  line-height: 24px;
  letter-spacing: -0.05em;
  text-transform: uppercase;
  display: inline-block;
  color: var(--white);
}

.breadcumb-wrapper {
  position: relative;
  border-radius: 24px;
  z-index: 9;
}
.about-breadcumb-banner {
  
  display: flex;
  flex-direction: column;
  justify-content: center;
  background-color: #fff3f7;
  background-position: center center !important;
  background-repeat: no-repeat !important;
  background-size: cover !important;
}
.about-breadcumb-banner::before {
  background: linear-gradient(180deg, rgba(255, 248, 251, 0.72), rgba(255, 241, 246, 0.62)) !important;
}
.breadcumb-wrapper__title {
  font-family: var(--font_Playfair);
  font-weight: 700;
  font-style: Bold;
  font-size: 76px;
  line-height: 80px;
  letter-spacing: -1px;
  text-align: center;
  color: #0C0C0C;
  margin-bottom: 14px;
}
@media only screen and (max-width: 1919px) {
  .breadcumb-wrapper__title {
    font-size: 70px;
  }
}
@media only screen and (max-width: 1399px) {
  .breadcumb-wrapper__title {
    font-size: 68px;
  }
}
@media only screen and (max-width: 1199px) {
  .breadcumb-wrapper__title {
    font-size: 60px;
  }
}
@media only screen and (max-width: 991px) {
  .breadcumb-wrapper__title {
    font-size: 56px;
  }
}
@media only screen and (max-width: 767px) {
  .about-breadcumb-banner {
    min-height: 300px;
  }
  .breadcumb-wrapper__title {
    font-size: 38px;
  }
}
.breadcumb-wrapper__items {
  display: flex;
  text-align: center;
  justify-content: center;
  align-items: center;
  justify-items: center;
  margin: 0 auto;
  gap: 15px;
  padding: 2px 16px;
  width: max-content;
  border-radius: 4px;
  border: 1px solid rgba(255, 255, 255, 0.2);
  margin-bottom: 50px;
}
@media only screen and (max-width: 1199px) {
  .breadcumb-wrapper__items {
    margin-bottom: 40px;
  }
}
@media only screen and (max-width: 991px) {
  .breadcumb-wrapper__items {
    margin-bottom: 35px;
    padding: 2px 12px;
  }
}
@media only screen and (max-width: 767px) {
  .breadcumb-wrapper__items {
    gap: 10px;
    margin-bottom: 30px;
    padding: 2px 10px;
  }
}
@media (max-width: 575px) {
  .breadcumb-wrapper__items {
    gap: 8px;
    margin-bottom: 25px;
    padding: 2px 8px;
    flex-wrap: wrap;
  }
}
.breadcumb-wrapper__items-list {
  font-family: Lato;
  font-weight: 400;
  font-style: Regular;
  font-size: 16px;
  line-height: 26px;
  letter-spacing: 0px;
  text-transform: capitalize;
  color: #5B5B5B;
  list-style: none;
}
@media only screen and (max-width: 767px) {
  .breadcumb-wrapper__items-list {
    font-size: 15px;
  }
}
.breadcumb-wrapper__items-list-title {
  color: #5B5B5B;
}
.breadcumb-wrapper__items-list-title:hover {
  color: #EE2D7A;
}
.breadcumb-wrapper__items-list-title2 {
  color: #EE2D7A;
}
.breadcumb-wrapper__items-list-title2:hover {
  color: #5B5B5B;
}

.breadcumb2 {
  padding: 48px 0px 48px;
  background: #FFEFF2;
}
@media only screen and (max-width: 1199px) {
  .breadcumb2 {
    padding: 40px 0px 40px;
  }
}
@media only screen and (max-width: 991px) {
  .breadcumb2 {
    padding: 35px 0px 35px;
  }
}
@media only screen and (max-width: 767px) {
  .breadcumb2 {
    padding: 30px 0px 30px;
  }
}
@media (max-width: 575px) {
  .breadcumb2 {
    padding: 25px 0px 25px;
  }
}
.breadcumb2-wrapper__title {
  font-family: var(--font_Playfair);
  font-weight: 700;
  font-style: Bold;
  font-size: 76px;
  line-height: 80px;
  letter-spacing: -1px;
  text-align: center;
  color: #0C0C0C;
  margin-bottom: 14px;
}
@media only screen and (max-width: 1919px) {
  .breadcumb2-wrapper__title {
    font-size: 70px;
  }
}
@media only screen and (max-width: 1399px) {
  .breadcumb2-wrapper__title {
    font-size: 68px;
  }
}
@media only screen and (max-width: 1199px) {
  .breadcumb2-wrapper__title {
    font-size: 60px;
  }
}
@media only screen and (max-width: 991px) {
  .breadcumb2-wrapper__title {
    font-size: 56px;
  }
}
@media only screen and (max-width: 767px) {
  .breadcumb2-wrapper__title {
    font-size: 38px;
  }
}
.breadcumb2-wrapper__items {
  display: flex;
  text-align: left;
  gap: 15px;
  padding: 2px 16px;
  width: max-content;
  border-radius: 4px;
  border: 1px solid rgba(255, 255, 255, 0.2);
}
@media only screen and (max-width: 767px) {
  .breadcumb2-wrapper__items {
    gap: 10px;
  }
}
.breadcumb2-wrapper__items-list {
  font-family: Lato;
  font-weight: 400;
  font-style: Regular;
  font-size: 16px;
  line-height: 26px;
  letter-spacing: 0px;
  text-transform: capitalize;
  color: #5B5B5B;
  list-style: none;
}
@media only screen and (max-width: 767px) {
  .breadcumb2-wrapper__items-list {
    font-size: 15px;
  }
}
.breadcumb2-wrapper__items-list-title {
  color: #5B5B5B;
}
.breadcumb2-wrapper__items-list-title:hover {
  color: #EE2D7A;
}
.breadcumb2-wrapper__items-list-title2 {
  color: #EE2D7A;
}
.breadcumb2-wrapper__items-list-title2:hover {
  color: #5B5B5B;
}

.product-card__inner {
  background: var(--white);
  border-radius: 20px;
  box-shadow: 0 6px 18px rgba(16, 24, 40, 0.06);
  position: relative;
  padding: 20px;
  transition: all 0.3s ease;
  border: 1px solid var(--border-color2);
}
.product-card__inner:hover {
  transform: translateY(-5px);
  box-shadow: 0 10px 25px rgba(16, 24, 40, 0.1);
}
.product-card__badge {
  position: absolute;
  top: 12px;
  left: 12px;
  font-size: 0.85rem;
  padding: 4px 10px;
  border-radius: 10px;
  color: var(--white);
  font-family: var(--font_instr);
  font-size: 14px;
  font-style: normal;
  font-weight: 600;
  line-height: normal;
}
.product-card__image {
  background: #f1f2f3;
  border-radius: 16px;
  padding: 30px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 20px;
  height: 310px;
}
.product-card__image img {
  max-width: 100%;
  width: 221px;
  height: 249px;
  object-fit: cover;
  transition: transform 0.3s ease;
}
.product-card__image:hover img {
  transform: scale(1.05);
}
.product-card__rating {
  font-size: 0.9rem;
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 6px;
  margin-bottom: 16px;
}
.product-card__rating .product-card__stars {
  font-size: 0.9rem;
}
.product-card__rating .product-card__review {
  font-size: 0.85rem;
}
.product-card__title {
  color: var(--primary);
  text-align: center;
  font-family: var(--font_instr);
  font-size: 18px;
  font-style: normal;
  font-weight: 400;
  line-height: normal;
  margin-bottom: 16px;
}
.product-card__price {
  color: var(--primary);
  color: #000;
  text-align: center;
  font-family: var(--font_instr);
  font-size: 20px;
  font-style: normal;
  font-weight: 400;
  line-height: normal;
  margin-bottom: 30px;
}
.product-card__btn {
  border: 1px solid var(--black);
  background: transparent;
  color: var(--primary);
  font-weight: 600;
  padding: 10px 20px;
  border-radius: 12px;
  transition: all 0.3s ease;
  width: 100%;
}
.product-card__btn:hover {
  color: var(--white);
}

/* === Responsive === */
@media only screen and (max-width: 991px) {
  .product-card__inner {
    padding: 15px;
  }
  .product-card__image {
    padding: 20px;
  }
}
@media only screen and (max-width: 767px) {
  .product-card__inner {
    border-radius: 16px;
  }
  .product-card__title {
    font-size: 0.95rem;
  }
  .product-card__price {
    font-size: 1rem;
  }
  .product-card__btn {
    font-size: 0.9rem;
    padding: 8px 16px;
  }
}
.header-inner {
  position: relative;
}

/* === header-top (for header-layoutthree) === */
.header-top {
  position: relative;
  z-index: 9;
  padding: 0.625rem 0;
  background: #0E0E0C;
}
.header-top__left a {
  color: rgba(255, 255, 255, 0.7);
  font-family: var(--font_Lato);
  font-weight: 400;
  font-size: 0.875rem;
  line-height: 1;
  text-decoration: none;
  transition: all 0.3s;
}
.header-top__left a:hover {
  color: #FFFFFF;
}
.header-top__left .separator {
  color: rgba(255, 255, 255, 0.4);
  padding: 0 0.75rem;
  font-size: 0.875rem;
}
.header-top__center p {
  color: #FFFFFF;
  font-family: var(--font_Lato);
  font-weight: 500;
  font-size: 0.875rem;
  line-height: 1;
  margin: 0;
}
.header-top__right {
  display: flex;
  gap: 0.625rem;
  align-items: center;
  justify-content: flex-end;
}
.header-top__right a {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 2rem;
  height: 2rem;
  border-radius: 0.25rem;
  background: rgba(255, 255, 255, 0.1);
  color: #FFFFFF;
  transition: all 0.3s ease-in-out;
  font-size: 0.875rem;
}
.header-top__right a.twitter {
  background: #EE2D7A;
  color: #0E0E0C;
}
.header-top__right a:hover {
  background: #EE2D7A;
  color: #0E0E0C;
}
@media (max-width: 575px) {
  .header-top__right a {
    width: 1.75rem;
    height: 1.75rem;
  }
}

.action-btn {
  color: #0E0E0C;
}

.header__navicon {
  display: flex;
  align-items: center;
}
.header__navicon .side-toggle .bar-icon {
  width: 2.5rem;
  height: 2.5rem;
  background: #EE2D7A;
  border-radius: 50%;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 0.25rem;
  padding: 0;
  cursor: pointer;
  transition: all 0.3s;
  text-decoration: none;
}
@media (max-width: 575px) {
  .header__navicon .side-toggle .bar-icon {
    width: 2.25rem;
    height: 2.25rem;
  }
}
.header__navicon .side-toggle .bar-icon span {
  width: 1.125rem;
  height: 0.125rem;
  background: #FFFFFF;
  display: block;
  transition: all 0.3s;
}
@media (max-width: 575px) {
  .header__navicon .side-toggle .bar-icon span {
    width: 1rem;
  }
}
.header__navicon .side-toggle .bar-icon:hover {
  background: #0E0E0C;
}
.header__navicon .side-toggle .bar-icon:hover span {
  background: #FFFFFF;
}

.header-area.header-layoutone {
  background: #F7F4F1;
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  z-index: 99;
  border-bottom: none;
}
.header-area.header-layoutone.header-sticky {
  position: sticky;
}
.header-area.header-layoutone .header-main {
  padding: 1.125rem 0;
  border: none;
  background: transparent;
}
.header-area.header-layoutone .container {
  max-width: 1450px;
}
@media only screen and (max-width: 991px) {
  .header-area.header-layoutone .header-main {
    padding: 0.875rem 0;
  }
}
@media (max-width: 575px) {
  .header-area.header-layoutone .header-main {
    padding: 0.75rem 0;
  }
}
.header-area.header-layoutone .header-shell {
  background: #FFFFFF;
  border: 1px solid rgba(14, 14, 12, 0.05);
  border-radius: 18px;
  padding: 0.95rem 1.6rem;
  box-shadow: 0 10px 30px rgba(37, 31, 26, 0.08);
}
@media only screen and (max-width: 991px) {
  .header-area.header-layoutone .header-shell {
    padding: 0.875rem 1rem;
    border-radius: 16px;
  }
}
@media (max-width: 575px) {
  .header-area.header-layoutone .header-shell {
    padding: 0.75rem 0.875rem;
    border-radius: 14px;
  }
}
.header-area.header-layoutone .header__logo img {
  max-width: 9.8rem;
}
@media only screen and (max-width: 991px) {
  .header-area.header-layoutone .header__logo img {
    max-width: 9rem;
  }
}
@media (max-width: 575px) {
  .header-area.header-layoutone .header__logo img {
    max-width: 7.75rem;
  }
}
.header-area.header-layoutone .main-menu > ul {
  display: flex;
  align-items: center;
  gap: 1.65rem;
  margin: 0;
  padding: 0;
  list-style: none;
}
@media (max-width: 1399.98px) {
  .header-area.header-layoutone .main-menu > ul {
    gap: 1.5rem;
  }
}
.header-area.header-layoutone .main-menu > ul > li {
  position: relative;
}
.header-area.header-layoutone .main-menu > ul > li > a {
  font-family: var(--font_Lato);
  color: #666666;
  text-transform: capitalize;
  padding: 0.45rem 0;
  display: block;
  transition: all 0.3s;
  text-decoration: none;
  font-weight: 500;
  font-size: 14px;
  line-height: 1.3;
  letter-spacing: 0px;
}
.header-area.header-layoutone .main-menu > ul > li > a:hover {
  color: #EE2D7A;
}
.header-area.header-layoutone .header-right {
  display: flex;
  align-items: center;
  gap: 0.9rem;
}
@media only screen and (max-width: 991px) {
  .header-area.header-layoutone .header-right {
    gap: 0.75rem;
  }
}
.header-area.header-layoutone .header-right .header-lang .form-select {
  font-size: 0.875rem;
  font-family: var(--font_Lato);
  font-weight: 600;
  color: #0E0E0C;
  padding-right: 1.5625rem;
  cursor: pointer;
}
.header-area.header-layoutone .header-right .header-lang {
  position: relative;
  align-items: center;
}
.header-area.header-layoutone .header-right .header-lang-switcher {
  position: relative;
  min-width: auto;
}
.header-area.header-layoutone .header-right .header-lang-switcher__trigger {
  width: 100%;
  min-height: auto;
  padding: 0;
  border: none;
  border-radius: 0;
  background: transparent;
  color: #1C1C1C;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 6px;
  font-size: 13px;
  font-weight: 600;
  line-height: 1;
  cursor: pointer;
  box-shadow: none;
  transition: color 0.25s ease;
}
.header-area.header-layoutone .header-right .header-lang-switcher__trigger:hover {
  color: #EE2D7A;
}
.header-area.header-layoutone .header-right .header-lang-switcher__trigger:focus {
  outline: none;
  box-shadow: none;
}
.header-area.header-layoutone .header-right .header-lang-switcher__current,
.header-area.header-layoutone .header-right .header-lang-switcher__option {
  display: flex;
  align-items: center;
  gap: 6px;
}
.header-area.header-layoutone .header-right .header-lang-switcher__current {
  gap: 6px;
}
.header-area.header-layoutone .header-right .header-lang-switcher__flag {
  width: 16px;
  height: 11px;
  border-radius: 2px;
  display: inline-block;
  flex: 0 0 16px;
  box-shadow: inset 0 0 0 1px rgba(0, 0, 0, 0.08), 0 1px 2px rgba(15, 23, 42, 0.16);
  background-repeat: no-repeat;
  background-position: center;
  background-size: cover;
}
.header-area.header-layoutone .header-right .header-lang-switcher__flag.flag-en {
  background-color: #012169;
  background-image:
    linear-gradient(33deg, transparent 43%, #FFFFFF 43%, #FFFFFF 57%, transparent 57%),
    linear-gradient(-33deg, transparent 43%, #FFFFFF 43%, #FFFFFF 57%, transparent 57%),
    linear-gradient(33deg, transparent 47%, #C8102E 47%, #C8102E 53%, transparent 53%),
    linear-gradient(-33deg, transparent 47%, #C8102E 47%, #C8102E 53%, transparent 53%),
    linear-gradient(to right, transparent 39%, #FFFFFF 39%, #FFFFFF 61%, transparent 61%),
    linear-gradient(to bottom, transparent 39%, #FFFFFF 39%, #FFFFFF 61%, transparent 61%),
    linear-gradient(to right, transparent 45%, #C8102E 45%, #C8102E 55%, transparent 55%),
    linear-gradient(to bottom, transparent 45%, #C8102E 45%, #C8102E 55%, transparent 55%);
}
.header-area.header-layoutone .header-right .header-lang-switcher__flag.flag-ar {
  background-color: #006C35;
  background-image: linear-gradient(to bottom, transparent 65%, rgba(255, 255, 255, 0.92) 65%, rgba(255, 255, 255, 0.92) 72%, transparent 72%);
}
.header-area.header-layoutone .header-right .header-lang-switcher__flag.flag-fr {
  background-image: linear-gradient(to right, #0055A4 0 33.33%, #FFFFFF 33.33% 66.66%, #EF4135 66.66% 100%);
}
.header-area.header-layoutone .header-right .header-lang-switcher__flag.flag-es {
  background-image: linear-gradient(to bottom, #AA151B 0 25%, #F1BF00 25% 75%, #AA151B 75% 100%);
}
.header-area.header-layoutone .header-right .header-lang-switcher__trigger .fa-chevron-down {
  font-size: 0.65rem;
  color: currentColor;
  transition: transform 0.3s ease;
}
.header-area.header-layoutone .header-right .header-lang-switcher.is-open .header-lang-switcher__trigger .fa-chevron-down {
  transform: rotate(180deg);
}
.header-area.header-layoutone .header-right .header-lang-switcher__menu {
  position: absolute;
  top: calc(100% + 12px);
  right: 0;
  left: auto;
  min-width: 128px;
  background: #FFFFFF;
  border: 1px solid rgba(14, 14, 12, 0.08);
  border-radius: 14px;
  padding: 8px;
  box-shadow: 0 18px 32px rgba(37, 31, 26, 0.12);
  opacity: 0;
  visibility: hidden;
  transform: translateY(8px);
  transition: opacity 0.25s ease, visibility 0.25s ease, transform 0.25s ease;
  z-index: 130;
}
.header-area.header-layoutone .header-right .header-lang-switcher.is-open .header-lang-switcher__menu {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}
.header-area.header-layoutone .header-right .header-lang-switcher__option {
  width: 100%;
  padding: 10px 12px;
  border: none;
  border-bottom: none;
  border-radius: 10px;
  background: #FFFFFF;
  color: #404040;
  font-size: 0.875rem;
  font-weight: 600;
  text-align: left;
  cursor: pointer;
  transition: background-color 0.25s ease, color 0.25s ease, transform 0.25s ease;
}
.header-area.header-layoutone .header-right .header-lang-switcher__option:hover,
.header-area.header-layoutone .header-right .header-lang-switcher__option.is-active {
  background: #FFF2F7;
  color: #EE2D7A;
}
.header-area.header-layoutone .header-right .header-lang-switcher__option:hover {
  transform: translateX(2px);
}
.header-area.header-layoutone .header-right .header-lang-google-translate {
  position: absolute;
  width: 1px;
  height: 1px;
  overflow: hidden;
  opacity: 0;
  pointer-events: none;
}
.header-area.header-layoutone .header-right .header-lang-google-translate,
.header-area.header-layoutone .header-right .header-lang-google-translate * {
  font-size: 0 !important;
}
.header-area.header-layoutone .header-right .header-lang-google-translate .goog-te-gadget {
  color: transparent !important;
  line-height: 0 !important;
}
.header-area.header-layoutone .header-right .header-lang-google-translate .goog-te-combo {
  position: absolute !important;
  inset: auto !important;
  width: 1px !important;
  height: 1px !important;
  margin: 0 !important;
  padding: 0 !important;
  border: 0 !important;
  opacity: 0 !important;
  pointer-events: none !important;
}
.header-area.header-layoutone .header-right .header-lang-google-translate .goog-logo-link,
.header-area.header-layoutone .header-right .header-lang-google-translate .goog-te-gadget span,
.header-area.header-layoutone .header-right .header-lang-google-translate .goog-te-gadget img,
.goog-te-banner-frame.skiptranslate,
.goog-te-balloon-frame,
#goog-gt-tt,
.goog-tooltip,
.goog-tooltip:hover {
  display: none !important;
}
body {
  top: 0 !important;
}
@media only screen and (max-width: 1399px) {
  .header-area.header-layoutone .header-right .header-lang-switcher {
    min-width: auto;
  }
  .header-area.header-layoutone .header-right .header-lang-switcher__trigger {
    font-size: 12px;
  }
  .header-area.header-layoutone .header-right .header-lang-switcher__option {
    font-size: 0.875rem;
  }
}
.header-area.header-layoutone .header-get-touch-btn {
  white-space: nowrap;
  align-items: center;
  justify-content: center;
  min-height: 40px;
  padding: 11px 20px;
  border-radius: 8px;
  font-size: 14px;
  font-weight: 700;
  line-height: 1.1;
}
.header-area.header-layoutone .header-meta-link {
  color: #EE2D7A;
  font-family: var(--font_Lato);
  font-size: 12px;
  font-weight: 600;
  line-height: 1;
  text-decoration: none;
  white-space: nowrap;
  transition: color 0.25s ease;
}
.header-area.header-layoutone .header-meta-link:hover {
  color: #C71E63;
}
@media (min-width: 1200px) and (max-width: 1399.98px) {
  .header-area.header-layoutone .main-menu > ul {
    gap: 1rem;
  }
  .header-area.header-layoutone .main-menu > ul > li > a {
    font-size: 13px;
    line-height: 17px;
  }
  .header-area.header-layoutone .header-right {
    gap: 0.7rem;
  }
  .header-area.header-layoutone .header-right .header-lang-switcher {
    min-width: auto;
  }
  .header-area.header-layoutone .header-right .header-lang-switcher__trigger {
    gap: 5px;
    font-size: 12px;
  }
}
@media (min-width: 1200px) and (max-width: 1279.98px) {
  .header-area.header-layoutone .main-menu > ul {
    gap: 0.8rem;
  }
  .header-area.header-layoutone .main-menu > ul > li > a {
    font-size: 12px;
    line-height: 17px;
  }
  .header-area.header-layoutone .header-right {
    gap: 0.55rem;
  }
  .header-area.header-layoutone .header-meta-link {
    display: none !important;
  }
}
.header-area.header-layoutone .header-right .header-lang .form-select:focus {
  box-shadow: none;
  outline: none;
}
.header-area.header-layoutone .header-right .header__search {
  position: relative;
  z-index: 10;
}
.header-area.header-layoutone .header-right .header__search .search-open-btn {
  width: 1.2rem;
  height: 1.2rem;
  background: transparent;
  border: none;
  padding: 0;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.3s;
}
.header-area.header-layoutone .header-right .header__search .search-open-btn svg {
  width: 1rem;
  height: 1rem;
  transition: all 0.3s;
}
.header-area.header-layoutone .header-right .header__search .search-open-btn svg path {
  fill: #0E0E0C;
  transition: all 0.3s;
}
.header-area.header-layoutone .header-right .header__search .search-open-btn:hover svg path {
  fill: #EE2D7A;
}
.header-area.header-layoutone .header-right .action-btn {
  width: 1.1rem;
  height: 1.1rem;
  background: transparent;
  border: none;
  padding: 0;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #0C0C0C;
  font-size: 1rem;
  transition: all 0.3s;
  text-decoration: none;
}
@media only screen and (max-width: 991px) {
  .header-area.header-layoutone .header-right .action-btn {
    font-size: 1rem;
  }
}
.header-area.header-layoutone .header-right .action-btn:hover {
  color: #EE2D7A;
}
.header-area.header-layoutone .header-right .cart-count,
.header-area.header-layoutone .header-right .wishlist-count {
  font-size: 9px !important;
  padding: 3px 5px !important;
}
.header-area.header-layoutone .header-right .action-btn i {
  line-height: 1;
}
.header-area.header-layoutone .header-right .header__navicon {
  margin-left: auto;
}

.header-area.header-layoutone .main-menu > ul > li.menu-item-has-children > a,
.header-layoutthree .main-menu > ul > li.menu-item-has-children > a {
  position: relative;
}
.header-area.header-layoutone .main-menu > ul > li .dp-menu,
.header-layoutthree .main-menu > ul > li .dp-menu {
  position: absolute;
  top: 100%;
  left: 0;
  min-width: 220px;
  padding: 12px 0;
  background: #FFFFFF;
  box-shadow: 0 10px 40px rgba(0, 0, 0, 0.08);
  border-radius: 8px;
  list-style: none;
  opacity: 0;
  visibility: hidden;
  transform: translateY(10px);
  transition: all 0.3s ease;
  z-index: 100;
}
.header-area.header-layoutone .main-menu > ul > li .dp-menu li,
.header-layoutthree .main-menu > ul > li .dp-menu li {
  padding: 0;
}
.header-area.header-layoutone .main-menu > ul > li .dp-menu li a,
.header-layoutthree .main-menu > ul > li .dp-menu li a {
  display: block;
  padding: 8px 24px;
  font-size: 14px;
  font-weight: 400;
  color: #0E0E0C;
  text-decoration: none;
  transition: all 0.3s;
  text-transform: capitalize;
}
.header-area.header-layoutone .main-menu > ul > li .dp-menu li a:hover,
.header-layoutthree .main-menu > ul > li .dp-menu li a:hover {
  color: #EE2D7A;
  padding-left: 28px;
}
.header-area.header-layoutone .main-menu > ul > li:hover > .dp-menu,
.header-layoutthree .main-menu > ul > li:hover > .dp-menu {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}
.header-area.header-layoutone.header-right-nav .main-menu > ul > li .dp-menu,
.header-layoutthree.header-right-nav .main-menu > ul > li .dp-menu {
  left: auto;
  right: 0;
}

.header-layoutthree {
  background: transparent;
  position: relative;
  z-index: 99;
  border-bottom: 1px solid rgba(183, 190, 200, 0.24);
}
@media only screen and (max-width: 1199px) {
  .header-layoutthree {
    padding: 0.625rem 0;
  }
}
@media (max-width: 575px) {
  .header-layoutthree {
    padding: 0.875rem 0;
  }
  .header-layoutthree .header-right {
    padding-inline: 0.5rem;
  }
}
.header-layoutthree .header-main {
  border: none;
  background: transparent;
}
.header-layoutthree .main-menu > ul {
  display: flex;
  align-items: center;
  gap: 0.9375rem;
}
@media (max-width: 1399.98px) {
  .header-layoutthree .main-menu > ul {
    gap: 0.5rem;
  }
}
.header-layoutthree .main-menu > ul > li > a {
  font-family: var(--font_Playfair);
  font-weight: 500;
  font-size: 16px;
  line-height: 22px;
  letter-spacing: 0px;
  color: #0E0E0C;
  text-transform: uppercase;
  padding: 1.875rem 0;
}
@media only screen and (max-width: 1199px) {
  .header-layoutthree .main-menu > ul > li > a {
    padding: 1rem 0;
  }
}
.header-layoutthree .main-menu > ul > li > a i {
  font-size: 0.625rem;
  margin-left: 0.25rem;
}
.header-layoutthree .main-menu > ul > li > a:hover {
  color: #EE2D7A;
}
.header-layoutthree__right .header-actions {
  display: flex;
  align-items: center;
}
.header-layoutthree__right .action-btn {
  width: 2.625rem;
  height: 2.625rem;
  border-radius: 50%;
  background: #FFFFFF;
  color: #0C0C0C;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1rem;
  transition: all 0.3s;
  border: none;
  cursor: pointer;
  padding: 0;
  position: relative;
  z-index: 1;
}
@media only screen and (max-width: 1399px) {
  .header-layoutthree__right .action-btn {
    width: 1.75rem;
    height: 1.75rem;
    font-size: 0.875rem;
    background: transparent;
  }
}
@media only screen and (max-width: 1199px) {
  .header-layoutthree__right .action-btn {
    width: 2.375rem;
    height: 2.375rem;
    font-size: 0.875rem;
  }
}
@media (max-width: 575px) {
  .header-layoutthree__right .action-btn {
    width: 2.125rem;
    height: 2.125rem;
    font-size: 0.8125rem;
  }
}
.header-layoutthree__right .action-btn:hover {
  background: #EE2D7A;
  transform: translateY(-2px);
}
.header-layoutthree__right .action-btn i {
  line-height: 1;
}
.header-layoutthree__right .bar-icon {
  background: #0E0E0C;
  color: #FFFFFF;
}
.header-layoutthree__right .bar-icon span {
  background: #FFFFFF;
}
.header-layoutthree__right .bar-icon:hover {
  background: #EE2D7A;
  color: #FFFFFF;
}
.header-layoutthree__right .form-select {
  font-size: 0.9375rem;
  font-family: var(--font_Lato);
  color: #0E0E0C;
  padding-right: 1.5625rem;
}
.header-layoutthree .header__logo img {
  max-width: 8.75rem;
}
@media only screen and (max-width: 991px) {
  .header-layoutthree .header__logo img {
    max-width: 7.5rem;
  }
}
@media (max-width: 575px) {
  .header-layoutthree .header__logo img {
    max-width: 5.625rem;
  }
}

.header-area.sticky {
  position: fixed !important;
  top: 0;
  left: 0;
  right: 0;
  background: #FFFFFF;
  box-shadow: 0 2px 20px rgba(0, 0, 0, 0.06);
  animation: slideDown 0.3s ease-out;
  z-index: 999;
}
.header-area.transformed {
  transform: translateY(-100%);
  transition: transform 0.3s ease;
}

@keyframes slideDown {
  from {
    transform: translateY(-100%);
  }
  to {
    transform: translateY(0);
  }
}
@media only screen and (max-width: 1199px) {
  .header-area .header__nav {
    display: none !important;
  }
}
.header__search {
  position: relative;
  z-index: 10;
}
.header__search .search-open-btn {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  background: transparent;
  border: 0;
  padding: 0.5rem 0.8rem;
  cursor: pointer;
  font-weight: 600;
  letter-spacing: 0.02em;
}
.header__search .search-panel {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  pointer-events: none;
  z-index: 9999;
  opacity: 0;
  visibility: hidden;
  transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
}
.header__search .search-panel .search-backdrop {
  position: absolute;
  inset: 0;
  background: rgba(15, 10, 28, 0.85);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  opacity: 0;
  transition: opacity 0.4s ease;
}
.header__search .search-panel .search-inner {
  position: relative;
  z-index: 2;
  width: min(720px, 90vw);
  background: #FFFFFF;
  border-radius: 20px;
  padding: 12px;
  box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.5);
  transform: translateY(20px) scale(0.95);
  opacity: 0;
  transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
  pointer-events: auto;
  display: flex;
  align-items: center;
}
.header__search .search-panel .search-close {
  position: absolute;
  top: -60px;
  right: 0;
  background: #EE2D7A;
  border: 0;
  font-size: 20px;
  cursor: pointer;
  width: 44px;
  height: 44px;
  color: #0E0E0C;
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.3s;
}
.header__search .search-panel .search-close:hover {
  background: #FFFFFF;
  transform: rotate(90deg);
}
@media only screen and (max-width: 767px) {
  .header__search .search-panel .search-close {
    top: -50px;
    width: 38px;
    height: 38px;
  }
}
.header__search .search-panel .search-form {
  width: 100%;
  display: flex;
  align-items: center;
  gap: 10px;
  margin: 0;
}
.header__search .search-panel .search-input {
  flex: 1;
  font-size: 18px;
  padding: 15px 20px;
  border: none;
  background: transparent;
  outline: none;
  font-family: var(--font_Lato);
  color: #0E0E0C;
}
.header__search .search-panel .search-input::placeholder {
  color: rgba(7, 7, 19, 0.4);
}
@media only screen and (max-width: 767px) {
  .header__search .search-panel .search-input {
    font-size: 16px;
    padding: 12px 15px;
  }
}
.header__search .search-panel .search-submit {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 54px;
  height: 54px;
  border-radius: 14px;
  border: 0;
  background: #EE2D7A;
  color: #0E0E0C;
  cursor: pointer;
  font-size: 18px;
  transition: all 0.3s;
}
.header__search .search-panel .search-submit:hover {
  background: #0E0E0C;
  color: #FFFFFF;
}
@media only screen and (max-width: 767px) {
  .header__search .search-panel .search-submit {
    width: 44px;
    height: 44px;
    font-size: 16px;
  }
}
.header__search .search-panel.open {
  pointer-events: auto;
  opacity: 1;
  visibility: visible;
}
.header__search .search-panel.open .search-backdrop {
  opacity: 1;
}
.header__search .search-panel.open .search-inner {
  transform: translateY(0) scale(1);
  opacity: 1;
}

/* Responsive: on small screens make search full width */
@media (max-width: 575px) {
  .header__search .search-inner {
    width: calc(100% - 20px);
    border-radius: 6px;
    padding: 12px;
  }
}
.offcanvas-overlay {
  position: fixed;
  inset: 0;
  z-index: 1050;
  background: rgba(7, 7, 19, 0.6);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.35s ease, visibility 0.35s ease;
}

.offcanvas-overlay.overlay-open {
  opacity: 1;
  visibility: visible;
}

.side-info {
  position: fixed;
  top: 0;
  right: 0;
  height: 100%;
  overflow-y: auto;
  background: #FFFFFF;
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  padding: 40px 32px;
  width: min(420px, 90vw);
  max-width: 420px;
  box-shadow: -20px 0 60px rgba(0, 0, 0, 0.1), 0 0 0 1px rgba(0, 0, 0, 0.05) inset;
  border-left: 1px solid rgba(0, 0, 0, 0.08);
  transform: translateX(100%);
  transition: transform 0.6s cubic-bezier(0.16, 1, 0.3, 1), opacity 0.5s ease;
  z-index: 1100;
}
@media (max-width: 575px) {
  .side-info {
    width: min(340px, 94vw);
    padding: 32px 24px;
  }
}
.side-info.info-open {
  transform: translateX(0);
}

.side-info-close {
  width: 44px;
  height: 44px;
  border-radius: 12px;
  background: rgba(0, 0, 0, 0.05);
  border: 1px solid rgba(0, 0, 0, 0.1);
  color: rgba(0, 0, 0, 0.8);
  font-size: 18px;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: background 0.25s ease, color 0.25s ease, transform 0.25s ease;
}
.side-info-close:hover {
  background: rgba(0, 0, 0, 0.1);
  color: #0C0C0C;
  transform: scale(1.05);
}

.side-info .offset-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 32px;
  padding-bottom: 24px;
  border-bottom: 1px solid rgba(0, 0, 0, 0.08);
}

.side-info .offset-logo {
  width: 140px;
}
@media (max-width: 575px) {
  .side-info .offset-logo {
    width: 120px;
  }
}
.side-info .offset-logo img {
  width: 100%;
  height: auto;
  opacity: 0.95;
}

.side-info .mobile-menu {
  margin-top: 0;
  margin-bottom: 28px;
}

.side-info .mobile-menu .mobile-nav {
  list-style: none;
  padding: 0;
  margin: 0;
  width: 100%;
}
.side-info .mobile-menu .mobile-nav > li {
  border-bottom: none;
  margin-bottom: 4px;
}
.side-info .mobile-menu .mobile-nav > li > a {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 14px 16px;
  color: rgba(0, 0, 0, 0.8);
  font-family: var(--font_Playfair);
  font-weight: 600;
  font-size: 16px;
  letter-spacing: 0.02em;
  text-decoration: none;
  border-radius: 12px;
  transition: background 0.25s ease, color 0.25s ease;
}
.side-info .mobile-menu .mobile-nav > li > a:hover {
  background: rgba(0, 0, 0, 0.04);
  color: #0C0C0C;
}
.side-info .mobile-menu .mobile-nav .menu-item-has-children > a {
  padding-right: 44px;
  position: relative;
}
.side-info .mobile-menu .mobile-nav .menu-item-has-children > a::after {
  content: "+";
  position: absolute;
  right: 14px;
  top: 50%;
  transform: translateY(-50%) rotate(0deg);
  width: 24px;
  height: 24px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 18px;
  font-weight: 400;
  color: rgba(0, 0, 0, 0.5);
  border: 1px solid rgba(0, 0, 0, 0.15);
  border-radius: 6px;
  transition: transform 0.3s cubic-bezier(0.34, 1.56, 0.64, 1), color 0.25s ease, border-color 0.25s ease, background 0.25s ease;
}
.side-info .mobile-menu .mobile-nav .menu-item-has-children > a:hover::after {
  color: rgba(0, 0, 0, 0.8);
  border-color: rgba(0, 0, 0, 0.25);
}
.side-info .mobile-menu .mobile-nav .menu-item-has-children.open > a::after {
  content: "−";
  transform: translateY(-50%) rotate(0deg);
  color: #EE2D7A;
  border-color: rgba(0, 0, 0, 0.1);
  background: rgba(0, 0, 0, 0.04);
}
.side-info .mobile-menu .mobile-nav .menu-item-has-children .dp-menu,
.side-info .mobile-menu .mobile-nav .menu-item-has-children ul {
  display: block;
  max-height: 0;
  opacity: 0;
  overflow: hidden;
  padding: 0 0 0 8px;
  margin: 0 0 0 0;
  list-style: none;
  border-left: 2px solid rgba(0, 0, 0, 0.1);
  border-radius: 0 8px 8px 0;
  background: rgba(0, 0, 0, 0.02);
  transform: translateY(-6px);
  transition: max-height 0.4s cubic-bezier(0.34, 1.56, 0.64, 1), opacity 0.3s ease 0.05s, transform 0.35s cubic-bezier(0.34, 1.56, 0.64, 1) 0.02s;
}
.side-info .mobile-menu .mobile-nav .menu-item-has-children .dp-menu li,
.side-info .mobile-menu .mobile-nav .menu-item-has-children ul li {
  opacity: 0;
  transform: translateY(-8px);
  transition: opacity 0.25s ease, transform 0.3s cubic-bezier(0.34, 1.56, 0.64, 1);
}
.side-info .mobile-menu .mobile-nav .menu-item-has-children .dp-menu li a,
.side-info .mobile-menu .mobile-nav .menu-item-has-children ul li a {
  display: block;
  padding: 10px 14px;
  color: rgba(0, 0, 0, 0.7);
  font-size: 14px;
  font-weight: 500;
  border-radius: 8px;
  transition: color 0.2s ease, background 0.2s ease;
}
.side-info .mobile-menu .mobile-nav .menu-item-has-children .dp-menu li a:hover,
.side-info .mobile-menu .mobile-nav .menu-item-has-children ul li a:hover {
  color: #EE2D7A;
  background: rgba(0, 0, 0, 0.04);
}
.side-info .mobile-menu .mobile-nav .menu-item-has-children.open > .dp-menu,
.side-info .mobile-menu .mobile-nav .menu-item-has-children.open > ul {
  max-height: 320px;
  opacity: 1;
  transform: translateY(0);
  padding: 8px 0 8px 8px;
  margin: 8px 0 0 0;
  transition-delay: 0s;
}
.side-info .mobile-menu .mobile-nav .menu-item-has-children.open > .dp-menu li,
.side-info .mobile-menu .mobile-nav .menu-item-has-children.open > ul li {
  opacity: 1;
  transform: translateY(0);
}
.side-info .mobile-menu .mobile-nav .menu-item-has-children.open > .dp-menu li:nth-child(1),
.side-info .mobile-menu .mobile-nav .menu-item-has-children.open > ul li:nth-child(1) {
  transition-delay: 0.06s;
}
.side-info .mobile-menu .mobile-nav .menu-item-has-children.open > .dp-menu li:nth-child(2),
.side-info .mobile-menu .mobile-nav .menu-item-has-children.open > ul li:nth-child(2) {
  transition-delay: 0.12s;
}
.side-info .mobile-menu .mobile-nav .menu-item-has-children.open > .dp-menu li:nth-child(3),
.side-info .mobile-menu .mobile-nav .menu-item-has-children.open > ul li:nth-child(3) {
  transition-delay: 0.18s;
}
.side-info .mobile-menu .mobile-nav .menu-item-has-children.open > .dp-menu li:nth-child(4),
.side-info .mobile-menu .mobile-nav .menu-item-has-children.open > ul li:nth-child(4) {
  transition-delay: 0.24s;
}
.side-info .mobile-menu .mobile-nav .menu-item-has-children.open > .dp-menu li:nth-child(5),
.side-info .mobile-menu .mobile-nav .menu-item-has-children.open > ul li:nth-child(5) {
  transition-delay: 0.3s;
}
.side-info .mobile-menu .mobile-nav .menu-item-has-children.open > .dp-menu li:nth-child(6),
.side-info .mobile-menu .mobile-nav .menu-item-has-children.open > ul li:nth-child(6) {
  transition-delay: 0.36s;
}
.side-info .mobile-menu .mobile-nav .menu-item-has-children.open > .dp-menu li:nth-child(7),
.side-info .mobile-menu .mobile-nav .menu-item-has-children.open > ul li:nth-child(7) {
  transition-delay: 0.42s;
}
.side-info .mobile-menu .mobile-nav .menu-item-has-children.open > .dp-menu li:nth-child(8),
.side-info .mobile-menu .mobile-nav .menu-item-has-children.open > ul li:nth-child(8) {
  transition-delay: 0.48s;
}
.side-info .mobile-menu .mobile-nav .menu-item-has-children.open > a {
  color: #EE2D7A;
  background: rgba(0, 0, 0, 0.04);
}

.side-info .offset-widget-box {
  margin-top: 8px;
  padding-top: 32px;
  border-top: 1px solid rgba(0, 0, 0, 0.08);
}
.side-info .offset-widget-box .title {
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: rgba(0, 0, 0, 0.5);
  margin-bottom: 20px;
  font-family: var(--font_Playfair);
}

.side-info .offset-social {
  display: flex;
  gap: 12px;
  margin-bottom: 32px;
}
.side-info .offset-social a {
  width: 42px;
  height: 42px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(0, 0, 0, 0.03);
  border: 1px solid rgba(0, 0, 0, 0.08);
  border-radius: 12px;
  color: rgba(0, 0, 0, 0.7);
  font-size: 16px;
  transition: all 0.35s cubic-bezier(0.4, 0, 0.2, 1);
}
.side-info .offset-social a:hover {
  background: #EE2D7A;
  border-color: #EE2D7A;
  color: #FFFFFF;
  transform: translateY(-4px);
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.3);
}

.side-info .contact-meta {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.side-info .contact-item {
  display: flex;
  align-items: center;
  gap: 16px;
  padding: 14px;
  background: rgba(0, 0, 0, 0.02);
  border: 1px solid rgba(0, 0, 0, 0.06);
  border-radius: 16px;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  text-decoration: none;
}
.side-info .contact-item:hover {
  background: rgba(0, 0, 0, 0.05);
  border-color: rgba(0, 0, 0, 0.1);
  transform: translateX(6px);
}
.side-info .contact-item .icon {
  width: 44px;
  min-width: 44px;
  height: 44px;
  border-radius: 12px;
  background: rgba(0, 0, 0, 0.04);
  display: flex;
  align-items: center;
  justify-content: center;
  color: #EE2D7A;
  font-size: 18px;
  transition: all 0.3s ease;
}
.side-info .contact-item:hover .icon {
  background: #EE2D7A;
  color: #FFFFFF;
}
.side-info .contact-item .text {
  flex: 1;
}
.side-info .contact-item .text a,
.side-info .contact-item .text span {
  display: block;
  color: rgba(0, 0, 0, 0.8);
  font-size: 14px;
  font-weight: 500;
  font-family: var(--font_Lato);
  transition: color 0.2s ease;
  text-decoration: none;
}
.side-info .contact-item .text a:hover {
  color: #EE2D7A;
}

/* === Footer Section (Home 01) === */
.footer1-main {
  position: relative;
  padding: 120px 0px 172px;
}
.footer1-main::before {
  position: absolute;
  content: "";
  background: var(--text-color6);
  width: 1px;
  height: 516px;
  left: 53%;
  top: 0%;
  opacity: 0.24;
}
@media only screen and (max-width: 1399px) {
  .footer1-main::before {
    height: 473px;
    left: 53%;
    bottom: 0%;
  }
}
@media only screen and (max-width: 1199px) {
  .footer1-main::before {
    display: none;
  }
}
@media only screen and (max-width: 1399px) {
  .footer1-main {
    padding: 120px 10px 172px;
  }
}
@media only screen and (max-width: 1399px) {
  .footer1-main {
    padding: 100px 0px 150px;
  }
}
@media only screen and (max-width: 991px) {
  .footer1-main {
    padding: 100px 0px 100px;
  }
}
.footer1-widget__title {
  position: relative;
  color: var(--white);
  font-family: var(--font_Playfair);
  font-weight: 500;
  font-style: Medium;
  font-size: 20px;
  line-height: 26px;
  display: inline-block;
  letter-spacing: 0px;
  margin-bottom: 24px;
  padding-bottom: 22px;
}
@media only screen and (max-width: 1399px) {
  .footer1-widget__title {
    font-size: 18px;
    margin-bottom: 20px;
  }
}
@media only screen and (max-width: 1199px) {
  .footer1-widget__title {
    font-size: 20px;
  }
}
.footer1-widget__title::before {
  position: absolute;
  bottom: 0;
  left: 0;
  content: "";
  width: 25px;
  height: 1.5px;
  background: var(--primary-two);
}
.footer1-widget__title::after {
  position: absolute;
  bottom: 0;
  left: 40px;
  content: "";
  width: 63px;
  height: 1.5px;
  background: var(--white);
}
.footer1-widget__nav-link {
  display: block;
  color: var(--white);
  font-family: var(--font_Lato);
  font-weight: 400;
  font-style: Regular;
  font-size: 16px;
  line-height: 26px;
  letter-spacing: 0px;
  transition: all 0.4s ease-in-out;
}
.footer1-widget__nav-link:not(:last-child) {
  margin-bottom: 16px;
}
.footer1-widget__nav-link i {
  font-size: 11px;
  margin-right: 8px;
}
.footer1-widget__nav-link:hover {
  transition: all 0.4s ease-in-out;
  color: var(--primary-two);
}
.footer1-widget__contact {
  display: flex;
  align-items: start;
  justify-content: center;
  flex-direction: column;
  gap: 15px;
}
.footer1-widget__contact-link {
  display: block;
  display: flex;
  align-items: start;
  justify-content: center;
  gap: 8px;
  color: rgba(255, 255, 255, 0.8);
  font-family: var(--font_Lato);
  font-weight: 400;
  font-style: Regular;
  font-size: 16px;
  line-height: 26px;
  letter-spacing: 0px;
  transition: all 0.4s ease-in-out;
}
.footer1-widget__contact-link svg path {
  fill: var(--primary-two);
}
.footer1-widget__contact-link:hover {
  color: var(--primary-two);
}
.footer1-widget__logo {
  margin-bottom: 16px;
}
.footer1-widget__logo img {
  width: 183px;
  height: 40px;
}
@media only screen and (max-width: 1399px) {
  .footer1-widget__logo img {
    width: 170px;
    height: 36px;
  }
}
.footer1-widget__text {
  color: var(--text-color7);
  font-family: var(--font_Lato);
  font-weight: 400;
  font-style: Regular;
  font-size: 16px;
  line-height: 26px;
  letter-spacing: 0px;
  margin-bottom: 25px;
  width: 580px;
}
@media only screen and (max-width: 1399px) {
  .footer1-widget__text {
    width: 513px;
  }
}
@media only screen and (max-width: 991px) {
  .footer1-widget__text {
    width: 356px;
    margin-bottom: 15px;
  }
}
@media only screen and (max-width: 767px) {
  .footer1-widget__text {
    width: 456px;
    margin-bottom: 15px;
  }
}
@media (max-width: 575px) {
  .footer1-widget__text {
    width: 340px;
    margin-bottom: 15px;
  }
}
.footer1-widget__social-link {
  display: flex;
  align-items: center;
  gap: 15px;
}
.footer1-widget__social-link span {
  width: 40px;
  height: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 16px;
  font-weight: 400;
  border-radius: 4px;
  border: 1px solid var(--text-color-three);
  color: var(--white);
  background: var(--text-color-three);
  transition: all 0.4s ease-in-out;
}
.footer1-widget__social-link span:hover {
  border: none;
  background: var(--primary-two);
  color: var(--white);
}
.footer1-bottom {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-bottom: 20px;
  border-top: 1px solid rgba(230, 230, 230, 0.2392156863);
}
.footer1-bottom__wrapper {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 32px 0;
}
@media only screen and (max-width: 991px) {
  .footer1-bottom__wrapper {
    flex-wrap: wrap;
    gap: 10px;
  }
}
.footer1-bottom__copyright {
  color: var(--white);
  font-family: var(--font_Lato);
  font-weight: 400;
  font-style: Regular;
  font-size: 16px;
  line-height: 26px;
  letter-spacing: 0px;
}
.footer1-bottom__copyright a {
  color: var(--white);
}
.footer1-bottom__navs {
  display: flex;
  align-items: center;
  gap: 15px;
}
.footer1-bottom__navs a {
  color: var(--text-color-four);
  font-family: var(--font_Lato);
  font-weight: 400;
  font-style: Regular;
  font-size: 16px;
  line-height: 26px;
  letter-spacing: 0px;
}
.footer1-bottom__navs a:hover {
  color: var(--primary-two);
}

/* === Footer Section (Home 02) === */
.footer2 {
  position: relative;
  z-index: 5;
}
.footer2-main {
  position: relative;
  padding-bottom: 50px;
}
@media (max-width: 1199px) {
  .footer2-main {
    padding-bottom: 40px;
  }
}
.footer2-main.style1 {
  padding: 220px 0px 100px;
  margin-top: -100px;
}
@media (max-width: 1199px) {
  .footer2-main.style1 {
    padding: 180px 0 140px;
  }
}
@media (max-width: 991px) {
  .footer2-main.style1 {
    padding: 160px 0 120px;
  }
}
@media (max-width: 767px) {
  .footer2-main.style1 {
    padding: 140px 0 110px;
  }
}
.footer2-main.style2 {
  padding: 110px 0px 100px;
  margin-top: -10px;
}
@media (max-width: 1199px) {
  .footer2-main.style2 {
    padding: 80px 0 40px;
  }
}
@media (max-width: 991px) {
  .footer2-main.style2 {
    padding: 60px 0 20px;
  }
}
@media (max-width: 767px) {
  .footer2-main.style2 {
    padding: 40px 0 10px;
  }
}
.footer2-main::before {
  position: absolute;
  content: "";
  background: var(--text-color6);
  width: 1px;
  height: 389px;
  left: 40%;
  bottom: 0%;
  opacity: 0.24;
}
@media only screen and (max-width: 1399px) {
  .footer2-main::before {
    display: none;
  }
}
.footer2.extra-padding {
  padding: 220px 0px 0px;
  margin-top: -100px;
}
@media (max-width: 1199px) {
  .footer2.extra-padding {
    margin-top: -80px;
    padding: 160px 0px 0px;
  }
}
.footer2-widget__title {
  position: relative;
  color: var(--white);
  font-family: var(--font_Playfair);
  font-weight: 700;
  font-style: Bold;
  font-size: 32px;
  line-height: 40px;
  letter-spacing: 0px;
  text-transform: capitalize;
  margin-bottom: 24px;
  padding-bottom: 22px;
}
@media only screen and (max-width: 1399px) {
  .footer2-widget__title {
    font-size: 25px;
    margin-bottom: 20px;
  }
}
@media only screen and (max-width: 1199px) {
  .footer2-widget__title {
    font-size: 22px;
  }
}
@media (max-width: 575px) {
  .footer2-widget__title {
    font-size: 19px;
  }
}
.footer2-widget-button-items {
  display: flex;
  gap: 24px;
  align-items: center;
}
@media only screen and (max-width: 991px) {
  .footer2-widget-button-items {
    gap: 10px;
  }
}
@media (max-width: 575px) {
  .footer2-widget-button-items {
    flex-wrap: wrap;
    gap: 20px;
  }
}
.footer2-widget-button-items-btn-wrapper .btn-button2 {
  color: var(--white);
  font-family: var(--font_Playfair);
  font-weight: 500;
  font-style: Medium;
  font-size: 16px;
  line-height: 22px;
  letter-spacing: 0px;
  text-align: center;
  vertical-align: middle;
  align-items: center;
  display: inline-flex;
  gap: 10px;
  border-radius: 36px;
  text-transform: capitalize;
  padding: 7px 9px 7px 35px;
  border: 1px solid var(--text-color-three);
  justify-content: space-between;
  background: transparent;
}
@media (max-width: 575px) {
  .footer2-widget-button-items-btn-wrapper .btn-button2 {
    padding: 7px 19px 7px 30px;
  }
}
@media (max-width: 575px) {
  .footer2-widget-button-items-btn-wrapper .btn-button2 {
    padding: 7px 11px 7px 10px;
    font-size: 14px;
  }
}
.footer2-widget-button-items-btn-wrapper .btn-button2 .text {
  display: block;
  display: flex;
  text-align: center;
  justify-content: center;
  align-items: center;
  justify-items: center;
  margin: 0 auto;
  color: var(--white);
  font-family: var(--font_Playfair);
  font-weight: 500;
  font-style: Medium;
  font-size: 16px;
  line-height: 22px;
  letter-spacing: 0px;
  text-align: center;
}
@media (max-width: 575px) {
  .footer2-widget-button-items-btn-wrapper .btn-button2 .text {
    font-size: 14px;
  }
}
.footer2-widget-button-items-btn-wrapper .btn-button2 .icon {
  width: 40px;
  height: 40px;
  display: flex;
  font-size: 20px;
  color: var(--text-color-one);
  align-items: center;
  border-radius: 500px;
  transition: all 0.3s;
  justify-content: center;
  background: var(--primary-two);
}
@media (max-width: 575px) {
  .footer2-widget-button-items-btn-wrapper .btn-button2 .icon {
    width: 30px;
    height: 30px;
  }
}
.footer2-widget-button-items-btn-wrapper .btn-button2:hover {
  background-color: var(--white);
  color: var(--primary-two);
}
.footer2-widget-button-items-btn-wrapper .btn-button2:hover .icon {
  rotate: -45deg;
  background: var(--primary-two);
  color: var(--white);
}
.footer2-widget-button-items-btn-wrapper .btn-button2:hover .icon svg path {
  fill: var(--white);
}
.footer2-widget-button-items-btn-wrapper .btn-button2:hover .text {
  color: var(--primary-two);
}
.footer2-widget-button-items-btn-wrapper .btn-button2.btn-black {
  color: var(--white);
  background: var(--primary);
}
.footer2-widget-button-items-btn-wrapper .btn-button2.btn-black .icon {
  color: var(--primary);
  background: var(--white);
}
.footer2-widget-button-items-btn-wrapper .btn-button2.btn-purple {
  gap: 16px;
  color: #000;
  color: var(--white);
  background: var(--text-color-one);
  padding: 10px 11px 10px 37px;
}
@media (max-width: 575px) {
  .footer2-widget-button-items-btn-wrapper .btn-button2.btn-purple {
    padding: 10px 8px 10px 20px;
  }
}
.footer2-widget-button-items-btn-wrapper .btn-button2.btn-purple .icon {
  width: 44px;
  height: 44px;
  background: var(--white);
}
.footer2-widget-button-items-btn-wrapper .btn-button2.btn-purple .icon:hover {
  background: var(--primary-two);
}
.footer2-widget__logo {
  margin-bottom: 43px;
}
.footer2-widget__logo img {
  width: 196px;
  height: 36px;
}
@media only screen and (max-width: 1399px) {
  .footer2-widget__logo img {
    width: 170px;
    height: 36px;
  }
}
.footer2-widget__social-title {
  color: var(--white);
  font-weight: 500;
  font-style: Medium;
  font-size: 18px;
  line-height: 24px;
  letter-spacing: 0px;
  text-transform: capitalize;
  margin-bottom: 16px;
}
.footer2-widget__social-link {
  display: flex;
  align-items: center;
  gap: 15px;
}
.footer2-widget__social-link span {
  width: 40px;
  height: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 16px;
  font-weight: 400;
  border-radius: 4px;
  border: none;
  color: var(--white);
  background: var(--text-color-three);
  transition: all 0.4s ease-in-out;
}
.footer2-widget__social-link span:hover {
  border: none;
  background: var(--primary-two);
  color: var(--white);
}
.footer2-widget__contact-post {
  margin-bottom: 32px;
}
.footer2-widget__contact-post-title {
  display: flex;
  align-items: center;
  gap: 8px;
  color: var(--white);
  font-family: var(--font_Playfair);
  font-weight: 500;
  font-style: Medium;
  font-size: 20px;
  line-height: 26px;
  letter-spacing: 0px;
  text-align: start;
  margin-bottom: 10px;
}
.footer2-widget__contact-post-link {
  color: var(--text-color-two);
  font-family: var(--font_Lato);
  font-weight: 400;
  font-style: Regular;
  font-size: 16px;
  line-height: 26px;
  letter-spacing: 0px;
  transition: all 0.4s ease-in-out;
}
.footer2-widget__contact-post-link:hover {
  color: var(--primary-two);
}
.footer2-widget__contact-items {
  display: flex;
  gap: 20px;
  align-items: center;
}
@media (max-width: 575px) {
  .footer2-widget__contact-items {
    flex-wrap: wrap;
  }
}
.footer2-bottom {
  display: flex;
  align-items: center;
  justify-content: space-between;
  border-top: 1px solid rgba(230, 230, 230, 0.2392156863);
  padding-bottom: 20px;
}
.footer2-bottom__wrapper {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 32px 0 32px;
}
@media only screen and (max-width: 991px) {
  .footer2-bottom__wrapper {
    flex-wrap: wrap;
    gap: 10px;
  }
}
.footer2-bottom__copyright {
  color: var(--white);
  font-family: var(--font_Lato);
  font-weight: 400;
  font-style: Regular;
  font-size: 16px;
  line-height: 26px;
  letter-spacing: 0px;
}
.footer2-bottom__copyright a {
  color: var(--white);
}
.footer2-bottom__navs {
  display: flex;
  align-items: center;
  gap: 15px;
}
@media (max-width: 767px) {
  .footer2-bottom__navs {
    flex-wrap: wrap;
    gap: 5px;
  }
}
.footer2-bottom__navs a {
  color: var(--text-color-four);
  font-family: var(--font_Lato);
  font-weight: 400;
  font-style: Regular;
  font-size: 16px;
  line-height: 26px;
  letter-spacing: 0px;
}
.footer2-bottom__navs a:hover {
  color: var(--primary-two);
}

/* === Footer Section (Home 03) === */
.footer3-main {
  padding: 120px 0px 172px;
}
@media only screen and (max-width: 1399px) {
  .footer3-main {
    padding: 120px 10px 172px;
  }
}
@media only screen and (max-width: 1399px) {
  .footer3-main {
    padding: 100px 0px 150px;
  }
}
@media only screen and (max-width: 991px) {
  .footer3-main {
    padding: 100px 0px 100px;
  }
}
.footer3-widget__title2 {
  color: var(--white);
  font-family: var(--font_Playfair);
  font-weight: 700;
  font-style: Bold;
  font-size: 24px;
  line-height: 30px;
  letter-spacing: 0px;
  text-transform: capitalize;
  margin-bottom: 12px;
}
.footer3-widget__text {
  color: #878787;
  font-family: var(--font_Lato);
  font-weight: 400;
  font-style: Regular;
  font-size: 16px;
  line-height: 26px;
  letter-spacing: 0px;
  margin-bottom: 32px;
}
@media only screen and (max-width: 991px) {
  .footer3-widget__text {
    margin-bottom: 32px;
  }
}
@media only screen and (max-width: 767px) {
  .footer3-widget__text {
    margin-bottom: 30px;
  }
}
@media (max-width: 575px) {
  .footer3-widget__text {
    margin-bottom: 25px;
  }
}
.footer3-widget__newsletter {
  position: relative;
  overflow: hidden;
  margin-bottom: 34px;
}
.footer3-widget__newsletter-box {
  width: 450px;
  position: relative;
  z-index: 5;
}
@media only screen and (max-width: 991px) {
  .footer3-widget__newsletter-box {
    width: 400px;
  }
}
@media (max-width: 575px) {
  .footer3-widget__newsletter-box {
    width: 258px;
  }
}
.footer3-widget__newsletter-box input {
  width: 100%;
  border-radius: 100px;
  background: var(--bg-color3);
  color: var(--text-color7);
  font-size: 18px;
  font-style: normal;
  font-weight: 400;
  line-height: 28px;
  padding: 13px 20px;
  width: 100%;
  border: 0;
  height: 64px;
}
@media (max-width: 575px) {
  .footer3-widget__newsletter-box input {
    font-size: 16px;
    height: 59px;
  }
}
.footer3-widget__newsletter-box input::placeholder {
  color: var(--text-color7);
}
.footer3-widget__newsletter-box button {
  position: absolute;
  top: 3.7px;
  right: -32px;
  width: 217px;
  height: 56px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 30px;
  background: var(--primary-two);
  color: var(--white);
  font-family: var(--font_Playfair);
  font-weight: 500;
  font-style: Medium;
  font-size: 16px;
  line-height: 22px;
  letter-spacing: 0px;
}
@media (max-width: 575px) {
  .footer3-widget__newsletter-box button {
    font-size: 14px;
    width: 186px;
    height: 52px;
  }
}
.footer3-widget__newsletter-box button .icon {
  background: var(--white);
  width: 40px;
  height: 40px;
  border-radius: 100px;
  padding: 8px;
  margin-left: 20px;
}
@media (max-width: 575px) {
  .footer3-widget__newsletter-box button .icon {
    margin-left: 12px;
  }
}
.footer3-widget__social {
  display: flex;
  align-items: center;
  gap: 16px;
}
.footer3-widget__social-title {
  color: var(--white);
  font-family: var(--font_Playfair);
  font-weight: 500;
  font-style: Medium;
  font-size: 18px;
  line-height: 24px;
  letter-spacing: 0px;
  text-transform: capitalize;
}
.footer3-widget__social-link {
  display: flex;
  align-items: center;
  gap: 15px;
}
.footer3-widget__social-link span {
  width: 40px;
  height: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 16px;
  font-weight: 400;
  border-radius: 4px;
  border: 1px solid var(--text-color-three);
  color: var(--white);
  background: var(--text-color-three);
  transition: all 0.4s ease-in-out;
}
.footer3-widget__social-link span:hover {
  border: none;
  background: var(--primary-two);
  color: var(--white);
}
.footer3-widget__title {
  position: relative;
  color: var(--white);
  font-family: var(--font_Playfair);
  font-weight: 500;
  font-style: Medium;
  font-size: 20px;
  line-height: 26px;
  display: inline-block;
  letter-spacing: 0px;
  margin-bottom: 24px;
  padding-bottom: 22px;
}
@media only screen and (max-width: 1399px) {
  .footer3-widget__title {
    font-size: 18px;
    margin-bottom: 20px;
  }
}
@media only screen and (max-width: 1199px) {
  .footer3-widget__title {
    font-size: 20px;
  }
}
.footer3-widget__title::before {
  position: absolute;
  bottom: 0;
  left: 0;
  content: "";
  width: 25px;
  height: 1.5px;
  background: var(--primary-two);
}
.footer3-widget__title::after {
  position: absolute;
  bottom: 0;
  left: 40px;
  content: "";
  width: 63px;
  height: 1.5px;
  background: var(--white);
}
.footer3-widget__nav-link {
  display: block;
  color: var(--text-color7);
  font-family: var(--font_Lato);
  font-weight: 400;
  font-style: Regular;
  font-size: 16px;
  line-height: 26px;
  letter-spacing: 0px;
  transition: all 0.4s ease-in-out;
}
.footer3-widget__nav-link:not(:last-child) {
  margin-bottom: 16px;
}
.footer3-widget__nav-link i {
  font-size: 11px;
  margin-right: 8px;
}
.footer3-widget__nav-link:hover {
  transition: all 0.4s ease-in-out;
  color: var(--primary-two);
}
.footer3-bottom {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 32px 0;
  border-top: 1px solid rgba(230, 230, 230, 0.2392156863);
}
.footer3-bottom__wrapper {
  display: flex;
  align-items: center;
  justify-content: space-between;
}
@media only screen and (max-width: 991px) {
  .footer3-bottom__wrapper {
    flex-wrap: wrap;
    gap: 10px;
  }
}
.footer3-bottom__logo-items {
  width: 144px;
  height: 31px;
}
.footer3-bottom__copyright {
  color: var(--text-color7);
  font-family: var(--font_Lato);
  font-weight: 400;
  font-style: Regular;
  font-size: 16px;
  line-height: 26px;
  letter-spacing: 0px;
}
.footer3-bottom__copyright a {
  color: var(--text-color7);
}

.main-sidebar-1 .single-sidebar-widget {
  padding: 24px 30px;
  border-radius: 10px;
  background: #FFEFF2;
  margin-bottom: 30px;
}
@media only screen and (max-width: 1199px) {
  .main-sidebar-1 .single-sidebar-widget {
    padding: 15px;
  }
}
.main-sidebar-1 .single-sidebar-widget__wid-title {
  position: relative;
  margin-bottom: 15px;
}
.main-sidebar-1 .single-sidebar-widget__wid-title--title {
  position: relative;
  color: #0C0C0C;
  font-family: var(--font_Playfair);
  font-weight: 500;
  font-style: Medium;
  font-size: 20px;
  line-height: 26px;
  letter-spacing: 0px;
  vertical-align: middle;
  text-transform: capitalize;
}
.main-sidebar-1 .single-sidebar-widget__wid-title--title::before {
  position: absolute;
  content: "";
  width: 2px;
  height: 26px;
  background-color: #EE2D7A;
  left: -5%;
}
.main-sidebar-1 .single-sidebar-widget__search-widget form {
  width: 100%;
  position: relative;
}
.main-sidebar-1 .single-sidebar-widget__search-widget form input {
  width: 100%;
  padding: 15px 16px;
  border-radius: 8px;
  border: 1px solid #FFFFFF;
  background: #FFFFFF;
  color: #5B5B5B;
  font-family: Lato;
  font-weight: 400;
  font-style: Regular;
  font-size: 16px;
  line-height: 26px;
  letter-spacing: 0px;
  vertical-align: middle;
}
.main-sidebar-1 .single-sidebar-widget__search-widget form button {
  position: absolute;
  right: 15px;
  top: 1px;
  width: 20px;
  font-size: 18px;
  height: 100%;
  color: #5B5B5B;
  text-align: center;
  transition: all 0.3s ease-in-out;
  border: none;
}
.main-sidebar-1 .single-sidebar-widget__search-widget form button:hover {
  color: #5B5B5B;
}
.main-sidebar-1 .single-sidebar-widget__filter-price-widget-categories .range-slider .form-range {
  background: linear-gradient(90deg, #EE2D7A 50%, #FFFFFF 50%);
  border: 1px solid #EE2D7A;
  height: 8px;
  border-radius: 5px;
  outline: none;
  -webkit-appearance: none;
  appearance: none;
}
.main-sidebar-1 .single-sidebar-widget__filter-price-widget-categories .range-slider .form-range::-webkit-slider-runnable-track {
  background: inherit;
  height: 8px;
  border-radius: 5px;
}
.main-sidebar-1 .single-sidebar-widget__filter-price-widget-categories .range-slider .form-range::-moz-range-track {
  background: inherit;
  height: 8px;
  border-radius: 5px;
}
.main-sidebar-1 .single-sidebar-widget__filter-price-widget-categories .range-slider .form-range::-ms-track {
  background: inherit;
  height: 8px;
  border-radius: 5px;
}
.main-sidebar-1 .single-sidebar-widget__filter-price-widget-categories .range-slider .range-values {
  display: flex;
  justify-content: space-between;
  margin-top: 10px;
  font-size: 16px;
}
.main-sidebar-1 .single-sidebar-widget__filter-price-widget-categories .range-slider .range-values span {
  padding: 5px 10px;
  border-radius: 20px;
  box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
  transition: background-color 0.3s, color 0.3s;
}
.main-sidebar-1 .single-sidebar-widget__filter-price-widget-categories .range-slider .range-values span.active {
  color: #fff;
  background: #EE2D7A;
}
.main-sidebar-1 .single-sidebar-widget__widget-categories .color-list {
  display: flex;
  gap: 16px;
}
.main-sidebar-1 .single-sidebar-widget__widget-categories .color-list li {
  list-style: none;
}
.main-sidebar-1 .single-sidebar-widget__shop-widget-categories ul li {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 8px 0px;
}
.main-sidebar-1 .single-sidebar-widget__shop-widget-categories ul li a {
  color: #5B5B5B;
  font-family: Lato;
  font-weight: 400;
  font-style: Regular;
  font-size: 16px;
  line-height: 26px;
  letter-spacing: 0px;
  vertical-align: middle;
  text-transform: capitalize;
  transition: all 0.4s ease-in-out;
}
.main-sidebar-1 .single-sidebar-widget__shop-widget-categories ul li a i {
  margin-right: 12px;
}
.main-sidebar-1 .single-sidebar-widget__shop-widget-categories ul li:not(:last-child) {
  margin-bottom: 12px;
}
.main-sidebar-1 .single-sidebar-widget__shop-widget-categories ul li:hover a {
  color: #EE2D7A;
}
.main-sidebar-1 .single-sidebar-widget__tags {
  margin-top: 12px;
}
.main-sidebar-1 .single-sidebar-widget__tags-tagcloud {
  margin-top: 22px;
}
.main-sidebar-1 .single-sidebar-widget__tags-tagcloud a {
  display: inline-flex;
  justify-content: center;
  align-items: center;
  color: #0C0C0C;
  height: 40px;
  padding: 18px 13px;
  border-radius: 6px;
  margin-top: 10px;
  margin-right: 8px;
  border: 0.5px solid #E6E6E6;
  font-family: var(--font_Playfair);
  font-weight: 500;
  font-style: Medium;
  font-size: 16px;
  line-height: 22px;
  letter-spacing: 0px;
  text-align: center;
  vertical-align: middle;
}
.main-sidebar-1 .single-sidebar-widget__tags-tagcloud a:hover {
  color: #EE2D7A;
}
.main-sidebar-1 .single-sidebar-widget__brand {
  position: relative;
  overflow: hidden;
}
.main-sidebar-1 .single-sidebar-widget__brand-list {
  position: relative;
  overflow: hidden;
  color: #5B5B5B;
  font-family: Lato;
  font-weight: 400;
  font-style: Regular;
  font-size: 16px;
  line-height: 26px;
  letter-spacing: 0px;
  vertical-align: middle;
  transition: all 0.4s ease-in-out;
}
.main-sidebar-1 .single-sidebar-widget__brand-list li {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 8px 0px;
  transition: all 0.4s ease-in-out;
  overflow: hidden;
  opacity: 0;
}
.main-sidebar-1 .single-sidebar-widget__brand-list li a {
  color: #5B5B5B;
  font-family: Lato;
  font-weight: 400;
  font-style: Regular;
  font-size: 16px;
  line-height: 26px;
  letter-spacing: 0px;
  vertical-align: middle;
  text-transform: capitalize;
  transition: all 0.4s ease-in-out;
}
.main-sidebar-1 .single-sidebar-widget__brand-list li a i {
  margin-right: 12px;
}
.main-sidebar-1 .single-sidebar-widget__brand-list li:not(:last-child) {
  margin-bottom: 12px;
}
.main-sidebar-1 .single-sidebar-widget__brand-list li:hover a {
  color: #EE2D7A;
}
.main-sidebar-1 .single-sidebar-widget__brand-list li:hover {
  overflow: visible;
  opacity: 1;
}

.main-sidebar2-widget {
  padding: 28px 36px 30px;
  border-radius: 18px;
  background: #FFEFF2;
}
.main-sidebar2-widget:not(:last-child) {
  margin-bottom: 41px;
}
@media only screen and (max-width: 1199px) {
  .main-sidebar2-widget {
    padding: 25px 30px 30px;
  }
}
@media only screen and (max-width: 991px) {
  .main-sidebar2-widget {
    padding: 25px 28px 30px;
  }
}
@media (max-width: 575px) {
  .main-sidebar2-widget {
    padding: 25px 27px 30px;
  }
}
.main-sidebar2-widget__heading-title {
  position: relative;
  color: #0E0E0C;
  font-family: var(--font_Playfair);
  font-weight: 700;
  font-style: Bold;
  font-size: 24px;
  line-height: 30px;
  letter-spacing: 0px;
  text-transform: capitalize;
  margin-bottom: 20px;
}
@media only screen and (max-width: 1399px) {
  .main-sidebar2-widget__heading-title {
    font-size: 23px;
  }
}
@media only screen and (max-width: 1199px) {
  .main-sidebar2-widget__heading-title {
    font-size: 21px;
  }
}
@media only screen and (max-width: 767px) {
  .main-sidebar2-widget__heading-title {
    font-size: 18px;
  }
}
.main-sidebar2-widget__heading-title::before {
  content: "";
  position: absolute;
  background: #EE2D7A;
  width: 80px;
  height: 3px;
  top: 36px;
  border-radius: 5px;
}
.main-sidebar2-widget__heading-title::after {
  content: "";
  position: absolute;
  background: #E6E6E6;
  border-radius: 5px;
  width: 354px;
  height: 1px;
  opacity: 0.64;
  top: 37px;
  left: 0px;
}
@media only screen and (max-width: 1399px) {
  .main-sidebar2-widget__heading-title::after {
    width: 320px;
  }
}
@media (max-width: 575px) {
  .main-sidebar2-widget__heading-title::after {
    width: 240px;
  }
}
.main-sidebar2-widget__search-widget {
  margin-top: 20px;
}
.main-sidebar2-widget__search-widget form {
  display: flex;
  gap: 10px;
  width: 100%;
  position: relative;
  background: #FFFFFF;
  border-radius: 100px;
}
.main-sidebar2-widget__search-widget form input {
  background: #FFFFFF;
  padding: 16px 20px;
  width: 100%;
  border: none;
  font-family: Lato;
  font-weight: 400;
  font-style: Regular;
  font-size: 16px;
  line-height: 26px;
  letter-spacing: 0px;
  border-radius: 100px;
  text-transform: capitalize;
}
@media only screen and (max-width: 991px) {
  .main-sidebar2-widget__search-widget form input {
    padding: 14px 20px;
  }
}
.main-sidebar2-widget__search-widget form input::placeholder {
  color: #5B5B5B;
}
.main-sidebar2-widget__search-widget form button {
  position: absolute;
  padding: 16px 20px;
  background: #EE2D7A;
  text-align: center;
  transition: all 0.3s ease-in-out;
  width: 40px;
  height: 40px;
  right: 2%;
  top: 15%;
  border-radius: 100px;
  padding-top: 9px;
  padding-right: 10px;
  padding-bottom: 11px;
  padding-left: 11px;
}
.main-sidebar2-widget__search-widget form button i {
  color: var(--white);
}
.main-sidebar2-widget__categories-items-text {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 11px 20px 11px;
  border-radius: 100px;
  background: #FFFFFF;
  color: #0E0E0C;
  font-family: Lato;
  font-weight: 400;
  font-style: Regular;
  font-size: 16px;
  line-height: 26px;
  letter-spacing: 0px;
  transition: all 0.4s ease-in-out;
  margin-top: 16px;
}
@media only screen and (max-width: 1199px) {
  .main-sidebar2-widget__categories-items-text {
    padding: 11px 17px 11px;
  }
}
.main-sidebar2-widget__categories-items-text a {
  font-size: 16px;
}
.main-sidebar2-widget__categories-items-text span {
  font-size: 13px;
  transition: all 0.4s ease-in-out;
}
.main-sidebar2-widget__categories-items-text:hover {
  background: #EE2D7A;
  transition: all 0.4s ease-in-out;
  color: var(--white);
}
.main-sidebar2-widget__categories-items-text:hover a {
  color: var(--white);
}
.main-sidebar2-widget__categories-items-text.active {
  background: #EE2D7A;
  transition: all 0.4s ease-in-out;
  color: var(--white);
}
.main-sidebar2-widget__categories-items-text.active a {
  color: var(--white);
}
.main-sidebar2-widget__categories-items-text.active span {
  color: var(--white);
}
.main-sidebar2-widget__post-items-thumb {
  margin-top: 22px;
}
.main-sidebar2-widget__post-items-thumb img {
  max-width: 100%;
}
.main-sidebar2-widget__post-items-content-post {
  margin-top: 16px;
}
.main-sidebar2-widget__post-items-content-post-date {
  display: flex;
  gap: 10px;
  align-items: center;
  list-style: none;
  color: #5B5B5B;
  font-family: Lato;
  font-weight: 400;
  font-style: Regular;
  font-size: 16px;
  line-height: 26px;
  letter-spacing: 0px;
}
.main-sidebar2-widget__post-items-content-title {
  margin-top: 10px;
}
.main-sidebar2-widget__post-items-content-title a {
  color: #0E0E0C;
  font-family: var(--font_Playfair);
  font-weight: 500;
  font-style: Medium;
  font-size: 18px;
  line-height: 24px;
  letter-spacing: 0px;
  text-transform: capitalize;
  transition: all 0.3s;
}
@media only screen and (max-width: 1399px) {
  .main-sidebar2-widget__post-items-content-title a {
    font-size: 16px;
  }
}
.main-sidebar2-widget__post-items-content-title a:hover {
  color: var(--primary-two);
}
.main-sidebar2-widget__tags-tagcloud {
  margin-top: 22px;
}
.main-sidebar2-widget__tags-tagcloud a {
  display: inline-flex;
  justify-content: center;
  align-items: center;
  background: var(--white);
  color: #5B5B5B;
  font-family: Lato;
  font-weight: 400;
  font-style: Regular;
  font-size: 14px;
  line-height: 22px;
  letter-spacing: 0px;
  text-align: center;
  vertical-align: middle;
  height: 40px;
  padding: 16px 13px;
  border-radius: 100px;
  margin-top: 10px;
  margin-right: 8px;
  transition: all 0.3s linear;
}
.main-sidebar2-widget__tags-tagcloud a:hover {
  background: #EE2D7A;
  color: var(--white);
}
.main-sidebar2-widget__tags-tagcloud a.active {
  background: #EE2D7A;
  color: var(--white);
}

/* === 404 Error Page Section === */
.error {
  text-align: center;
}
.error-items__thumb {
  max-width: 500px;
  margin: 0 auto 50px;
}
@media only screen and (max-width: 991px) {
  .error-items__thumb {
    max-width: 400px;
    margin-bottom: 40px;
  }
}
@media (max-width: 575px) {
  .error-items__thumb {
    max-width: 100%;
    margin-bottom: 30px;
  }
}
.error-items__thumb img {
  width: 100%;
  height: auto;
}
.error-items__title {
  color: #0C0C0C;
  font-family: var(--font_Playfair);
  font-weight: 700;
  font-size: 80px;
  line-height: normal;
  margin-bottom: 15px;
}
@media only screen and (max-width: 1199px) {
  .error-items__title {
    font-size: 60px;
  }
}
@media only screen and (max-width: 991px) {
  .error-items__title {
    font-size: 50px;
  }
}
@media (max-width: 575px) {
  .error-items__title {
    font-size: 40px;
  }
}
.error-items__title2 {
  color: #0C0C0C;
  font-family: var(--font_Playfair);
  font-weight: 600;
  font-size: 36px;
  line-height: 44px;
  margin-bottom: 25px;
}
@media only screen and (max-width: 1199px) {
  .error-items__title2 {
    font-size: 32px;
  }
}
@media only screen and (max-width: 991px) {
  .error-items__title2 {
    font-size: 28px;
    line-height: 36px;
  }
}
@media (max-width: 575px) {
  .error-items__title2 {
    font-size: 24px;
    line-height: 32px;
  }
}
.error-items__text {
  max-width: 600px;
  margin: 0 auto 40px;
  color: #5B5B5B;
  font-family: var(--font_Lato);
  font-size: 18px;
  line-height: 28px;
}
@media (max-width: 575px) {
  .error-items__text {
    font-size: 16px;
    line-height: 26px;
    margin-bottom: 30px;
  }
}

.about1-thumb img {
  width: 100%;
}
.about1-content .section-heading3__subtitle {
  display: block;
  color: #0C0C0C;
  font-family: var(--font_Playfair);
  font-weight: 500;
  font-style: Medium;
  font-size: 18px;
  line-height: 24px;
  letter-spacing: 0px;
  text-transform: capitalize;
  margin-bottom: 15px;
}
@media only screen and (max-width: 1199px) {
  .about1-content .section-heading3__subtitle {
    font-size: 16px;
    margin-bottom: 10px;
  }
}
.about1-content .section-heading3__title {
  color: #0C0C0C;
  font-family: var(--font_Playfair);
  font-weight: 700;
  font-style: Bold;
  font-size: 48px;
  line-height: 56px;
  letter-spacing: -1px;
  margin-bottom: 16px;
}
@media only screen and (max-width: 1919px) {
  .about1-content .section-heading3__title {
    font-size: 42px;
  }
}
@media only screen and (max-width: 1399px) {
  .about1-content .section-heading3__title {
    font-size: 40px;
  }
}
@media only screen and (max-width: 1199px) {
  .about1-content .section-heading3__title {
    font-size: 29px;
    line-height: 46px;
    margin-bottom: 10px;
  }
}
@media only screen and (max-width: 991px) {
  .about1-content .section-heading3__title {
    font-size: 30px;
  }
}
@media (max-width: 575px) {
  .about1-content .section-heading3__title {
    font-size: 27px;
    line-height: 43px;
  }
}
.about1-content__text {
  color: #5B5B5B;
  font-family: Lato;
  font-weight: 400;
  font-style: Regular;
  font-size: 16px;
  line-height: 26px;
  letter-spacing: 0px;
  margin-bottom: 26px;
}
@media only screen and (max-width: 991px) {
  .about1-content__text {
    font-size: 15px;
    line-height: 24px;
    margin-bottom: 20px;
  }
}
@media (max-width: 575px) {
  .about1-content__text {
    font-size: 14px;
    line-height: 22px;
    margin-bottom: 18px;
  }
}
.about1-content__subtext {
  color: #5B5B5B;
  font-family: Lato;
  font-weight: 400;
  font-style: Regular;
  font-size: 16px;
  line-height: 26px;
  letter-spacing: 0px;
  margin-bottom: 24px;
}
@media only screen and (max-width: 991px) {
  .about1-content__subtext {
    font-size: 15px;
    line-height: 24px;
    margin-bottom: 20px;
  }
}
@media (max-width: 575px) {
  .about1-content__subtext {
    font-size: 14px;
    line-height: 22px;
    margin-bottom: 18px;
  }
}
.about1-content-info {
  display: flex;
  gap: 50px;
  align-items: center;
  margin-bottom: 32px;
}
@media only screen and (max-width: 1199px) {
  .about1-content-info {
    gap: 40px;
    margin-bottom: 28px;
  }
}
@media only screen and (max-width: 991px) {
  .about1-content-info {
    gap: 30px;
    margin-bottom: 24px;
  }
}
@media only screen and (max-width: 767px) {
  .about1-content-info {
    gap: 20px;
    flex-wrap: wrap;
  }
}
@media (max-width: 575px) {
  .about1-content-info {
    flex-wrap: wrap;
    gap: 15px;
    margin-bottom: 20px;
  }
}
.about1-content-info__list {
  list-style: none;
}
.about1-content-info__list-items {
  position: relative;
  color: #0C0C0C;
  font-family: var(--font_Playfair);
  font-weight: 500;
  font-style: Medium;
  font-size: 18px;
  line-height: 24px;
  letter-spacing: 0px;
  text-transform: capitalize;
  margin-left: 20px;
}
@media (max-width: 575px) {
  .about1-content-info__list-items {
    font-size: 16px;
  }
}
.about1-content-info__list-items:not(:last-child) {
  margin-bottom: 20px;
}
.about1-content-info__list-items::before {
  content: "";
  position: absolute;
  background: #0C0C0C;
  border-radius: 36px;
  width: 12px;
  height: 12px;
  left: -9%;
  top: 25%;
}
.about1-content__items {
  padding: 24px 16px;
  background: #FFDEE5;
  color: #0C0C0C;
  font-family: var(--font_Playfair);
  font-weight: 500;
  font-style: Italic;
  font-size: 16px;
  line-height: 22px;
  letter-spacing: 0px;
  border-radius: 8px;
  margin-bottom: 48px;
}
@media only screen and (max-width: 1399px) {
  .about1-content__items {
    padding: 20px 14px;
    font-size: 15px;
  }
}
@media only screen and (max-width: 1199px) {
  .about1-content__items {
    margin-bottom: 20px;
  }
}
@media (max-width: 575px) {
  .about1-content__items {
    padding: 17px 13px;
    font-size: 15px;
  }
}
.about1-content__button .rr-btn-button {
  gap: 11px;
  font-family: var(--font_Playfair);
  font-weight: 500;
  font-style: Medium;
  font-size: 16px;
  line-height: 18px;
  letter-spacing: 0px;
  align-items: center;
  display: inline-flex;
  color: var(--white);
  border-radius: 90px;
  text-transform: capitalize;
  padding: 8px 8px 8px 32px;
  border: 1px solid #e3e3e3;
  justify-content: space-between;
  background: var(--text-color-one);
}
@media (max-width: 575px) {
  .about1-content__button .rr-btn-button {
    padding: 8px 6px 8px 18px;
  }
}
.about1-content__button .rr-btn-button .icon {
  width: 36px;
  height: 36px;
  display: flex;
  font-size: 20px;
  color: var(--white);
  align-items: center;
  border-radius: 500px;
  transition: all 0.3s;
  background: var(--primary-two);
  justify-content: center;
  background: var(--primary-two);
}
.about1-content__button .rr-btn-button:hover .icon {
  rotate: -45deg;
}
.about1-content__button .rr-btn-button.btn-black {
  color: var(--white);
  background: var(--primary);
}
.about1-content__button .rr-btn-button.btn-black .icon {
  color: var(--primary);
  background: var(--white);
}
.about1-content__button .rr-btn-button.btn-purple3 {
  gap: 11px;
  color: var(--text-color-one);
  background: transparent;
  padding: 8px 14px 8px 17px;
  border: 1px solid var(--text-color7);
}
@media (max-width: 575px) {
  .about1-content__button .rr-btn-button.btn-purple3 {
    padding: 8px 8px 8px 18px;
  }
}
.about1-content__button .rr-btn-button.btn-purple3 .text {
  color: var(--text-color-one);
}
.about1-content__button .rr-btn-button.btn-purple3 .icon {
  width: 36px;
  height: 36px;
  display: flex;
  font-size: 20px;
  color: var(--white);
  align-items: center;
  border-radius: 500px;
  transition: all 0.3s;
  justify-content: center;
  background: var(--primary-two);
}
.about1-content__button .rr-btn-button.btn-purple3 .icon:hover {
  background: var(--primary-two);
}

.about2-items__title {
  color: #000000;
  font-family: var(--font_Playfair);
  font-weight: 700;
  font-style: Bold;
  font-size: 60px;
  line-height: 68px;
  letter-spacing: -1px;
  text-align: center;
  margin-bottom: 40px;
}
@media only screen and (max-width: 1919px) {
  .about2-items__title {
    font-size: 55px;
  }
}
@media only screen and (max-width: 1399px) {
  .about2-items__title {
    font-size: 50px;
    margin-bottom: 30px;
  }
}
@media only screen and (max-width: 1199px) {
  .about2-items__title {
    font-size: 40px;
  }
}
@media only screen and (max-width: 991px) {
  .about2-items__title {
    font-size: 35px;
  }
}
@media only screen and (max-width: 767px) {
  .about2-items__title {
    font-size: 30px;
    margin-bottom: 20px;
  }
}
@media (max-width: 575px) {
  .about2-items__title {
    font-size: 25px;
    line-height: 58px;
    margin-bottom: 20px;
  }
}
.about2-items__hand-right {
  display: flex;
  justify-content: center;
  margin-bottom: 10px;
}
.about2-items__hand-right img {
  width: 312px;
  height: 72px;
}
.about2-items__info {
  display: flex;
  gap: 5px;
  align-items: center;
  justify-content: center;
}
.about2-items__info-title {
  color: #0C0C0C;
  font-family: var(--font_Playfair);
  font-weight: 500;
  font-style: Medium;
  font-size: 22px;
  line-height: 28px;
  letter-spacing: 0px;
}
.about2-items__info-subtitle {
  color: #5B5B5B;
  font-family: Lato;
  font-weight: 400;
  font-style: Regular;
  font-size: 16px;
  line-height: 26px;
  letter-spacing: 0px;
  text-align: center;
}

/* === Header Section (Home 01) === */
.header-1__wrapper {
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.header-1__right-btn a {
  border-radius: 90px;
  border: 1px solid #e3e3e3;
  background: rgba(241, 241, 241, 0);
  color: var(--primary);
  font-family: Kanit;
  font-size: 16px;
  font-weight: 500;
  line-height: 26px;
  padding: 20px 8px 20px 20px;
}

.intro1 {
  background-color: #FAF9F6;
  position: relative;
  z-index: 1;
  padding: 10px 0 0;
}
.intro1__bg-text {
  position: absolute;
  top: 15%;
  left: 50%;
  transform: translate3d(-50%, -15%, 0) scale(1);
  font-size: 200px;
  font-family: var(--font_Playfair);
  font-weight: 900;
  color: rgba(0, 0, 0, 0.03);
  z-index: -1;
  white-space: nowrap;
  pointer-events: none;
  transition: transform 0.75s cubic-bezier(0.22, 1, 0.36, 1), opacity 0.55s ease, letter-spacing 0.55s ease;
  will-change: transform, opacity;
}
.intro1__bg-text.is-transitioning {
  opacity: 0.38;
  letter-spacing: 0.06em;
}
@media only screen and (max-width: 1399px) {
  .intro1__bg-text {
    font-size: 180px;
  }
}
@media only screen and (max-width: 1199px) {
  .intro1__bg-text {
    font-size: 150px;
  }
}
@media only screen and (max-width: 991px) {
  .intro1__bg-text {
    font-size: 100px;
    top: 30%;
  }
}
@media only screen and (max-width: 767px) {
  .intro1__bg-text {
    font-size: 60px;
  }
}
.intro1__content-subtext {
  display: inline-block;
  font-size: 18px;
  font-weight: 500;
  color: var(--primary-two);
  margin-bottom: 15px;
}
.intro1__content-title {
  font-size: 48px;
  line-height: 1.1;
  margin-bottom: 25px;
}
@media only screen and (max-width: 1399px) {
  .intro1__content-title {
    font-size: 40px;
  }
}
@media only screen and (max-width: 991px) {
  .intro1__content-title {
    font-size: 35px;
  }
}
@media only screen and (max-width: 767px) {
  .intro1__content-title {
    font-size: 32px;
  }
}
.intro1__content-desc {
  font-size: 16px;
  color: var(--text-color-two);
  line-height: 1.6;
  margin-bottom: 40px;
  max-width: 450px;
}
.intro1__thumb {
  position: relative;
  text-align: center;
  margin-left: -30%;
  margin-right: -30%;
}
.intro1__video-card {
  background-color: var(--white);
  border-radius: 20px;
  overflow: hidden;
  box-shadow: 0 6px 18px rgba(16, 24, 40, 0.06);
  padding: 15px;
  max-width: 374px;
  margin-left: auto;
}
@media only screen and (max-width: 991px) {
  .intro1__video-card {
    margin: 30px auto 0;
  }
}
.intro1__video-thumb {
  position: relative;
  border-radius: 15px;
  overflow: hidden;
  margin-bottom: 20px;
}
.intro1__video-thumb img {
  width: 100%;
  display: block;
}
.intro1__video-thumb .video-btn {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 50px;
  height: 50px;
  background-color: var(--primary-two);
  color: var(--white);
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  font-size: 14px;
}
.intro1__video-thumb .video-btn:hover {
  background-color: var(--black);
}
.intro1__video-content p {
  color: var(--text-color-two);
  font-family: var(--font_Lato);
  font-weight: 400;
  font-style: Italic;
  font-size: 18px;
  line-height: 28px;
  letter-spacing: 0px;
  text-align: center;
}
.intro1__shape1 {
  position: absolute;
  top: -16%;
  left: 0%;
  z-index: -1;
}
.intro1__shape2 {
  position: absolute;
  bottom: 0%;
  left: 0%;
  z-index: -1;
}
.intro1__shape3 {
  position: absolute;
  bottom: 15%;
  right: 0%;
  z-index: -1;
}

@keyframes rotate {
  from {
    transform: rotate(0deg);
  }
  to {
    transform: rotate(360deg);
  }
}
@keyframes moveX {
  from {
    transform: translateX(0);
  }
  to {
    transform: translateX(20px);
  }
}
/* === Category Section (Home 01) === */
.category1-item {
  position: relative;
}
.category1-item__thumb {
  position: relative;
}
.category1-item__thumb img {
  border-radius: 20px;
  width: 100%;
}
@media only screen and (max-width: 991px) {
  .category1-item__thumb img {
    border-radius: 15px;
  }
}
@media (max-width: 575px) {
  .category1-item__thumb img {
    border-radius: 12px;
  }
}
.category1-item__content1 {
  position: absolute;
  right: 24px;
  top: 24px;
}
@media only screen and (max-width: 991px) {
  .category1-item__content1 {
    right: 15px;
    top: 15px;
  }
}
@media (max-width: 575px) {
  .category1-item__content1 {
    right: 10px;
    top: 10px;
  }
}
.category1-item__content1-decs {
  color: var(--text-color-three);
  font-family: var(--font_Lato);
  font-weight: 400;
  font-style: Regular;
  font-size: 16px;
  line-height: 26px;
  letter-spacing: 0px;
}
@media only screen and (max-width: 991px) {
  .category1-item__content1-decs {
    font-size: 14px;
    line-height: 22px;
  }
}
@media (max-width: 575px) {
  .category1-item__content1-decs {
    font-size: 12px;
    line-height: 20px;
  }
}
.category1-item__content1-title {
  color: var(--text-color-one);
  font-family: var(--font_Playfair);
  font-weight: 700;
  font-style: Bold;
  font-size: 32px;
  line-height: 40px;
  letter-spacing: 0px;
  text-transform: capitalize;
}
@media only screen and (max-width: 1199px) {
  .category1-item__content1-title {
    font-size: 28px;
  }
}
@media (max-width: 575px) {
  .category1-item__content1-title {
    font-size: 26px;
  }
}
.category1-item__content1-title a {
  display: block;
  color: var(--text-color-one);
}
.category1-item__content2 {

  width: 100%;
  text-align: center;
  margin-top: 25px;
}
@media only screen and (max-width: 1399px) {
  .category1-item__content2 {
    width: 100%;
    text-align: center;
    margin-top: 25px;
  }
}
@media only screen and (max-width: 1199px) {
  .category1-item__content2 {
 
    width: 100%;
    text-align: center;
    margin-top: 25px;
  }
}
@media only screen and (max-width: 991px) {
  .category1-item__content2 {
    
    width: 100%;
    text-align: center;
    margin-top: 5px;
  }
}
@media only screen and (max-width: 767px) {
  .category1-item__content2 {
    
    width: 100%;
    text-align: center;
    margin-top: 25px;
  }
}
@media (max-width: 575px) {
  .category1-item__content2 {
    
    width: auto;
  }
}
.category1-item__content2-decs {
  color: var(--text-color-three);
  font-family: var(--font_Lato);
  font-weight: 400;
  font-style: Regular;
  font-size: 16px;
  line-height: 26px;
  letter-spacing: 0px;
}
.category1-item__content2-title {
  color: var(--text-color-one);
  font-family: var(--font_Playfair);
  font-weight: 700;
  font-style: Bold;
  font-size: 32px;
  line-height: 40px;
  letter-spacing: 0px;
  text-transform: capitalize;
  margin-bottom: 24px;
  font-size: clamp(16px, 2.2vw, 32px);
}
.category1-item__content2-title a {
  display: block;
  color: var(--text-color-one);
}
.category1-item__offer {
  position: absolute;
  left: 24px;
  top: 24px;
  width: 74px;
  height: 74px;
  padding: 6px 9px;
  background: var(--text-color-one);
  color: var(--white);
  font-family: var(--font_Playfair);
  font-weight: 700;
  font-style: Bold;
  font-size: 19px;
  line-height: 27px;
  letter-spacing: 0px;
  text-align: center;
  text-transform: capitalize;
  border-radius: 36px;
}
@media only screen and (max-width: 1199px) {
  .category1-item__offer {
    width: 64px;
    height: 63px;
    padding: 6px 9px;
    font-size: 15px;
    line-height: 24px;
  }
}
@media (max-width: 575px) {
  .category1-item__offer {
    left: 10px;
    width: 60px;
    height: 60px;
    padding: 6px 9px;
    font-size: 14px;
    line-height: 24px;
  }
}
.category1-item__content3 {
  position: absolute;
  left: 24px;
  top: 24px;
}
@media only screen and (max-width: 991px) {
  .category1-item__content3 {
    left: 15px;
    top: 15px;
  }
}
@media (max-width: 575px) {
  .category1-item__content3 {
    left: 10px;
    top: 10px;
  }
}
.category1-item__content3-decs {
  color: var(--text-color-three);
  font-family: var(--font_Lato);
  font-weight: 400;
  font-style: Regular;
  font-size: 16px;
  line-height: 26px;
  letter-spacing: 0px;
}
@media only screen and (max-width: 991px) {
  .category1-item__content3-decs {
    font-size: 14px;
    line-height: 22px;
  }
}
@media (max-width: 575px) {
  .category1-item__content3-decs {
    font-size: 12px;
    line-height: 20px;
  }
}
.category1-item__content3-title {
  color: var(--text-color-one);
  font-family: var(--font_Playfair);
  font-weight: 700;
  font-style: Bold;
  font-size: 32px;
  line-height: 40px;
  letter-spacing: 0px;
  text-transform: capitalize;
}
@media only screen and (max-width: 1199px) {
  .category1-item__content3-title {
    font-size: 28px;
  }
}
@media (max-width: 575px) {
  .category1-item__content3-title {
    font-size: 26px;
  }
}
.category1-item__content3-title a {
  display: block;
  color: var(--text-color-one);
}

/* === Trending-product Section (Home 01) === */
.trending-product__button {
  margin-bottom: 40px;
}
@media only screen and (max-width: 1399px) {
  .trending-product__button {
    margin-right: auto;
    margin-bottom: 40px;
    margin-top: -55px;
  }
}
@media only screen and (max-width: 1199px) {
  .trending-product__button {
    margin-right: auto;
    margin-bottom: 35px;
    margin-top: -66px;
  }
}
@media only screen and (max-width: 991px) {
  .trending-product__button {
    margin-right: auto;
    margin-bottom: 25px;
  }
}
@media (max-width: 575px) {
  .trending-product__button {
    margin-bottom: 30px;
  }
}
.trending-product-card {
  position: relative;
  width: 100%;
  height: 100%;
  display: flex;
  flex-direction: column;
  border-radius: 16px;
  overflow: hidden;
}
.trending-product-wrapper .row > [class*="col-"] {
  display: flex;
}
.trending-product-card__thumb {
  position: relative;
  height: 280px;
  flex-shrink: 0;
}
.trending-product-card__thumb img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}
.trending-product-card__thumb-offer {
  position: absolute;
  top: 6%;
  left: 7%;
  padding: 5px 15px;
  color: var(--white);
  background: var(--text-color-one);
  border-radius: 23px;
  font-family: var(--font_Lato);
  font-weight: 400;
  font-style: Regular;
  font-size: 14px;
  line-height: 22px;
  letter-spacing: 0px;
}
@media only screen and (max-width: 991px) {
  .trending-product-card__thumb-offer {
    top: 5%;
    left: 5%;
    padding: 4px 12px;
    font-size: 12px;
    line-height: 20px;
  }
}
@media (max-width: 575px) {
  .trending-product-card__thumb-offer {
    top: 4%;
    left: 4%;
    padding: 3px 10px;
    font-size: 11px;
    line-height: 18px;
  }
}
.trending-product-card__thumb-offer.style {
  color: var(--text-color-one);
  background: var(--yellow);
}
.trending-product-card__thumb-btn-wrapper {
  opacity: 0;
  visibility: hidden;
  position: absolute;
  bottom: -20px;
  left: 50%;
  display: flex;
  align-items: center;
  width: 100%;
  transform: translateX(-50%);
  transition: all 0.3s linear;
  -webkit-transform: translateX(-50%);
  -moz-transform: translateX(-50%);
  -ms-transform: translateX(-50%);
  -o-transform: translateX(-50%);
  -webkit-transition: all 0.3s linear;
  -moz-transition: all 0.3s linear;
  -ms-transition: all 0.3s linear;
  -o-transition: all 0.3s linear;
}
.trending-product-card__thumb-btn-wrapper .rr-btn-button4 {
  padding: 8px 17px;
  width: 100%;
  font-size: 16px;
  font-style: normal;
  font-weight: 500;
  line-height: 24px;
  transition: all 0.3s linear;
}
@media only screen and (max-width: 991px) {
  .trending-product-card__thumb-btn-wrapper .rr-btn-button4 {
    padding: 7px 14px;
    font-size: 14px;
    line-height: 22px;
  }
}
@media (max-width: 575px) {
  .trending-product-card__thumb-btn-wrapper .rr-btn-button4 {
    padding: 6px 12px;
    font-size: 13px;
    line-height: 20px;
  }
}
.trending-product-card__content {
  padding: 16px;
  background: var(--primary);
  border-bottom-left-radius: 16px;
  border-bottom-right-radius: 16px;
  flex: 1;
  display: flex;
  flex-direction: column;
}
@media only screen and (max-width: 991px) {
  .trending-product-card__content {
    padding: 14px;
  }
}
@media (max-width: 575px) {
  .trending-product-card__content {
    padding: 12px;
  }
}
.trending-product-card__content-title {
  color: var(--text-color-one);
  font-family: var(--font_Playfair);
  font-weight: 500;
  font-style: Medium;
  font-size: 18px;
  line-height: 24px;
  letter-spacing: 0px;
  text-transform: capitalize;
  margin-bottom: 8px;
  min-height: 48px;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}
@media only screen and (max-width: 991px) {
  .trending-product-card__content-title {
    font-size: 16px;
    line-height: 22px;
  }
}
@media (max-width: 575px) {
  .trending-product-card__content-title {
    font-size: 14px;
    line-height: 20px;
    margin-bottom: 6px;
  }
}
.trending-product-card__content-list {
  display: flex;
  gap: 7px;
  align-items: center;
  list-style: none;
  margin-bottom: 8px;
}
.trending-product-card__content-list-start i {
  color: var(--yellow);
}
.trending-product-card__content-list-point {
  color: var(--text-color-one);
  font-family: var(--font_Lato);
  font-weight: 400;
  font-style: Regular;
  font-size: 14px;
  line-height: 22px;
  letter-spacing: 0px;
}
.trending-product-card__content-list-text {
  color: var(--text-color6);
  font-family: var(--font_Lato);
  font-weight: 400;
  font-style: Regular;
  font-size: 14px;
  line-height: 22px;
  letter-spacing: 0px;
}
.trending-product-card__content-dollar {
  color: var(--text-color-one);
  font-family: var(--font_Playfair);
  font-weight: 700;
  font-style: Bold;
  font-size: 20px;
  line-height: 28px;
  letter-spacing: 0px;
  text-transform: capitalize;
  margin-top: auto;
}
.trending-product-card:hover .trending-product-card__thumb-btn-wrapper {
  opacity: 1;
  visibility: visible;
  bottom: 10px;
  transition: all 0.4s ease-in-out;
}
@media only screen and (max-width: 991px) {
  .trending-product-card__thumb {
    height: 240px;
  }
  .trending-product-card:hover .trending-product-card__thumb-btn-wrapper {
    bottom: 8px;
  }
}
@media (max-width: 575px) {
  .trending-product-card__thumb {
    height: 210px;
  }
}
@media (max-width: 575px) {
  .trending-product-card:hover .trending-product-card__thumb-btn-wrapper {
    bottom: 5px;
  }
}

/* === Offer Section (Home 01) === */
.offer1-wrapper {
  padding: 56px 0px 70px;
  border-radius: 20px;
}
@media only screen and (max-width: 1199px) {
  .offer1-wrapper {
    padding: 50px 0px 60px;
  }
}
@media only screen and (max-width: 991px) {
  .offer1-wrapper {
    padding: 40px 20px 50px;
    border-radius: 15px;
  }
}
@media only screen and (max-width: 767px) {
  .offer1-wrapper {
    padding: 35px 15px 45px;
  }
}
@media (max-width: 575px) {
  .offer1-wrapper {
    padding: 30px 10px 40px;
    border-radius: 10px;
  }
}
.offer1__content {
  width: 565px;
}
@media only screen and (max-width: 1399px) {
  .offer1__content {
    width: 500px;
  }
}
@media only screen and (max-width: 1199px) {
  .offer1__content {
    width: 480px;
  }
}
@media only screen and (max-width: 991px) {
  .offer1__content {
    width: 100%;
    max-width: 450px;
  }
}
@media only screen and (max-width: 767px) {
  .offer1__content {
    width: 100%;
    max-width: 100%;
  }
}
@media (max-width: 575px) {
  .offer1__content {
    width: 100%;
  }
}
.offer1__content-text {
  color: var(--black);
  font-family: var(--font_Playfair);
  font-weight: 500;
  font-style: Medium;
  display: block;
  font-size: 18px;
  line-height: 24px;
  letter-spacing: 0px;
  text-transform: capitalize;
  margin-bottom: 10px;
}
@media only screen and (max-width: 991px) {
  .offer1__content-text {
    font-size: 16px;
  }
}
.offer1__content-title {
  color: var(--black);
  font-family: var(--font_Playfair);
  font-weight: 700;
  font-style: Bold;
  font-size: 40px;
  line-height: 48px;
  letter-spacing: -0.5px;
  margin-bottom: 16px;
}
@media only screen and (max-width: 991px) {
  .offer1__content-title {
    font-size: 28px;
    margin-bottom: 14px;
  }
}
@media (max-width: 575px) {
  .offer1__content-title {
    font-size: 25px;
    margin-bottom: 14px;
  }
}
.offer1__content-title .subtitle {
  color: var(--primary-two);
}
.offer1__content-subtext {
  color: var(--black);
  font-family: var(--font_Lato);
  font-weight: 400;
  font-style: Regular;
  font-size: 16px;
  line-height: 26px;
  letter-spacing: 0px;
  margin-bottom: 38px;
}
@media only screen and (max-width: 991px) {
  .offer1__content-subtext {
    font-size: 16px;
    margin-bottom: 28px;
  }
}

/* === Best-Selling-Products Section (Home 01) === */
.best-selling-product__button {
  margin-bottom: 21px;
  margin-top: 20px;
}
@media only screen and (max-width: 1399px) {
  .best-selling-product__button {
    margin-right: auto;
    margin-bottom: 40px;
    margin-top: -55px;
  }
}
@media only screen and (max-width: 1199px) {
  .best-selling-product__button {
    margin-right: auto;
    margin-bottom: 35px;
    margin-top: -66px;
  }
}
@media only screen and (max-width: 991px) {
  .best-selling-product__button {
    margin-right: auto;
    margin-bottom: 25px;
    margin-top: -98px;
  }
}
@media (max-width: 575px) {
  .best-selling-product__button {
    margin-bottom: 30px;
  }
}
.best-selling-product-tab-header {
  margin-bottom: 26px;
  position: relative;
}
.best-selling-product-tab-header .nav {
  display: flex;
  align-items: center;
  gap: 10px;
  border: none !important;
}
@media (max-width: 575px) {
  .best-selling-product-tab-header .nav {
    gap: 6px;
  }
}
.best-selling-product-tab-header .nav:focus {
  border: none !important;
  outline: none !important;
  box-shadow: none !important;
}
.best-selling-product-tab-header .nav .nav-item a {
  position: relative;
  text-align: center;
  padding: 6px 21px;
  color: var(--text-color-one);
  font-family: var(--font_Playfair);
  font-weight: 500;
  font-style: Medium;
  font-size: 20px;
  line-height: 20px;
  letter-spacing: 0px;
  text-align: center;
  border: 1px solid var(--text-color-four);
  border-radius: 36px;
  background: transparent;
  display: inline-block;
  text-transform: capitalize;
  transition: all 0.3s ease-in-out;
}
@media only screen and (max-width: 991px) {
  .best-selling-product-tab-header .nav .nav-item a {
    font-size: 18px;
  }
}
@media (max-width: 575px) {
  .best-selling-product-tab-header .nav .nav-item a {
    font-size: 17px;
  }
}
.best-selling-product-tab-header .nav .nav-item a.active {
  text-align: center;
  text-transform: capitalize;
  background: var(--primary-two);
  color: var(--white);
  font-family: var(--font_Playfair);
  text-align: center;
}
.best-selling-product-card__thumb1 img {
  border-top-left-radius: 16px;
  border-top-right-radius: 16px;
  width: 100%;
}
.best-selling-product-card__thumb img {
  height: 240px;
  border-top-left-radius: 16px;
  border-top-right-radius: 16px;
  width: 100%;
}
.best-selling-product-card__content1 {
  padding: 14px 24px 30px;
  background: var(--white);
  border-bottom-left-radius: 16px;
  border-bottom-right-radius: 16px;
}
@media (max-width: 575px) {
  .best-selling-product-card__content1 {
    padding: 14px 20px 25px;
  }
}
.best-selling-product-card__content1-title {
  font-weight: 700;
  font-style: Bold;
  font-size: 32px;
  line-height: 40px;
  letter-spacing: 0px;
  text-transform: capitalize;
  margin-bottom: 8px;
}
@media only screen and (max-width: 1199px) {
  .best-selling-product-card__content1-title {
    font-size: 26px;
  }
}
@media only screen and (max-width: 767px) {
  .best-selling-product-card__content1-title {
    font-size: 25px;
  }
}
@media (max-width: 575px) {
  .best-selling-product-card__content1-title {
    font-size: 18px;
  }
}
.best-selling-product-card__content1-list {
  display: flex;
  gap: 7px;
  align-items: center;
  list-style: none;
  margin-bottom: 8px;
}
.best-selling-product-card__content1-list-start i {
  color: #F2C94C;
}
.best-selling-product-card__content1-list-point {
  color: var(--text-color-one);
  font-family: var(--font_Lato);
  font-weight: 400;
  font-style: Regular;
  font-size: 16px;
  line-height: 26px;
  letter-spacing: 0px;
}
@media only screen and (max-width: 991px) {
  .best-selling-product-card__content1-list-point {
    font-size: 15px;
    line-height: 24px;
  }
}
@media (max-width: 575px) {
  .best-selling-product-card__content1-list-point {
    font-size: 14px;
    line-height: 22px;
  }
}
.best-selling-product-card__content1-list-text {
  color: var(--text-color6);
  font-family: var(--font_Lato);
  font-weight: 400;
  font-style: Regular;
  font-size: 16px;
  line-height: 26px;
  letter-spacing: 0px;
}
@media only screen and (max-width: 991px) {
  .best-selling-product-card__content1-list-text {
    font-size: 15px;
    line-height: 24px;
  }
}
@media (max-width: 575px) {
  .best-selling-product-card__content1-list-text {
    font-size: 14px;
    line-height: 22px;
  }
}
.best-selling-product-card__content1-dollar {
  color: var(--text-color-one);
  font-family: var(--font_Playfair);
  font-weight: 700;
  font-style: Bold;
  font-size: 24px;
  line-height: 30px;
  letter-spacing: 0px;
  text-transform: capitalize;
}
.best-selling-product-card__content2 {
  padding: 14px 24px 30px;
  background: var(--white);
  border-bottom-left-radius: 16px;
  border-bottom-right-radius: 16px;
}
@media only screen and (max-width: 991px) {
  .best-selling-product-card__content2 {
    padding: 12px 20px 25px;
  }
}
@media (max-width: 575px) {
  .best-selling-product-card__content2 {
    padding: 12px 16px 20px;
  }
}
.best-selling-product-card__content2-title {
  font-weight: 500;
  font-style: Medium;
  font-size: 18px;
  line-height: 24px;
  letter-spacing: 0px;
  text-transform: capitalize;
  margin-bottom: 8px;
}
@media only screen and (max-width: 991px) {
  .best-selling-product-card__content2-title {
    font-size: 16px;
    line-height: 22px;
  }
}
@media (max-width: 575px) {
  .best-selling-product-card__content2-title {
    font-size: 14px;
    line-height: 20px;
    margin-bottom: 6px;
  }
}
.best-selling-product-card__content2-list {
  display: flex;
  gap: 7px;
  align-items: center;
  list-style: none;
  margin-bottom: 8px;
}
.best-selling-product-card__content2-list-start i {
  color: #F2C94C;
}
.best-selling-product-card__content2-list-point {
  color: var(--text-color-one);
  font-family: var(--font_Lato);
  font-weight: 400;
  font-style: Regular;
  font-size: 14px;
  line-height: 22px;
  letter-spacing: 0px;
}
.best-selling-product-card__content2-list-text {
  color: var(--text-color6);
  font-family: var(--font_Lato);
  font-weight: 400;
  font-style: Regular;
  font-size: 14px;
  line-height: 22px;
  letter-spacing: 0px;
}
.best-selling-product-card__content2-dollar {
  color: var(--text-color-one);
  font-family: var(--font_Playfair);
  font-weight: 700;
  font-style: Bold;
  font-size: 20px;
  line-height: 28px;
  letter-spacing: 0px;
  text-transform: capitalize;
}
@media only screen and (max-width: 991px) {
  .best-selling-product-card__content2-dollar {
    font-size: 18px;
    line-height: 26px;
  }
}
@media (max-width: 575px) {
  .best-selling-product-card__content2-dollar {
    font-size: 16px;
    line-height: 24px;
  }
}

/* === Cta Section (Home 01) === */
.cta1 {
  position: relative;
}
.cta1::before {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  width: 100%;
  height: 100%;
  content: "";
  background: var(--primary);
  z-index: -1;
  top: -50%;
}
.cta1-card {
  padding: 40px 32px;
  box-shadow: 0px 0px 12px 1px rgba(238, 45, 122, 0.0784313725);
  background: var(--white);
  border-radius: 16px;
}
@media only screen and (max-width: 1199px) {
  .cta1-card {
    padding: 35px 28px;
  }
}
@media only screen and (max-width: 991px) {
  .cta1-card {
    padding: 32px 24px;
    border-radius: 12px;
  }
}
@media (max-width: 575px) {
  .cta1-card {
    padding: 30px 20px;
    border-radius: 10px;
  }
}
.cta1-card__icon {
  display: flex;
  align-items: center;
  text-align: center;
  justify-content: center;
  border-radius: 16px;
  background: var(--text-color-one);
  width: 72px;
  height: 72px;
  line-height: 72px;
  border-radius: 50%;
  padding: 18px;
}
@media only screen and (max-width: 991px) {
  .cta1-card__icon {
    width: 64px;
    height: 64px;
    line-height: 64px;
    padding: 16px;
  }
}
@media (max-width: 575px) {
  .cta1-card__icon {
    width: 56px;
    height: 56px;
    line-height: 56px;
    padding: 14px;
  }
}
.cta1-card__icon {
  display: flex;
  text-align: center;
  justify-items: center;
  justify-content: center;
  align-items: center;
  margin-left: auto;
  margin-right: auto;
  transition: all 0.3s ease-in-out;
  margin-bottom: 17px;
}
.cta1-card__icon:hover {
  background: var(--primary-two);
}
.cta1-card__title {
  font-family: var(--font_Playfair);
  font-weight: 700;
  font-style: Bold;
  font-size: 24px;
  line-height: 30px;
  letter-spacing: 0px;
  text-align: center;
  text-transform: capitalize;
  margin-bottom: 9px;
}
@media only screen and (max-width: 991px) {
  .cta1-card__title {
    font-size: 22px;
    line-height: 28px;
    margin-bottom: 8px;
  }
}
@media (max-width: 575px) {
  .cta1-card__title {
    font-size: 20px;
    line-height: 26px;
    margin-bottom: 7px;
  }
}
.cta1-card__subtitle {
  color: var(--text-color-two);
  font-family: var(--font_Lato);
  font-weight: 400;
  font-style: Regular;
  font-size: 16px;
  line-height: 26px;
  letter-spacing: 0px;
  text-align: center;
}
@media only screen and (max-width: 991px) {
  .cta1-card__subtitle {
    font-size: 15px;
    line-height: 24px;
  }
}
@media (max-width: 575px) {
  .cta1-card__subtitle {
    font-size: 14px;
    line-height: 22px;
  }
}

/* === Testimonial Section (Home 01) === */
/* === Blog Section (Home 01) === */
.blog1-card__thumb img {
  border-top-left-radius: 20px;
  border-top-right-radius: 20px;
  width: 100%;
}
.blog1-card__content {
  padding: 25px 24px 28px;
  background: var(--primary);
  border-bottom-left-radius: 16px;
  border-bottom-right-radius: 16px;
}
@media only screen and (max-width: 991px) {
  .blog1-card__content {
    padding: 20px 20px 24px;
  }
}
@media (max-width: 575px) {
  .blog1-card__content {
    padding: 18px 16px 20px;
  }
}
.blog1-card__content-tipsitems {
  padding: 7px 15px;
  background: var(--thardary);
  border-radius: 88px;
  color: var(--text-color-one);
  font-family: var(--font_Playfair);
  font-weight: 500;
  font-style: Medium;
  font-size: 16px;
  line-height: 22px;
  letter-spacing: 0px;
  text-align: center;
}
@media only screen and (max-width: 991px) {
  .blog1-card__content-tipsitems {
    padding: 6px 12px;
    font-size: 14px;
    line-height: 20px;
  }
}
@media (max-width: 575px) {
  .blog1-card__content-tipsitems {
    padding: 5px 10px;
    font-size: 12px;
    line-height: 18px;
  }
}
.blog1-card__content-title {
  margin-top: 20px;
}
.blog1-card__content-title a {
  font-family: var(--font_Playfair);
  font-weight: 700;
  font-style: Bold;
  font-size: 24px;
  line-height: 30%;
  letter-spacing: 0px;
  text-transform: capitalize;
  transition: all 0.4s ease-in-out;
}
@media only screen and (max-width: 991px) {
  .blog1-card__content-title a {
    font-size: 21px;
  }
}
@media (max-width: 575px) {
  .blog1-card__content-title a {
    font-size: 17px;
  }
}
.blog1-card__content-title a:hover {
  color: var(--primary-two);
}
.blog1-card__content-meta {
  display: flex;
  align-items: center;
  gap: 32px;
  margin-top: 18px;
}
@media only screen and (max-width: 991px) {
  .blog1-card__content-meta {
    gap: 20px;
    margin-top: 15px;
  }
}
@media only screen and (max-width: 767px) {
  .blog1-card__content-meta {
    gap: 15px;
    flex-wrap: wrap;
  }
}
@media (max-width: 575px) {
  .blog1-card__content-meta {
    gap: 10px;
    margin-top: 12px;
    flex-wrap: wrap;
  }
}
.blog1-card__content-meta-item {
  color: var(--text-color-two);
  font-family: var(--font_Lato);
  font-weight: 400;
  font-style: Regular;
  font-size: 16px;
  line-height: 26px;
  letter-spacing: 0px;
  text-align: center;
  display: flex;
  align-items: center;
  gap: 6px;
}
@media (max-width: 575px) {
  .blog1-card__content-meta-item {
    gap: 4px;
  }
}

/* === Intro Section (Home 02) === */
.intro2 {
  background-color: #F0F4F9;
  position: relative;
  z-index: 1;
  padding: 100px 0 0;
  overflow: hidden;
}
@media only screen and (max-width: 991px) {
  .intro2 {
    padding: 60px 0 0;
  }
}
.intro2__shape1 {
  position: absolute;
  top: 0;
  left: 0;
  z-index: -1;
}
.intro2__shape2 {
  position: absolute;
  bottom: 0;
  right: 0;
  z-index: -1;
}
.intro2__shape3 {
  position: absolute;
  bottom: 0;
  left: 0;
  z-index: -1;
}
.intro2__shape4 {
  position: absolute;
  top: 0;
  left: 40%;
  z-index: -1;
}
.intro2__shape5 {
  position: absolute;
  top: 15%;
  right: 0;
  z-index: -1;
}
.intro2__content-subtext {
  font-family: var(--font_Playfair);
  color: var(--primary-two);
  font-size: 16px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1px;
  display: block;
  margin-bottom: 4px;
}
.intro2__content-title {
  font-family: var(--font_Playfair);
  font-weight: 700;
  font-style: Bold;
  font-size: clamp(36px, 6vw, 76px);
  line-height: 1.2;
  letter-spacing: -1px;
  margin-bottom: 16px;
}
.intro2__content-desc {
  font-family: var(--font_Lato);
  color: #5B5B5B;
  font-weight: 400;
  font-size: 16px;
  line-height: 26px;
  letter-spacing: 0px;
  margin-bottom: 48px;
  padding-right: 100px;
}
@media only screen and (max-width: 1399px) {
  .intro2__content-desc {
    padding-right: 0;
  }
}
.intro2__content-btn .rr-btn-button {
  border-radius: 30px;
  padding: 12px 30px;
  background: var(--primary-two);
  color: #FFFFFF;
  border: none;
}
.intro2__content-btn .rr-btn-button:hover {
  background: #0C0C0C;
}
.intro2__content-btn .rr-btn-button .icon {
  background: #FFFFFF;
  color: var(--primary-two);
}
.intro2__thumb {
  text-align: center;
  position: relative;
  z-index: 1;
}
.intro2__thumb-bg1 {
  position: absolute;
  top: -15%;
  left: 40%;
  z-index: -1;
}
@media only screen and (max-width: 1399px) {
  .intro2__thumb-bg1 {
    top: -25%;
  }
}
.intro2__thumb-bg2 {
  position: absolute;
  bottom: 25%;
  left: 23%;
  z-index: -1;
}
.intro2__thumb-inner {
  position: relative;
  display: inline-block;
}
.intro2__thumb img {
  max-width: 100%;
  height: auto;
}
.intro2__rating {
  position: relative;
  text-align: center;
}
@media only screen and (max-width: 1199px) {
  .intro2__rating {
    display: none;
  }
}
.intro2__rating-badge {
  position: relative;
  margin-top: -250px;
  margin-bottom: 168px;
  margin-left: 100px;
}
@media only screen and (max-width: 1199px) {
  .intro2__rating-badge {
    margin-left: 0;
    margin-top: 0;
    margin-bottom: 100px;
  }
}
.intro2__rating-content {
  max-width: 195px;
}
.intro2__rating-score {
  font-family: var(--font_Playfair);
  font-weight: 700;
  color: #0C0C0C;
  margin-bottom: 10px;
  font-size: clamp(2.5rem, 6vw, 5.25rem);
  line-height: 1.2;
  letter-spacing: -1.5px;
}
.intro2__rating-text {
  position: relative;
  font-family: var(--font_Lato);
  color: #707070;
  padding-bottom: 20px;
  margin-bottom: 20px;
  text-align: start;
}
.intro2__rating-text:before {
  position: absolute;
  content: "";
  bottom: 0px;
  left: 0;
  width: 48px;
  height: 2px;
  background: var(--primary-two);
  border-radius: 2px;
}
.intro2__rating-users {
  display: flex;
  align-items: center;
  justify-content: center;
}
.intro2__rating-users .user-avatar {
  width: 50px;
  height: 50px;
  border-radius: 50%;
  border: 2px solid #FFFFFF;
  margin-left: -20px;
  object-fit: cover;
}
.intro2__rating-users .user-avatar:first-child {
  margin-left: 0;
}
.intro2__rating-users .add-btn {
  width: 50px;
  height: 50px;
  border-radius: 50%;
  background: var(--primary-two);
  color: #FFFFFF;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-left: -15px;
  border: 2px solid #FFFFFF;
  z-index: 2;
}
.intro2__rating-users .add-btn:hover {
  background: #0C0C0C;
}
.intro2__nav {
  margin-top: 40px;
}
.intro2__nav-btn {
  background: #FFFFFF;
  border: none;
  padding: 10px 25px;
  border-radius: 30px;
  font-family: var(--font_Playfair);
  font-weight: 700;
  color: #0C0C0C;
  display: inline-flex;
  align-items: center;
  gap: 10px;
  transition: all 0.3s;
  cursor: pointer;
  margin: 0 5px;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
}
.intro2__nav-btn:hover {
  background: #0C0C0C;
  color: #FFFFFF;
}
.intro2__nav-btn.next {
  background: var(--primary-two);
  color: #FFFFFF;
}
.intro2__nav-btn.next:hover {
  background: #0C0C0C;
}

/* === Category Section (Home 02) === */
.category2-item {
  padding: 16px 40px 24px;
  border: 1px solid var(--text-color-four);
  border-radius: 16px;
}
@media only screen and (max-width: 1199px) {
  .category2-item {
    padding: 16px 30px 24px;
  }
}
.category2-item__thumb {
  margin-bottom: 9px;
}
.category2-item__thumb img {
  width: 100%;
}
.category2-item__content-title {
  color: var(--text-color-one);
  font-family: var(--font_Playfair);
  font-weight: 700;
  font-style: Bold;
  font-size: 20px;
  line-height: 28px;
  letter-spacing: 0px;
  text-align: center;
  text-transform: capitalize;
}
@media only screen and (max-width: 1199px) {
  .category2-item__content-title {
    font-size: 18px;
  }
}

/* === Featured-product Section (Home 02) === */
.featured-product__button {
  margin-bottom: 40px;
}
@media only screen and (max-width: 1399px) {
  .featured-product__button {
    margin-right: auto;
    margin-bottom: 40px;
    margin-top: -55px;
  }
}
@media only screen and (max-width: 1199px) {
  .featured-product__button {
    margin-right: auto;
    margin-bottom: 35px;
    margin-top: -66px;
  }
}
@media only screen and (max-width: 991px) {
  .featured-product__button {
    margin-right: auto;
    margin-bottom: 25px;
  }
}
@media (max-width: 575px) {
  .featured-product__button {
    margin-bottom: 30px;
  }
}
.featured-product-card {
  position: relative;
}
.featured-product-card__thumb {
  position: relative;
}
.featured-product-card__thumb img {
  border-top-left-radius: 16px;
  border-top-right-radius: 16px;
  width: 100%;
}
@media only screen and (max-width: 767px) {
  .featured-product-card__thumb img {
    border-top-left-radius: 40px;
    border-top-right-radius: 40px;
  }
}
.featured-product-card__thumb-offer {
  position: absolute;
  top: 6%;
  left: 7%;
  padding: 5px 15px;
  color: var(--white);
  background: var(--text-color-one);
  border-radius: 23px;
  font-family: var(--font_Lato);
  font-weight: 400;
  font-style: Regular;
  font-size: 14px;
  line-height: 22px;
  letter-spacing: 0px;
}
.featured-product-card__thumb-offer.style {
  color: var(--text-color-one);
  background: var(--yellow);
}
.featured-product-card__thumb-btn-wrapper {
  opacity: 0;
  visibility: hidden;
  position: absolute;
  bottom: -20px;
  left: 50%;
  display: flex;
  align-items: center;
  width: 100%;
  transform: translateX(-50%);
  transition: all 0.3s linear;
  -webkit-transform: translateX(-50%);
  -moz-transform: translateX(-50%);
  -ms-transform: translateX(-50%);
  -o-transform: translateX(-50%);
  -webkit-transition: all 0.3s linear;
  -moz-transition: all 0.3s linear;
  -ms-transition: all 0.3s linear;
  -o-transition: all 0.3s linear;
}
.featured-product-card__thumb-btn-wrapper .rr-btn-button4 {
  padding: 8px 17px;
  width: 100%;
  font-size: 16px;
  font-style: normal;
  font-weight: 500;
  line-height: 24px;
  transition: all 0.3s linear;
}
.featured-product-card__content {
  padding: 16px;
  background: var(--white);
  border-bottom-left-radius: 16px;
  border-bottom-right-radius: 16px;
}
.featured-product-card__content-title {
  color: var(--text-color-one);
  font-family: var(--font_Playfair);
  font-weight: 500;
  font-style: Medium;
  font-size: 18px;
  line-height: 24px;
  letter-spacing: 0px;
  text-transform: capitalize;
  margin-bottom: 8px;
}
.featured-product-card__content-list {
  display: flex;
  gap: 7px;
  align-items: center;
  list-style: none;
  margin-bottom: 8px;
}
.featured-product-card__content-list-start i {
  color: var(--yellow);
}
.featured-product-card__content-list-point {
  color: var(--text-color-one);
  font-family: var(--font_Lato);
  font-weight: 400;
  font-style: Regular;
  font-size: 14px;
  line-height: 22px;
  letter-spacing: 0px;
}
.featured-product-card__content-list-text {
  color: var(--text-color6);
  font-family: var(--font_Lato);
  font-weight: 400;
  font-style: Regular;
  font-size: 14px;
  line-height: 22px;
  letter-spacing: 0px;
}
.featured-product-card__content-dollar {
  color: var(--text-color-one);
  font-family: var(--font_Playfair);
  font-weight: 700;
  font-style: Bold;
  font-size: 20px;
  line-height: 28px;
  letter-spacing: 0px;
  text-transform: capitalize;
}
.featured-product-card:hover .trending-product-card__thumb-btn-wrapper {
  opacity: 1;
  visibility: visible;
  bottom: 10px;
  transition: all 0.4s ease-in-out;
}

/* === Benefit Section (Home 02) === */
.benefit-card {
  position: relative;
  padding: 32px 30px 32px 40px;
  border-top: 3px solid var(--primary-two);
  background: var(--primary);
  border-radius: 16px;
  z-index: 9;
}
.benefit-card__items {
  display: flex;
  align-items: center;
  gap: 24px;
  margin-bottom: 12px;
}
.benefit-card__items-icon {
  margin-top: -32px;
  background: var(--white);
  width: 80px;
  height: 80px;
  line-height: 80px;
  left: 32px;
  text-align: center;
  border-radius: 4px;
  display: flex;
  text-align: center;
  justify-items: center;
  justify-content: center;
  align-items: center;
  z-index: 1;
  transition: all 0.4s ease-in-out;
}
.benefit-card__items-icon:hover {
  background: var(--primary-two);
}
.benefit-card__items-title {
  font-weight: 700;
  font-style: Bold;
  font-size: 24px;
  line-height: 30px;
  letter-spacing: 0px;
  text-align: right;
  text-transform: capitalize;
}
@media only screen and (max-width: 1199px) {
  .benefit-card__items-title {
    font-size: 22px;
  }
}
@media only screen and (max-width: 767px) {
  .benefit-card__items-title {
    font-size: 20px;
  }
}
@media (max-width: 575px) {
  .benefit-card__items-title {
    font-size: 18px;
  }
}
.benefit-card__content-subtitle {
  color: var(--text-color-two);
  font-family: var(--font_Lato);
  font-weight: 400;
  font-style: Regular;
  font-size: 16px;
  line-height: 26px;
  letter-spacing: 0px;
}

/* === features Section (Home 02) === */
.beauty-feature-item {
  position: relative;
  transition: all 0.4s ease-in-out;
}
.beauty-feature-item__card1 {
  position: relative;
  padding: 24px 15px;
  background: var(--primary);
  border-radius: 16px;
  text-align: center;
  width: 100%;
  max-width: 362px;
  transition: all 0.4s ease-in-out;
  z-index: 99;
  margin-bottom: 114px;
  margin-left: auto;
  margin-right: auto;
  border: 1px solid transparent;
}
@media only screen and (max-width: 1399px) {
  .beauty-feature-item__card1 {
    padding: 20px 15px;
    width: 322px;
  }
}
@media only screen and (max-width: 1199px) {
  .beauty-feature-item__card1 {
    padding: 20px 15px;
    width: auto;
    margin-bottom: 54px;
  }
}
.beauty-feature-item__card1::before {
  position: absolute;
  content: "";
  background: var(--text-color-one);
  width: 16px;
  height: 16px;
  border-radius: 36px;
  opacity: 1;
  right: -43%;
  top: 50%;
  z-index: 9;
}
@media only screen and (max-width: 1399px) {
  .beauty-feature-item__card1::before {
    right: -47%;
  }
}
@media only screen and (max-width: 1199px) {
  .beauty-feature-item__card1::before {
    display: none;
  }
}
.beauty-feature-item__card1::after {
  position: absolute;
  content: "";
  border: 1px solid var(--text-color-four);
  width: 141px;
  height: 0px;
  border-width: 1px;
  right: -39%;
  top: 55%;
  z-index: 1;
}
@media only screen and (max-width: 1399px) {
  .beauty-feature-item__card1::after {
    width: 137px;
    right: -42%;
  }
}
@media only screen and (max-width: 1199px) {
  .beauty-feature-item__card1::after {
    display: none;
  }
}
.beauty-feature-item__card1-title {
  color: var(--text-color-one);
  font-family: var(--font_Playfair);
  font-weight: 700;
  font-style: Bold;
  font-size: 24px;
  line-height: 30px;
  letter-spacing: 0px;
  text-align: right;
  text-transform: capitalize;
  margin-bottom: 9px;
}
@media only screen and (max-width: 1399px) {
  .beauty-feature-item__card1-title {
    font-size: 22px;
    line-height: 28px;
  }
}
@media only screen and (max-width: 1199px) {
  .beauty-feature-item__card1-title {
    font-size: 20px;
    line-height: 26px;
  }
}
@media only screen and (max-width: 991px) {
  .beauty-feature-item__card1-title {
    font-size: 19px;
    line-height: 25px;
  }
}
@media only screen and (max-width: 767px) {
  .beauty-feature-item__card1-title {
    font-size: 18px;
    line-height: 24px;
  }
}
@media (max-width: 575px) {
  .beauty-feature-item__card1-title {
    font-size: 17px;
    line-height: 23px;
  }
}
.beauty-feature-item__card1-dsc {
  color: var(--text-color-two);
  font-family: var(--font_Lato);
  font-weight: 400;
  font-style: Regular;
  font-size: 16px;
  line-height: 26px;
  letter-spacing: 0px;
  text-align: right;
}
.beauty-feature-item__card1:hover {
  border: 1px solid var(--primary-two);
  transition: all 0.4s ease-in-out;
}
.beauty-feature-item__card1:hover::before {
  position: absolute;
  content: "";
  background: var(--primary-two);
  width: 16px;
  height: 16px;
  border-radius: 36px;
  opacity: 1;
  right: -43%;
  top: 50%;
  z-index: 99;
}
.beauty-feature-item__card1:hover::after {
  position: absolute;
  content: "";
  border: 1px solid var(--primary-two);
  width: 141px;
  height: 0px;
  border-width: 1px;
  right: -39%;
  top: 55%;
  z-index: 1;
}
.beauty-feature-item__card2 {
  position: relative;
  padding: 24px 24px;
  background: var(--primary);
  border-radius: 16px;
  text-align: center;
  width: 100%;
  max-width: 356px;
  transition: all 0.4s ease-in-out;
  z-index: 99;
  margin-bottom: 114px;
  margin-left: -50px;
  border: 1px solid transparent;
}
@media only screen and (max-width: 1399px) {
  .beauty-feature-item__card2 {
    width: 336px;
    margin-left: 0px;
  }
}
@media only screen and (max-width: 1199px) {
  .beauty-feature-item__card2 {
    width: auto;
    margin-left: 0px;
    margin-bottom: 54px;
  }
}
.beauty-feature-item__card2::before {
  position: absolute;
  content: "";
  background: var(--text-color-one);
  width: 16px;
  height: 16px;
  border-radius: 36px;
  opacity: 1;
  right: -42%;
  top: 50%;
  z-index: 9;
}
@media only screen and (max-width: 1399px) {
  .beauty-feature-item__card2::before {
    right: -22%;
  }
}
@media only screen and (max-width: 1199px) {
  .beauty-feature-item__card2::before {
    display: none;
  }
}
.beauty-feature-item__card2::after {
  position: absolute;
  content: "";
  border: 1px solid var(--text-color-four);
  width: 139px;
  height: 0px;
  border-width: 1px;
  right: -39%;
  top: 55%;
  z-index: 1;
}
@media only screen and (max-width: 1399px) {
  .beauty-feature-item__card2::after {
    width: 65px;
    right: -19%;
  }
}
@media only screen and (max-width: 1199px) {
  .beauty-feature-item__card2::after {
    display: none;
  }
}
.beauty-feature-item__card2-title {
  color: var(--text-color-one);
  font-family: var(--font_Playfair);
  font-weight: 700;
  font-style: Bold;
  font-size: 24px;
  line-height: 30px;
  letter-spacing: 0px;
  text-align: right;
  text-transform: capitalize;
  margin-bottom: 9px;
}
@media only screen and (max-width: 1399px) {
  .beauty-feature-item__card2-title {
    font-size: 22px;
    line-height: 28px;
  }
}
@media only screen and (max-width: 1199px) {
  .beauty-feature-item__card2-title {
    font-size: 20px;
    line-height: 26px;
  }
}
@media only screen and (max-width: 991px) {
  .beauty-feature-item__card2-title {
    font-size: 19px;
    line-height: 25px;
  }
}
@media only screen and (max-width: 767px) {
  .beauty-feature-item__card2-title {
    font-size: 18px;
    line-height: 24px;
  }
}
@media (max-width: 575px) {
  .beauty-feature-item__card2-title {
    font-size: 17px;
    line-height: 23px;
  }
}
.beauty-feature-item__card2-dsc {
  color: var(--text-color-two);
  font-family: var(--font_Lato);
  font-weight: 400;
  font-style: Regular;
  font-size: 16px;
  line-height: 26px;
  letter-spacing: 0px;
  text-align: right;
}
.beauty-feature-item__card2:hover {
  border: 1px solid var(--primary-two);
  transition: all 0.4s ease-in-out;
}
.beauty-feature-item__card2:hover::before {
  position: absolute;
  content: "";
  background: var(--primary-two);
}
.beauty-feature-item__card2:hover::after {
  position: absolute;
  content: "";
  border: 1px solid var(--primary-two);
}
.beauty-feature-item__card3 {
  position: relative;
  padding: 24px 24px;
  background: var(--primary);
  border-radius: 16px;
  text-align: center;
  width: 100%;
  max-width: 356px;
  transition: all 0.4s ease-in-out;
  z-index: 99;
  border: 1px solid transparent;
}
@media only screen and (max-width: 1399px) {
  .beauty-feature-item__card3 {
    width: 336px;
  }
}
@media only screen and (max-width: 1199px) {
  .beauty-feature-item__card3 {
    padding: 20px 20px;
    width: auto;
  }
}
.beauty-feature-item__card3::before {
  position: absolute;
  content: "";
  background: var(--text-color-one);
  width: 16px;
  height: 16px;
  border-radius: 36px;
  opacity: 1;
  right: -51%;
  top: 50%;
  z-index: 9;
}
@media only screen and (max-width: 1199px) {
  .beauty-feature-item__card3::before {
    display: none;
  }
}
.beauty-feature-item__card3::after {
  position: absolute;
  content: "";
  border: 1px solid var(--text-color-four);
  width: 167px;
  height: 0px;
  border-width: 1px;
  right: -47%;
  top: 57%;
  z-index: 1;
}
@media only screen and (max-width: 1199px) {
  .beauty-feature-item__card3::after {
    display: none;
  }
}
.beauty-feature-item__card3-title {
  color: var(--text-color-one);
  font-family: var(--font_Playfair);
  font-weight: 700;
  font-style: Bold;
  font-size: 24px;
  line-height: 30px;
  letter-spacing: 0px;
  text-align: right;
  text-transform: capitalize;
  margin-bottom: 9px;
}
@media only screen and (max-width: 1199px) {
  .beauty-feature-item__card3-title {
    font-size: 20px;
  }
}
.beauty-feature-item__card3-dsc {
  color: var(--text-color-two);
  font-family: var(--font_Lato);
  font-weight: 400;
  font-style: Regular;
  font-size: 16px;
  line-height: 26px;
  letter-spacing: 0px;
  text-align: right;
}
.beauty-feature-item__card3:hover {
  border: 1px solid var(--primary-two);
  transition: all 0.4s ease-in-out;
}
.beauty-feature-item__card3:hover::before {
  position: absolute;
  content: "";
  background: var(--primary-two);
}
.beauty-feature-item__card3:hover::after {
  position: absolute;
  content: "";
  border: 1px solid var(--primary-two);
}
.beauty-feature__thumb {
  border-radius: 1000px;
  border-width: 1px;
  border-style: dashed;
  border: 1px solid var(--text-color-four);
  padding: 25px 26px;
}
.beauty-feature__thumb img {
  width: 100%;
}
.beauty-feature-item2 {
  position: relative;
  transition: all 0.4s ease-in-out;
}
.beauty-feature-item2__card1 {
  position: relative;
  padding: 24px 24px;
  background: var(--primary);
  border-radius: 16px;
  text-align: center;
  width: 100%;
  max-width: 362px;
  transition: all 0.4s ease-in-out;
  z-index: 99;
  margin-bottom: 114px;
  transform: rotate(179deg);
  border: 1px solid transparent;
}
@media (max-width: 1199px) {
  .beauty-feature-item2__card1 {
    margin-left: 0px;
    width: auto;
    margin-bottom: 54px;
  }
}
.beauty-feature-item2__card1::before {
  position: absolute;
  content: "";
  background: var(--text-color-one);
  width: 16px;
  height: 16px;
  border-radius: 36px;
  opacity: 1;
  right: -27%;
  top: 43%;
  z-index: 9;
}
@media only screen and (max-width: 1199px) {
  .beauty-feature-item2__card1::before {
    display: none;
  }
}
.beauty-feature-item2__card1::after {
  position: absolute;
  content: "";
  border: 1px solid var(--text-color-four);
  width: 97px;
  height: 0px;
  border-width: 1px;
  right: -26%;
  top: 50%;
  z-index: 1;
}
@media only screen and (max-width: 1199px) {
  .beauty-feature-item2__card1::after {
    display: none;
  }
}
.beauty-feature-item2__card1-content {
  transform: rotate(179deg);
}
.beauty-feature-item2__card1-title {
  color: var(--text-color-one);
  font-family: var(--font_Playfair);
  font-weight: 700;
  font-style: Bold;
  font-size: 24px;
  line-height: 30px;
  letter-spacing: 0px;
  text-align: center;
  text-transform: capitalize;
  margin-bottom: 9px;
}
@media only screen and (max-width: 1399px) {
  .beauty-feature-item2__card1-title {
    font-size: 22px;
    line-height: 28px;
  }
}
@media only screen and (max-width: 1199px) {
  .beauty-feature-item2__card1-title {
    font-size: 20px;
    line-height: 26px;
  }
}
@media only screen and (max-width: 991px) {
  .beauty-feature-item2__card1-title {
    font-size: 19px;
    line-height: 25px;
  }
}
@media only screen and (max-width: 767px) {
  .beauty-feature-item2__card1-title {
    font-size: 18px;
    line-height: 24px;
  }
}
@media (max-width: 575px) {
  .beauty-feature-item2__card1-title {
    font-size: 17px;
    line-height: 23px;
  }
}
.beauty-feature-item2__card1-dsc {
  color: var(--text-color-two);
  font-family: var(--font_Lato);
  font-weight: 400;
  font-style: Regular;
  font-size: 16px;
  line-height: 26px;
  letter-spacing: 0px;
  text-align: center;
}
.beauty-feature-item2__card1:hover {
  border: 1px solid var(--primary-two);
  transition: all 0.4s ease-in-out;
}
.beauty-feature-item2__card1:hover::before {
  position: absolute;
  content: "";
  background: var(--primary-two);
}
.beauty-feature-item2__card1:hover::after {
  position: absolute;
  content: "";
  border: 1px solid var(--primary-two);
}
.beauty-feature-item2__card2 {
  position: relative;
  padding: 24px 24px;
  background: var(--primary);
  border-radius: 16px;
  text-align: center;
  width: 100%;
  max-width: 357px;
  transition: all 0.4s ease-in-out;
  z-index: 99;
  transform: rotate(179deg);
  margin-bottom: 114px;
  margin-left: 70px;
  border: 1px solid transparent;
}
@media (max-width: 1199px) {
  .beauty-feature-item2__card2 {
    margin-left: 0px;
    margin-bottom: 54px;
    width: auto;
  }
}
.beauty-feature-item2__card2::before {
  position: absolute;
  content: "";
  background: var(--text-color-one);
  width: 16px;
  height: 16px;
  border-radius: 36px;
  opacity: 1;
  right: -28%;
  top: 50%;
  z-index: 9;
}
@media only screen and (max-width: 1199px) {
  .beauty-feature-item2__card2::before {
    display: none;
  }
}
.beauty-feature-item2__card2::after {
  position: absolute;
  content: "";
  border: 1px solid var(--text-color-four);
  width: 89px;
  height: 0px;
  border-width: 1px;
  right: -25%;
  top: 55%;
  z-index: 1;
}
@media only screen and (max-width: 1199px) {
  .beauty-feature-item2__card2::after {
    display: none;
  }
}
.beauty-feature-item2__card2-content {
  transform: rotate(179deg);
}
.beauty-feature-item2__card2-title {
  color: var(--text-color-one);
  font-family: var(--font_Playfair);
  font-weight: 700;
  font-style: Bold;
  font-size: 24px;
  line-height: 30px;
  letter-spacing: 0px;
  text-align: center;
  text-transform: capitalize;
  margin-bottom: 9px;
}
@media only screen and (max-width: 1399px) {
  .beauty-feature-item2__card2-title {
    font-size: 22px;
    line-height: 28px;
  }
}
@media only screen and (max-width: 1199px) {
  .beauty-feature-item2__card2-title {
    font-size: 20px;
    line-height: 26px;
  }
}
@media only screen and (max-width: 991px) {
  .beauty-feature-item2__card2-title {
    font-size: 19px;
    line-height: 25px;
  }
}
@media only screen and (max-width: 767px) {
  .beauty-feature-item2__card2-title {
    font-size: 18px;
    line-height: 24px;
  }
}
@media (max-width: 575px) {
  .beauty-feature-item2__card2-title {
    font-size: 17px;
    line-height: 23px;
  }
}
.beauty-feature-item2__card2-dsc {
  color: var(--text-color-two);
  font-family: var(--font_Lato);
  font-weight: 400;
  font-style: Regular;
  font-size: 16px;
  line-height: 26px;
  letter-spacing: 0px;
  text-align: center;
}
.beauty-feature-item2__card2:hover {
  border: 1px solid var(--primary-two);
  transition: all 0.4s ease-in-out;
}
.beauty-feature-item2__card2:hover::before {
  position: absolute;
  content: "";
  background: var(--primary-two);
}
.beauty-feature-item2__card2:hover::after {
  position: absolute;
  content: "";
  border: 1px solid var(--primary-two);
}
.beauty-feature-item2__card3 {
  position: relative;
  padding: 24px 24px;
  background: var(--primary);
  border-radius: 16px;
  text-align: center;
  width: 100%;
  max-width: 359px;
  transform: rotate(179deg);
  transition: all 0.4s ease-in-out;
  z-index: 99;
  border: 1px solid transparent;
}
@media (max-width: 1199px) {
  .beauty-feature-item2__card3 {
    margin-left: 0px;
    width: auto;
  }
}
.beauty-feature-item2__card3::before {
  position: absolute;
  content: "";
  background: var(--text-color-one);
  width: 16px;
  height: 16px;
  border-radius: 36px;
  opacity: 1;
  right: -29%;
  top: 43%;
  z-index: 9;
  transition: all 0.4s ease-in-out;
}
@media only screen and (max-width: 1199px) {
  .beauty-feature-item2__card3::before {
    display: none;
  }
}
.beauty-feature-item2__card3::after {
  position: absolute;
  content: "";
  border: 1px solid var(--text-color-four);
  width: 99px;
  height: 0px;
  border-width: 1px;
  right: -27%;
  top: 49%;
  z-index: 1;
  transition: all 0.4s ease-in-out;
}
@media only screen and (max-width: 1199px) {
  .beauty-feature-item2__card3::after {
    display: none;
  }
}
.beauty-feature-item2__card3-content {
  transform: rotate(179deg);
}
.beauty-feature-item2__card3-title {
  color: var(--text-color-one);
  font-family: var(--font_Playfair);
  font-weight: 700;
  font-style: Bold;
  font-size: 24px;
  line-height: 30px;
  letter-spacing: 0px;
  text-align: center;
  text-transform: capitalize;
  margin-bottom: 9px;
}
@media only screen and (max-width: 1399px) {
  .beauty-feature-item2__card3-title {
    font-size: 22px;
    line-height: 28px;
  }
}
@media only screen and (max-width: 1199px) {
  .beauty-feature-item2__card3-title {
    font-size: 20px;
    line-height: 26px;
  }
}
@media only screen and (max-width: 991px) {
  .beauty-feature-item2__card3-title {
    font-size: 19px;
    line-height: 25px;
  }
}
@media only screen and (max-width: 767px) {
  .beauty-feature-item2__card3-title {
    font-size: 18px;
    line-height: 24px;
  }
}
@media (max-width: 575px) {
  .beauty-feature-item2__card3-title {
    font-size: 17px;
    line-height: 23px;
  }
}
.beauty-feature-item2__card3-dsc {
  color: var(--text-color-two);
  font-family: var(--font_Lato);
  font-weight: 400;
  font-style: Regular;
  font-size: 16px;
  line-height: 26px;
  letter-spacing: 0px;
  text-align: center;
}
.beauty-feature-item2__card3:hover {
  border: 1px solid var(--primary-two);
  transition: all 0.4s ease-in-out;
}
.beauty-feature-item2__card3:hover::before {
  position: absolute;
  content: "";
  background: var(--primary-two);
}
.beauty-feature-item2__card3:hover::after {
  position: absolute;
  content: "";
  border: 1px solid var(--primary-two);
}

/* === Offertwo Section (Home 02) === */
.offertwo-controls {
  display: flex;
  align-items: center;
  gap: 24px;
  margin-bottom: 41px;
}
@media only screen and (max-width: 1399px) {
  .offertwo-controls {
    margin-right: auto;
    margin-bottom: 40px;
    margin-top: -55px;
  }
}
@media only screen and (max-width: 1199px) {
  .offertwo-controls {
    margin-right: auto;
    margin-bottom: 45px;
    margin-top: -59px;
  }
}
@media (max-width: 575px) {
  .offertwo-controls {
    margin-bottom: 30px;
  }
}
.offertwo-controls__arrowLeft {
  padding: 6px 24px 6px 6px;
  height: 48px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font_Playfair);
  font-weight: 500;
  font-style: Medium;
  font-size: 18px;
  line-height: 24px;
  letter-spacing: 0px;
  text-transform: capitalize;
  color: #ee2d7a;
  border: 1px solid #ee2d7a;
  border-radius: 1000px;
  gap: 8px;
  transition: all 0.4s ease-in-out;
}
.offertwo-controls__arrowLeft .icon {
  background: var(--text-color-one);
  width: 36px;
  height: 36px;
  line-height: 36px;
  border-radius: 79.2px;
  text-align: center;
  gap: 7px;
  color: var(--white);
  font-size: 16px;
  transition: all 0.4s ease-in-out;
}
.offertwo-controls__arrowLeft:hover {
  background: var(--primary-two);
  color: var(--text-color-four);
}
.offertwo-controls__arrowLeft:hover .icon {
  background: var(--white);
  color: var(--text-color-one);
}
.offertwo-controls__arrowRight {
  padding: 6px 6px 6px 24px;
  height: 48px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font_Playfair);
  font-weight: 500;
  font-style: Medium;
  font-size: 18px;
  line-height: 24px;
  letter-spacing: 0px;
  text-transform: capitalize;
  background: var(--primary-two);
  color: var(--text-color-four);
  border: 1px solid var(--text-color-four);
  border-radius: 1000px;
  gap: 8px;
  transition: all 0.4s ease-in-out;
}
.offertwo-controls__arrowRight .icon {
  width: 36px;
  height: 36px;
  line-height: 36px;
  border-radius: 79.2px;
  text-align: center;
  gap: 7px;
  font-size: 16px;
  background: var(--white);
  color: var(--text-color-one);
  transition: all 0.4s ease-in-out;
}
.offertwo-controls__arrowRight:hover {
  color: var(--text-color-one);
  background-color: transparent;
}
.offertwo-controls__arrowRight:hover .icon {
  color: var(--white);
  background-color: var(--text-color-one);
}
.offertwo-card__thumb img {
  border-top-left-radius: 16px;
  border-top-right-radius: 16px;
  width: 100%;
}
.offertwo-card__content {
  padding: 24px;
  background: var(--white);
  border-bottom-left-radius: 16px;
  border-bottom-right-radius: 16px;
  transition: all 0.4s ease-in-out;
}
@media (max-width: 575px) {
  .offertwo-card__content {
    padding: 24px 17px;
  }
}
.offertwo-card__content-title {
  color: #161915;
  font-weight: 700;
  font-style: Bold;
  font-size: 20px;
  line-height: 28px;
  letter-spacing: 0px;
  text-transform: capitalize;
  margin-bottom: 12px;
}
@media (max-width: 575px) {
  .offertwo-card__content-title {
    font-size: 16px;
  }
}
.offertwo-card__content-list {
  display: flex;
  gap: 7px;
  align-items: center;
  list-style: none;
  margin-bottom: 16px;
}
.offertwo-card__content-list-start i {
  color: var(--yellow);
}
.offertwo-card__content-list-point {
  color: var(--text-color-one);
  font-family: var(--font_Lato);
  font-weight: 400;
  font-style: Regular;
  font-size: 14px;
  line-height: 22px;
  letter-spacing: 0px;
}
.offertwo-card__content-list-text {
  color: var(--text-color6);
  font-family: var(--font_Lato);
  font-weight: 400;
  font-style: Regular;
  font-size: 14px;
  line-height: 22px;
  letter-spacing: 0px;
}
.offertwo-card__content-items {
  display: flex;
  align-items: center;
  justify-content: space-between;
}
@media only screen and (max-width: 767px) {
  .offertwo-card__content-items {
    flex-wrap: wrap;
    gap: 20px;
  }
}
.offertwo-card__content-items-price {
  display: flex;
  gap: 5px;
  align-items: center;
}
.offertwo-card__content-items-price .original-price {
  color: var(--text-color-one);
  font-family: var(--font_Playfair);
  font-weight: 700;
  font-style: Bold;
  font-size: 20px;
  line-height: 28px;
  letter-spacing: 0px;
  text-transform: capitalize;
}
@media (max-width: 575px) {
  .offertwo-card__content-items-price .original-price {
    font-size: 18px;
  }
}
.offertwo-card__content-items-price-slash {
  color: var(--text-color-one);
}
.offertwo-card__content-items-price .offer-price {
  color: var(--text-color-two);
  font-family: var(--font_Playfair);
  font-weight: 500;
  font-style: Medium;
  font-size: 20px;
  line-height: 26px;
  letter-spacing: 0px;
  text-decoration: line-through;
}
@media (max-width: 575px) {
  .offertwo-card__content-items-price .offer-price {
    font-size: 18px;
  }
}

/* === Testimonial Section (Home 02) === */
.testimonial2-card {
  position: relative;
  z-index: 1;
}
.testimonial2-card__image {
  text-align: center;
  margin-bottom: 24px;
}
.testimonial2-card__image img {
  width: 100%;
  max-width: 328px;
}
.testimonial2-card__content {
  text-align: center;
}
.testimonial2-card__content-title {
  font-weight: 700;
  font-style: Bold;
  font-size: 24px;
  line-height: 30px;
  letter-spacing: 0px;
  text-align: center;
  text-transform: capitalize;
  margin-bottom: 16px;
}
@media only screen and (max-width: 1399px) {
  .testimonial2-card__content-title {
    font-size: 22px;
  }
}
@media only screen and (max-width: 991px) {
  .testimonial2-card__content-title {
    font-size: 20px;
  }
}
.testimonial2-card__content-suntitle {
  color: var(--text-color6);
  font-family: var(--font_Playfair);
  font-weight: 600;
  font-style: Italic;
  font-size: 20px;
  line-height: 32px;
  letter-spacing: 0px;
  text-transform: capitalize;
  max-width: 1009px;
  display: flex;
  text-align: center;
  margin-left: auto;
  margin-right: auto;
  margin-bottom: 30px;
}
@media only screen and (max-width: 1399px) {
  .testimonial2-card__content-suntitle {
    max-width: 909px;
  }
}
@media only screen and (max-width: 1199px) {
  .testimonial2-card__content-suntitle {
    font-size: 17px;
    max-width: 809px;
  }
}
.testimonial2-card__content-star i {
  color: #F8C822;
  margin-right: 8px;
}
.testimonial2-controls {
  display: flex;
  justify-content: space-between;
}
.testimonial2-controls__arrowLeft {
  position: absolute;
  left: 0%;
  top: 50%;
  transform: translateY(-50%);
  z-index: 9;
  padding: 6px 24px 6px 6px;
  height: 48px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font_Playfair);
  font-weight: 500;
  font-style: Medium;
  font-size: 18px;
  line-height: 24px;
  letter-spacing: 0px;
  text-transform: capitalize;
  color: var(--text-color-one);
  border: 1px solid var(--text-color-four);
  border-radius: 1000px;
  gap: 8px;
  transition: all 0.4s ease-in-out;
}
@media only screen and (max-width: 1399px) {
  .testimonial2-controls__arrowLeft {
    left: 0%;
    top: 50%;
  }
}
@media only screen and (max-width: 1199px) {
  .testimonial2-controls__arrowLeft {
    left: 0%;
    top: 53%;
  }
}
@media only screen and (max-width: 991px) {
  .testimonial2-controls__arrowLeft {
    display: none;
  }
}
.testimonial2-controls__arrowLeft .icon {
  background: var(--text-color-one);
  width: 36px;
  height: 36px;
  line-height: 36px;
  border-radius: 79.2px;
  text-align: center;
  gap: 7px;
  color: var(--white);
  font-size: 16px;
  transition: all 0.4s ease-in-out;
}
.testimonial2-controls__arrowLeft:hover {
  background: var(--primary-two);
  color: var(--text-color-four);
}
.testimonial2-controls__arrowLeft:hover .icon {
  background: var(--white);
  color: var(--text-color-one);
}
.testimonial2-controls__arrowRight {
  position: absolute;
  right: 0%;
  top: 50%;
  transform: translateY(-50%);
  z-index: 9;
  padding: 6px 6px 6px 24px;
  height: 48px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font_Playfair);
  font-weight: 500;
  font-style: Medium;
  font-size: 18px;
  line-height: 24px;
  letter-spacing: 0px;
  text-transform: capitalize;
  background: var(--primary-two);
  color: var(--text-color-four);
  border: 1px solid var(--text-color-four);
  border-radius: 1000px;
  gap: 8px;
  transition: all 0.4s ease-in-out;
}
@media only screen and (max-width: 1399px) {
  .testimonial2-controls__arrowRight {
    right: 0%;
    top: 50%;
  }
}
@media only screen and (max-width: 1199px) {
  .testimonial2-controls__arrowRight {
    right: 0%;
    top: 53%;
  }
}
@media only screen and (max-width: 991px) {
  .testimonial2-controls__arrowRight {
    display: none;
  }
}
.testimonial2-controls__arrowRight .icon {
  width: 36px;
  height: 36px;
  line-height: 36px;
  border-radius: 79.2px;
  text-align: center;
  gap: 7px;
  font-size: 16px;
  background: var(--white);
  color: var(--text-color-one);
  transition: all 0.4s ease-in-out;
}
.testimonial2-controls__arrowRight:hover {
  color: var(--text-color-one);
  background-color: transparent;
}
.testimonial2-controls__arrowRight:hover .icon {
  color: var(--white);
  background-color: var(--text-color-one);
}

/* === Instagram Section (Home 02) === */
.instagram2 {
  position: relative;
  z-index: 99;
}
.instagram2-wrapper {
  position: relative;
  z-index: 99;
  padding: 90px 0px 97px;
  background: var(--primary);
  border-radius: 24px;
}
.instagram2-thumb {
  position: relative;
  overflow: hidden;
}
.instagram2-thumb::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: rgba(238, 45, 122, 0.4784313725);
  transform-origin: top;
  transform: scaleY(0);
  transition: transform 0.4s ease;
  z-index: 9;
  border-radius: 16px;
}
.instagram2-thumb img {
  width: 100%;
  height: 100%;
  border-radius: 16px;
  transform: scale(1.02);
  transition: all 1.5s ease-out;
}
.instagram2-thumb .icon {
  display: inline-block;
  position: absolute;
  top: -100px;
  left: 50%;
  transform: translate(-50%, -50%);
  font-size: 40px;
  color: var(--white);
  transition: all 0.4s ease-in-out;
  opacity: 0;
  visibility: hidden;
  z-index: 99;
}
.instagram2-thumb:hover .icon {
  top: 50%;
  opacity: 1;
  visibility: visible;
}
.instagram2-thumb:hover img {
  -webkit-transform: scale3d(1.1, 1.1, 1);
  transform: scale3d(1.1, 1.1, 1);
}
.instagram2-thumb:hover::before {
  transform: scaleY(1);
}

.blog-details__thumb img {
  width: 100%;
}
.blog-details-wrapper-items__post {
  display: flex;
  align-items: center;
  list-style: none;
  gap: 24px;
  margin-bottom: 13px;
}
.blog-details-wrapper-items__post-date {
  color: #5B5B5B;
  font-family: Lato;
  font-weight: 400;
  font-style: Regular;
  font-size: 16px;
  line-height: 26px;
  letter-spacing: 0px;
}
.blog-details-wrapper-items__post-date svg {
  margin-right: 8px;
}
.blog-details-wrapper-items__post-date svg path {
  fill: #5B5B5B;
}
.blog-details-wrapper-items-content__title {
  color: #0C0C0C;
  font-family: var(--font_Playfair);
  font-weight: 700;
  font-style: Bold;
  font-size: 40px;
  line-height: 48px;
  letter-spacing: -0.5px;
  margin-bottom: 11px;
}
@media only screen and (max-width: 1399px) {
  .blog-details-wrapper-items-content__title {
    font-size: 35px;
  }
}
@media only screen and (max-width: 991px) {
  .blog-details-wrapper-items-content__title {
    font-size: 30px;
  }
}
@media (max-width: 575px) {
  .blog-details-wrapper-items-content__title {
    font-size: 26px;
  }
}
.blog-details-wrapper-items-content__text {
  color: #5B5B5B;
  font-family: Lato;
  font-weight: 400;
  font-style: Regular;
  font-size: 16px;
  line-height: 26px;
  letter-spacing: 0px;
  margin-bottom: 24px;
}
.blog-details-wrapper-items__info {
  padding: 32px;
  border-radius: 20px;
  display: flex;
  align-items: center;
  gap: 24px;
  margin-bottom: 24px;
}
@media (max-width: 575px) {
  .blog-details-wrapper-items__info {
    padding: 21px 15px;
    flex-wrap: wrap;
    gap: 16px;
  }
}
.blog-details-wrapper-items__info-thumb img {
  max-width: 100%;
}
.blog-details-wrapper-items__info-content-text {
  color: #FFFFFF;
  font-family: Lato;
  font-weight: 700;
  font-style: Italic;
  font-size: 18px;
  line-height: 28px;
  letter-spacing: 0px;
  vertical-align: middle;
  margin-bottom: 15px;
}
@media (max-width: 575px) {
  .blog-details-wrapper-items__info-content-text {
    font-size: 16px;
  }
}
.blog-details-wrapper-items__info-content-mentor {
  display: flex;
  justify-content: space-between;
}
.blog-details-wrapper-items__info-content-mentor-info-name {
  color: #FFFFFF;
  font-family: var(--font_Playfair);
  font-weight: 500;
  font-style: Medium;
  font-size: 22px;
  line-height: 28px;
  letter-spacing: 0px;
  vertical-align: middle;
  margin-bottom: 7px;
}
@media only screen and (max-width: 991px) {
  .blog-details-wrapper-items__info-content-mentor-info-name {
    font-size: 18px;
  }
}
@media (max-width: 575px) {
  .blog-details-wrapper-items__info-content-mentor-info-name {
    font-size: 16px;
  }
}
.blog-details-wrapper-items__info-content-mentor-info-text {
  color: #FFFFFF;
  font-family: Lato;
  font-weight: 400;
  font-style: Regular;
  font-size: 16px;
  line-height: 26px;
  letter-spacing: 0px;
  vertical-align: middle;
}
@media (max-width: 575px) {
  .blog-details-wrapper-items__info-content-mentor-info-text {
    font-size: 15px;
  }
}
.blog-details-wrapper-items__info-content-mentor-icon svg {
  width: 50px;
  height: 50px;
}

/* Global rich text styles for CMS/editor content (blog/why/product) */
.cms-richtext {
  color: #0c0c0c;
  font-size: 18px;
  line-height: 1.75;
  word-break: break-word;
}
.cms-richtext p {
  margin: 0 0 16px;
}
.cms-richtext h1,
.cms-richtext h2,
.cms-richtext h3,
.cms-richtext h4,
.cms-richtext h5,
.cms-richtext h6 {
  margin: 28px 0 12px;
  line-height: 1.3;
  color: #0c0c0c;
  font-family: var(--font_Playfair);
  font-weight: 700;
}
.cms-richtext h2 {
  font-size: 38px;
}
.cms-richtext h3 {
  font-size: 30px;
}
.cms-richtext ul,
.cms-richtext ol {
  margin: 0 0 16px 24px;
}
.cms-richtext li {
  margin-bottom: 8px;
}
.cms-richtext a {
  color: var(--primary-two);
  text-decoration: underline;
}
.cms-richtext table {
  width: 100%;
  border-collapse: collapse;
  margin: 18px 0 24px;
  font-size: 16px;
}
.cms-richtext th,
.cms-richtext td {
  border: 1px solid #d8dde5;
  padding: 12px 14px;
  vertical-align: top;
}
.cms-richtext th {
  background: #f6f8fb;
  font-weight: 700;
}
@media (max-width: 767px) {
  .cms-richtext {
    font-size: 16px;
    line-height: 1.65;
  }
  .cms-richtext h2 {
    font-size: 30px;
  }
  .cms-richtext h3 {
    font-size: 24px;
  }
  .cms-richtext table {
    display: block;
    overflow-x: auto;
    white-space: nowrap;
  }
}
@media only screen and (max-width: 991px) {
  .blog-details-wrapper-items__info-content-mentor-icon svg {
    width: 45px;
    height: 45px;
  }
}
@media (max-width: 575px) {
  .blog-details-wrapper-items__info-content-mentor-icon svg {
    width: 40px;
    height: 40px;
  }
}
.blog-details-wrapper-items__content2-text {
  color: #5B5B5B;
  font-family: Lato;
  font-weight: 400;
  font-style: Regular;
  font-size: 16px;
  line-height: 26px;
  letter-spacing: 0px;
  margin-bottom: 19px;
}
.blog-details-wrapper-items__content2-subtext {
  color: #5B5B5B;
  font-family: Lato;
  font-weight: 400;
  font-style: Regular;
  font-size: 16px;
  line-height: 26px;
  letter-spacing: 0px;
}
.blog-details-wrapper-items__thumb {
  display: flex;
  gap: 30px;
  margin-top: 41px;
}
@media (max-width: 575px) {
  .blog-details-wrapper-items__thumb {
    flex-wrap: wrap;
    justify-content: center;
    gap: 20px;
  }
}
.blog-details-wrapper-items__thumb-thumb1 img {
  max-width: 100%;
}
.blog-details-wrapper-items-tag {
  margin-top: 16px;
}
.blog-details-wrapper-items-tag__content-title {
  color: #0C0C0C;
  font-family: var(--font_Playfair);
  font-weight: 700;
  font-style: Bold;
  font-size: 32px;
  line-height: 40px;
  letter-spacing: 0px;
  vertical-align: middle;
  text-transform: capitalize;
  margin-bottom: 18px;
}
@media only screen and (max-width: 1399px) {
  .blog-details-wrapper-items-tag__content-title {
    font-size: 28px;
  }
}
@media only screen and (max-width: 991px) {
  .blog-details-wrapper-items-tag__content-title {
    font-size: 25px;
  }
}
@media (max-width: 575px) {
  .blog-details-wrapper-items-tag__content-title {
    font-size: 20px;
  }
}
.blog-details-wrapper-items-tag__content-list-text {
  display: flex;
  gap: 5px;
  align-items: center;
  color: #5B5B5B;
  font-family: Lato;
  font-weight: 400;
  font-style: Regular;
  font-size: 18px;
  line-height: 28px;
  letter-spacing: 0px;
  vertical-align: middle;
}
@media only screen and (max-width: 1399px) {
  .blog-details-wrapper-items-tag__content-list-text {
    font-size: 16px;
  }
}
@media (max-width: 575px) {
  .blog-details-wrapper-items-tag__content-list-text {
    font-size: 15px;
  }
}
.blog-details-wrapper-items-tag__content-list-text:not(:last-child) {
  margin-bottom: 12px;
}
@media (max-width: 575px) {
  .blog-details-wrapper-items-tag__content-list-text:not(:last-child) {
    margin-bottom: 9px;
  }
}
.blog-details-wrapper-items-tag__title3 {
  color: #0C0C0C;
  font-family: var(--font_Playfair);
  font-weight: 700;
  font-style: Bold;
  font-size: 32px;
  line-height: 40px;
  letter-spacing: 0px;
  text-transform: capitalize;
  margin-top: 17px;
}
@media only screen and (max-width: 1399px) {
  .blog-details-wrapper-items-tag__title3 {
    font-size: 28px;
  }
}
@media only screen and (max-width: 991px) {
  .blog-details-wrapper-items-tag__title3 {
    font-size: 25px;
    margin-top: 15px;
  }
}
@media (max-width: 575px) {
  .blog-details-wrapper-items-tag__title3 {
    font-size: 23px;
  }
}
.blog-details-wrapper-items-tag__subtitle {
  color: #5B5B5B;
  font-family: Lato;
  font-weight: 400;
  font-style: Regular;
  font-size: 16px;
  line-height: 26px;
  letter-spacing: 0px;
  margin-top: 17px;
}
.blog-details-wrapper-items-tag__border {
  padding: 20px 0px;
  border-top: 1px solid rgba(28, 36, 54, 0.3);
  border-bottom: 1px solid rgba(28, 36, 54, 0.3);
  margin-top: 50px;
}
@media only screen and (max-width: 991px) {
  .blog-details-wrapper-items-tag__border {
    padding: 15px 0px;
    margin-top: 40px;
  }
}
.blog-details-wrapper-items-tag__tagcloud {
  gap: 10px;
  display: inline-flex;
  justify-content: center;
  align-items: center;
  text-align: center;
}
@media (max-width: 575px) {
  .blog-details-wrapper-items-tag__tagcloud {
    flex-wrap: wrap;
  }
}
.blog-details-wrapper-items-tag__tagcloud-title {
  color: #0C0C0C;
  font-family: var(--font_Playfair);
  font-weight: 700;
  font-style: Bold;
  font-size: 24px;
  line-height: 30px;
  letter-spacing: 0px;
  text-transform: capitalize;
}
.blog-details-wrapper-items-tag__tagcloud-button {
  display: inline-flex;
  height: 30px;
  padding: 14px 16px;
  justify-content: center;
  align-items: center;
  border-radius: 6px;
  border: 1px solid #FFEFF2;
  color: #5B5B5B;
  font-family: Lato;
  font-weight: 400;
  font-style: Regular;
  font-size: 14px;
  line-height: 22px;
  letter-spacing: 0px;
  text-align: center;
  vertical-align: middle;
  background: #FFEFF2;
  transition: all 0.3s ease-in-out;
}
@media only screen and (max-width: 991px) {
  .blog-details-wrapper-items-tag__tagcloud-button {
    padding: 14px 9px;
    text-align: center;
  }
}
.blog-details-wrapper-items-tag__tagcloud-button:hover {
  color: #5B5B5B;
}
.blog-details-wrapper-items-tag__title {
  color: #0C0C0C;
  font-size: 16px;
  font-style: normal;
  font-weight: 500;
  line-height: 26px;
}
.blog-details-wrapper-items-tag__social {
  gap: 11px;
  position: relative;
  z-index: 9;
}
@media (max-width: 575px) {
  .blog-details-wrapper-items-tag__social {
    gap: 7px;
  }
}
.blog-details-wrapper-items-tag__social a {
  width: 30px;
  height: 30px;
  line-height: 30px;
  color: #0C0C0C;
  text-align: center;
  font-size: 16px;
  display: block;
  transition: all 0.4s ease-in-out;
  text-align: center;
  border-radius: 999px;
}
@media (max-width: 575px) {
  .blog-details-wrapper-items-tag__social a {
    width: 25px;
    height: 25px;
    line-height: 25px;
  }
}
.blog-details-wrapper-items-tag__social a i {
  font-size: 16px;
  color: #0C0C0C;
}
.blog-details-wrapper-items-comments {
  margin-top: 46px;
}
@media only screen and (max-width: 991px) {
  .blog-details-wrapper-items-comments {
    margin-top: 30px;
  }
}
.blog-details-wrapper-items-comments__heading {
  color: #0C0C0C;
  font-family: var(--font_Playfair);
  font-weight: 700;
  font-style: Bold;
  font-size: 32px;
  line-height: 40px;
  letter-spacing: 0px;
  vertical-align: middle;
  text-transform: capitalize;
  margin-bottom: 28px;
}
@media only screen and (max-width: 1399px) {
  .blog-details-wrapper-items-comments__heading {
    font-size: 25px;
  }
}
@media only screen and (max-width: 991px) {
  .blog-details-wrapper-items-comments__heading {
    font-size: 20px;
    margin-bottom: 20px;
  }
}
.blog-details-wrapper-items-comments-single {
  display: flex;
  gap: 20px;
  align-items: center;
}
@media (max-width: 575px) {
  .blog-details-wrapper-items-comments-single {
    flex-wrap: wrap;
    gap: 15px;
  }
}
.blog-details-wrapper-items-comments-single:not(:last-child) {
  margin-bottom: 32px;
}
.blog-details-wrapper-items-comments-single__thumb img {
  width: 100%;
  object-fit: cover;
}
.blog-details-wrapper-items-comments-single-content-head__con-date {
  color: #5B5B5B;
  font-family: Lato;
  font-weight: 400;
  font-style: Regular;
  font-size: 16px;
  line-height: 26px;
  letter-spacing: 0px;
}
.blog-details-wrapper-items-comments-single-content-head__con-title {
  color: #0C0C0C;
  font-family: var(--font_Playfair);
  font-weight: 500;
  font-style: Medium;
  font-size: 22px;
  line-height: 28px;
  letter-spacing: 0px;
  margin-top: 6px;
}
@media only screen and (max-width: 991px) {
  .blog-details-wrapper-items-comments-single-content-head__con-title {
    font-size: 19px;
  }
}
@media (max-width: 575px) {
  .blog-details-wrapper-items-comments-single-content-head__con-title {
    font-size: 17px;
  }
}
.blog-details-wrapper-items-comments-single-content-head__icon {
  color: #FFFFFF;
  background: #0C0C0C;
  display: inline-block;
  padding: 10px 20px;
  border-radius: 20px;
  font-family: var(--font_Playfair);
  font-weight: 500;
  font-style: Medium;
  font-size: 16px;
  line-height: 22px;
  letter-spacing: 0px;
  text-align: center;
  transition: all 0.4s ease-in-out;
}
@media (max-width: 575px) {
  .blog-details-wrapper-items-comments-single-content-head__icon {
    padding: 9px 20px;
    font-size: 15px;
  }
}
.blog-details-wrapper-items-comments-single-content-head__icon:hover {
  background: #EE2D7A;
}
.blog-details-wrapper-items-comments-single-content__text {
  color: #5B5B5B;
  font-family: Lato;
  font-weight: 400;
  font-style: Regular;
  font-size: 16px;
  line-height: 26px;
  letter-spacing: 0px;
  margin-top: 6px;
}
.blog-details-wrapper-items-form {
  margin-top: 37px;
}
@media only screen and (max-width: 991px) {
  .blog-details-wrapper-items-form {
    margin-top: 45px;
  }
}
.blog-details-wrapper-items-form__title {
  color: #0C0C0C;
  font-family: var(--font_Playfair);
  font-weight: 700;
  font-style: Bold;
  font-size: 32px;
  line-height: 40px;
  letter-spacing: 0px;
  text-transform: capitalize;
  margin-bottom: 8px;
  border-bottom: 1px solid #E6E6E6;
  padding: 30px 0px 30px;
  margin-bottom: 24px;
}
@media only screen and (max-width: 991px) {
  .blog-details-wrapper-items-form__title {
    font-size: 25px;
  }
}
@media (max-width: 575px) {
  .blog-details-wrapper-items-form__title {
    font-size: 22px;
    padding: 20px 0px 20px;
  }
}
.blog-details-wrapper-items-form__contact-clt-name {
  display: block;
  color: #0C0C0C;
  font-family: var(--font_Playfair);
  font-weight: 500;
  font-style: Medium;
  font-size: 20px;
  line-height: 26px;
  letter-spacing: 0px;
  margin-bottom: 12px;
}
.blog-details-wrapper-items-form__contact-clt input,
.blog-details-wrapper-items-form__contact-clt textarea {
  width: 100%;
  outline: none;
  padding: 15px 26px;
  color: #5B5B5B;
  font-family: Lato;
  font-weight: 400;
  font-style: Regular;
  font-size: 16px;
  line-height: 26px;
  letter-spacing: 0px;
  border-radius: 8px;
  background: #FFEFF2;
  border: none;
}
.blog-details-wrapper-items-form__contact-clt input::placeholder,
.blog-details-wrapper-items-form__contact-clt textarea::placeholder {
  color: #5B5B5B;
  font-size: 16px;
}
.blog-details-wrapper-items-form__contact-clt textarea {
  padding-bottom: 164px;
  resize: none;
}

.blog-standard-wrapper-items:not(:last-child) {
  margin-bottom: 32px;
}
.blog-standard-wrapper-items__thumb {
  position: relative;
  margin-bottom: 16px;
}
.blog-standard-wrapper-items__thumb img {
  max-width: 100%;
}
.blog-standard-wrapper-items__post {
  display: flex;
  align-items: center;
  gap: 25px;
  margin-bottom: 10px;
}
@media only screen and (max-width: 1399px) {
  .blog-standard-wrapper-items__post {
    gap: 20px;
  }
}
@media (max-width: 575px) {
  .blog-standard-wrapper-items__post {
    flex-wrap: wrap;
  }
}
.blog-standard-wrapper-items__post-date {
  display: block;
  color: #0C0C0C;
  font-family: var(--font_Playfair);
  font-weight: 500;
  font-style: Medium;
  font-size: 16px;
  line-height: 22px;
  letter-spacing: 0px;
  list-style: none;
}
@media (max-width: 575px) {
  .blog-standard-wrapper-items__post-date {
    font-size: 14px;
  }
}
.blog-standard-wrapper-items__post-date svg {
  margin-right: 5px;
}
.blog-standard-wrapper-items__content-title {
  margin-bottom: 17px;
}
.blog-standard-wrapper-items__content-title a {
  color: #0C0C0C;
  font-family: var(--font_Playfair);
  font-weight: 700;
  font-style: Bold;
  font-size: 32px;
  line-height: 40px;
  letter-spacing: 0px;
  text-transform: capitalize;
}
@media only screen and (max-width: 1399px) {
  .blog-standard-wrapper-items__content-title a {
    font-size: 30px;
  }
}
@media only screen and (max-width: 991px) {
  .blog-standard-wrapper-items__content-title a {
    font-size: 20px;
  }
}
@media (max-width: 575px) {
  .blog-standard-wrapper-items__content-title a {
    font-size: 18px;
  }
}
.blog-standard-wrapper-items__content-title a:hover {
  color: var(--primary-two);
}
.blog-standard-wrapper-items__content-subtitle {
  color: #5B5B5B;
  font-family: Lato;
  font-weight: 400;
  font-style: Regular;
  font-size: 16px;
  line-height: 26px;
  letter-spacing: 0px;
  margin-bottom: 29px;
}
.blog-standard-wrapper-items__content-button .rr-btn-button {
  gap: 11px;
  font-family: var(--font_Playfair);
  font-weight: 500;
  font-style: Medium;
  font-size: 16px;
  line-height: 18px;
  letter-spacing: 0px;
  align-items: center;
  display: inline-flex;
  color: var(--white);
  border-radius: 90px;
  text-transform: capitalize;
  padding: 8px 8px 8px 32px;
  border: 1px solid #e3e3e3;
  justify-content: space-between;
  background: var(--text-color-one);
}
@media (max-width: 575px) {
  .blog-standard-wrapper-items__content-button .rr-btn-button {
    padding: 8px 6px 8px 18px;
  }
}
.blog-standard-wrapper-items__content-button .rr-btn-button .icon {
  width: 36px;
  height: 36px;
  display: flex;
  font-size: 20px;
  color: var(--white);
  align-items: center;
  border-radius: 500px;
  transition: all 0.3s;
  background: var(--primary-two);
  justify-content: center;
  background: var(--primary-two);
}
.blog-standard-wrapper-items__content-button .rr-btn-button:hover .icon {
  rotate: -45deg;
}
.blog-standard-wrapper-items__content-button .rr-btn-button.btn-black {
  color: var(--white);
  background: var(--primary);
}
.blog-standard-wrapper-items__content-button .rr-btn-button.btn-black .icon {
  color: var(--primary);
  background: var(--white);
}
.blog-standard-wrapper-items__content-button .rr-btn-button.btn-purple3 {
  gap: 11px;
  color: var(--text-color-one);
  background: transparent;
  padding: 8px 14px 8px 17px;
  border: 1px solid var(--text-color7);
}
@media (max-width: 575px) {
  .blog-standard-wrapper-items__content-button .rr-btn-button.btn-purple3 {
    padding: 8px 8px 8px 18px;
  }
}
.blog-standard-wrapper-items__content-button .rr-btn-button.btn-purple3 .text {
  color: var(--text-color-one);
}
.blog-standard-wrapper-items__content-button .rr-btn-button.btn-purple3 .icon {
  width: 36px;
  height: 36px;
  display: flex;
  font-size: 20px;
  color: var(--white);
  align-items: center;
  border-radius: 500px;
  transition: all 0.3s;
  justify-content: center;
  background: var(--primary-two);
}
.blog-standard-wrapper-items__content-button .rr-btn-button.btn-purple3 .icon:hover {
  background: var(--primary-two);
}
.blog-standard-wrapper .pagination {
  border-top: 1px solid rgba(201, 201, 200, 0.2392156863);
  margin-top: 40px;
  padding-top: 40px;
}

/* === Blog Section (page) === */
.blog2-card__thumb img {
  border-top-left-radius: 20px;
  border-top-right-radius: 20px;
  width: 100%;
}
.blog2-card__content {
  padding: 25px 24px 28px;
  background: var(--primary);
  border-bottom-left-radius: 16px;
  border-bottom-right-radius: 16px;
}
@media only screen and (max-width: 991px) {
  .blog2-card__content {
    padding: 20px 20px 24px;
  }
}
@media (max-width: 575px) {
  .blog2-card__content {
    padding: 18px 16px 20px;
  }
}
.blog2-card__content-tipsitems {
  padding: 7px 15px;
  background: #FFCDD8;
  border-radius: 88px;
  color: var(--text-color-one);
  font-family: var(--font_Playfair);
  font-weight: 500;
  font-style: Medium;
  font-size: 16px;
  line-height: 22px;
  letter-spacing: 0px;
  text-align: center;
}
@media only screen and (max-width: 991px) {
  .blog2-card__content-tipsitems {
    padding: 6px 12px;
    font-size: 14px;
    line-height: 20px;
  }
}
@media (max-width: 575px) {
  .blog2-card__content-tipsitems {
    padding: 5px 10px;
    font-size: 12px;
    line-height: 18px;
  }
}
.blog2-card__content-title {
  margin-top: 20px;
}
.blog2-card__content-title a {
  font-family: var(--font_Playfair);
  font-weight: 700;
  font-style: Bold;
  font-size: 24px;
  line-height: 30%;
  letter-spacing: 0px;
  text-transform: capitalize;
  transition: all 0.4s ease-in-out;
}
@media only screen and (max-width: 991px) {
  .blog2-card__content-title a {
    font-size: 21px;
  }
}
@media (max-width: 575px) {
  .blog2-card__content-title a {
    font-size: 17px;
  }
}
.blog2-card__content-title a:hover {
  color: var(--primary-two);
}
.blog2-card__content-meta {
  display: flex;
  align-items: center;
  gap: 32px;
  margin-top: 18px;
}
@media (max-width: 575px) {
  .blog2-card__content-meta {
    gap: 7px;
  }
}
.blog2-card__content-meta-item {
  color: var(--text-color-two);
  font-family: var(--font_Lato);
  font-weight: 400;
  font-style: Regular;
  font-size: 16px;
  line-height: 26px;
  letter-spacing: 0px;
  text-align: center;
  display: flex;
  align-items: center;
  gap: 6px;
}
@media (max-width: 575px) {
  .blog2-card__content-meta-item {
    gap: 4px;
  }
}
.blog2 .pagination {
  margin-top: 48px;
}
@media only screen and (max-width: 1199px) {
  .blog2 .pagination {
    margin-top: 40px;
  }
}
@media only screen and (max-width: 991px) {
  .blog2 .pagination {
    margin-top: 35px;
  }
}
@media only screen and (max-width: 767px) {
  .blog2 .pagination {
    margin-top: 30px;
  }
}
@media (max-width: 575px) {
  .blog2 .pagination {
    margin-top: 25px;
  }
}

/* === Cart Page Section === */
.cart-page {
  margin-left: auto;
  margin-right: auto;
  max-width: 100%;
}
@media only screen and (max-width: 1399px) {
  .cart-page {
    padding-top: 80px !important;
    padding-bottom: 80px !important;
  }
}
@media only screen and (max-width: 1199px) {
  .cart-page {
    padding-top: 70px !important;
    padding-bottom: 70px !important;
  }
}
@media only screen and (max-width: 991px) {
  .cart-page {
    padding-top: 65px !important;
    padding-bottom: 65px !important;
  }
}
@media only screen and (max-width: 767px) {
  .cart-page {
    padding-top: 55px !important;
    padding-bottom: 55px !important;
  }
}
@media (max-width: 575px) {
  .cart-page {
    padding-top: 40px !important;
    padding-bottom: 40px !important;
  }
}
@media only screen and (max-width: 991px) {
  .cart-page .container > .row {
    flex-direction: column;
    align-items: stretch;
    gap: 32px;
  }
}
@media only screen and (max-width: 767px) {
  .cart-page .container > .row {
    gap: 28px;
  }
}
@media (max-width: 575px) {
  .cart-page .container > .row {
    gap: 24px;
  }
}
.cart-page__items {
  margin-bottom: 40px;
}
@media only screen and (max-width: 1399px) {
  .cart-page__items {
    margin-bottom: 32px;
  }
}
@media only screen and (max-width: 1199px) {
  .cart-page__items {
    margin-bottom: 30px;
  }
}
@media only screen and (max-width: 991px) {
  .cart-page__items {
    margin-bottom: 28px;
  }
}
@media only screen and (max-width: 767px) {
  .cart-page__items {
    margin-bottom: 24px;
  }
}
@media (max-width: 575px) {
  .cart-page__items {
    margin-bottom: 24px;
  }
}
.cart-page__items-title {
  color: #0C0C0C;
  font-family: var(--font_Playfair);
  font-weight: 700;
  font-style: Bold;
  font-size: 24px;
  line-height: 30px;
  letter-spacing: 0px;
  text-transform: capitalize;
  margin-bottom: 30px;
}
@media only screen and (max-width: 1199px) {
  .cart-page__items-title {
    font-size: 22px;
    margin-bottom: 24px;
  }
}
@media (max-width: 575px) {
  .cart-page__items-title {
    font-size: 20px;
    margin-bottom: 24px;
  }
}
.cart-page__table {
  background: #FFEFF2;
  border-radius: 8px;
  padding: 24px;
  margin-bottom: 24px;
  overflow-x: auto;
  -webkit-overflow-scrolling: touch;
}
@media only screen and (max-width: 1399px) {
  .cart-page__table {
    padding: 22px;
    margin-bottom: 22px;
  }
}
@media only screen and (max-width: 1199px) {
  .cart-page__table {
    padding: 20px;
    margin-bottom: 20px;
  }
}
@media only screen and (max-width: 991px) {
  .cart-page__table {
    padding: 18px;
    margin-bottom: 18px;
  }
}
@media only screen and (max-width: 767px) {
  .cart-page__table {
    padding: 16px;
    margin-bottom: 16px;
  }
}
@media (max-width: 575px) {
  .cart-page__table {
    padding: 14px;
    margin-bottom: 14px;
    border-radius: 6px;
  }
}
.cart-page__table-header {
  padding-bottom: 16px;
  margin-bottom: 16px;
  border-bottom: 1px solid #E6E6E6;
  text-align: center;
}
@media only screen and (max-width: 1399px) {
  .cart-page__table-header {
    padding-bottom: 14px;
    margin-bottom: 14px;
  }
}
@media only screen and (max-width: 1199px) {
  .cart-page__table-header {
    padding-bottom: 12px;
    margin-bottom: 12px;
  }
}
@media only screen and (max-width: 991px) {
  .cart-page__table-header {
    padding-bottom: 10px;
    margin-bottom: 10px;
  }
}
@media (min-width: 768px) and (max-width: 991px) {
  .cart-page__table-header {
    min-width: 700px;
  }
}
@media only screen and (max-width: 767px) {
  .cart-page__table-header {
    display: none;
  }
}
@media (max-width: 575px) {
  .cart-page__table-header {
    padding-bottom: 12px;
    margin-bottom: 12px;
  }
}
.cart-page__table-header-text {
  color: #0C0C0C;
  font-family: var(--font_Playfair);
  font-weight: 700;
  font-style: Bold;
  font-size: 22px;
  line-height: 1.2;
  letter-spacing: 0px;
  text-transform: capitalize;
}
@media only screen and (max-width: 1399px) {
  .cart-page__table-header-text {
    font-size: 18px;
  }
}
@media only screen and (max-width: 1199px) {
  .cart-page__table-header-text {
    font-size: 17px;
  }
}
@media only screen and (max-width: 991px) {
  .cart-page__table-header-text {
    font-size: 15px;
  }
}
@media (max-width: 575px) {
  .cart-page__table-header-text {
    font-size: 14px;
  }
}
.cart-page__table-body {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 20px;
}
@media only screen and (max-width: 1399px) {
  .cart-page__table-body {
    gap: 18px;
  }
}
@media only screen and (max-width: 1199px) {
  .cart-page__table-body {
    gap: 16px;
  }
}
@media only screen and (max-width: 991px) {
  .cart-page__table-body {
    gap: 14px;
  }
}
@media only screen and (max-width: 767px) {
  .cart-page__table-body {
    gap: 14px;
  }
}
@media (max-width: 575px) {
  .cart-page__table-body {
    gap: 12px;
  }
}
.cart-page__item {
  padding: 20px 0;
  border-bottom: 1px solid #E6E6E6;
  width: 100%;
  max-width: 100%;
}
@media only screen and (max-width: 1399px) {
  .cart-page__item {
    padding: 18px 0;
  }
}
@media only screen and (max-width: 1199px) {
  .cart-page__item {
    padding: 16px 0;
  }
}
@media only screen and (max-width: 991px) {
  .cart-page__item {
    padding: 14px 0;
  }
}
@media (min-width: 768px) and (max-width: 991px) {
  .cart-page__item {
    min-width: 660px;
  }
}
@media only screen and (max-width: 767px) {
  .cart-page__item {
    padding: 14px 0;
  }
  .cart-page__item .row {
    flex-direction: column;
    align-items: center;
    gap: 12px;
  }
  .cart-page__item .col-md-5,
  .cart-page__item .col-md-2,
  .cart-page__item .col-md-1 {
    max-width: 100%;
    flex: 0 0 100%;
    text-align: center;
  }
  .cart-page__item .text-center {
    text-align: center;
  }
}
@media (max-width: 575px) {
  .cart-page__item {
    padding: 12px 0;
  }
  .cart-page__item .row {
    gap: 10px;
  }
}
.cart-page__item:last-child {
  border-bottom: none;
}
.cart-page__item-product {
  display: flex;
  align-items: center;
  gap: 16px;
}
@media only screen and (max-width: 1399px) {
  .cart-page__item-product {
    gap: 14px;
  }
}
@media only screen and (max-width: 1199px) {
  .cart-page__item-product {
    gap: 12px;
  }
}
@media only screen and (max-width: 991px) {
  .cart-page__item-product {
    gap: 12px;
  }
}
@media only screen and (max-width: 767px) {
  .cart-page__item-product {
    justify-content: center;
    margin-left: auto;
    margin-right: auto;
    width: fit-content;
    max-width: 100%;
  }
}
@media (max-width: 575px) {
  .cart-page__item-product {
    gap: 10px;
  }
}
.cart-page__item-product-image {
  width: 80px;
  height: 80px;
  border-radius: 8px;
  overflow: hidden;
  flex-shrink: 0;
  background: #FFFFFF;
  padding: 4px;
  display: flex;
  align-items: center;
  justify-content: center;
}
@media only screen and (max-width: 1199px) {
  .cart-page__item-product-image {
    width: 72px;
    height: 72px;
    border-radius: 6px;
  }
}
@media only screen and (max-width: 991px) {
  .cart-page__item-product-image {
    width: 68px;
    height: 68px;
  }
}
@media only screen and (max-width: 767px) {
  .cart-page__item-product-image {
    width: 70px;
    height: 70px;
  }
}
@media (max-width: 575px) {
  .cart-page__item-product-image {
    width: 60px;
    height: 60px;
    border-radius: 6px;
  }
}
.cart-page__item-product-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 4px;
}
.cart-page__item-product-info {
  flex: 1;
  min-width: 0;
}
.cart-page__item-product-title {
  margin: 0 0 6px 0;
  color: #0C0C0C;
  font-family: var(--font_Playfair);
  font-weight: 500;
  font-style: Medium;
  font-size: 18px;
  line-height: 24px;
  letter-spacing: 0px;
}
@media only screen and (max-width: 1399px) {
  .cart-page__item-product-title {
    font-size: 17px;
    line-height: 22px;
  }
}
@media only screen and (max-width: 1199px) {
  .cart-page__item-product-title {
    font-size: 16px;
    line-height: 22px;
  }
}
@media only screen and (max-width: 991px) {
  .cart-page__item-product-title {
    font-size: 16px;
    line-height: 21px;
  }
}
@media (max-width: 575px) {
  .cart-page__item-product-title {
    font-size: 15px;
    line-height: 21px;
  }
}
.cart-page__item-product-title a {
  color: inherit;
  text-decoration: none;
  transition: all 0.3s ease;
}
.cart-page__item-product-title a:hover {
  color: #EE2D7A;
}
.cart-page__item-product-sku {
  margin: 0;
  color: #5B5B5B;
  font-family: Lato;
  font-weight: 400;
  font-style: Regular;
  font-size: 14px;
  line-height: 20px;
  letter-spacing: 0px;
}
@media only screen and (max-width: 1399px) {
  .cart-page__item-product-sku {
    font-size: 13px;
  }
}
@media only screen and (max-width: 1199px) {
  .cart-page__item-product-sku {
    font-size: 13px;
  }
}
@media only screen and (max-width: 991px) {
  .cart-page__item-product-sku {
    font-size: 12px;
  }
}
@media (max-width: 575px) {
  .cart-page__item-product-sku {
    font-size: 12px;
  }
}
.cart-page__item-price {
  color: #0C0C0C;
  font-family: var(--font_Playfair);
  font-weight: 500;
  font-style: Medium;
  font-size: 16px;
  line-height: 24px;
  letter-spacing: 0px;
}
@media only screen and (max-width: 1399px) {
  .cart-page__item-price {
    font-size: 15px;
    line-height: 22px;
  }
}
@media only screen and (max-width: 1199px) {
  .cart-page__item-price {
    font-size: 14px;
    line-height: 20px;
  }
}
@media only screen and (max-width: 991px) {
  .cart-page__item-price {
    font-size: 14px;
    line-height: 20px;
  }
}
@media only screen and (max-width: 767px) {
  .cart-page__item-price::before {
    content: "Price: ";
    font-weight: 600;
    margin-right: 6px;
  }
}
@media (max-width: 575px) {
  .cart-page__item-price {
    font-size: 14px;
  }
}
.cart-page__item-qty {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  background: #FFFFFF;
  border-radius: 8px;
  padding: 8px 12px;
}
@media only screen and (max-width: 1199px) {
  .cart-page__item-qty {
    gap: 10px;
    padding: 6px 10px;
    border-radius: 6px;
  }
}
@media only screen and (max-width: 991px) {
  .cart-page__item-qty {
    gap: 8px;
    padding: 6px 8px;
    border-radius: 6px;
  }
}
@media only screen and (max-width: 767px) {
  .cart-page__item-qty {
    flex-wrap: wrap;
  }
  .cart-page__item-qty::before {
    content: "Quantity: ";
    display: block;
    width: 100%;
    font-family: var(--font_Playfair);
    font-weight: 600;
    font-size: 14px;
    color: #0C0C0C;
    margin-bottom: 6px;
  }
}
@media (max-width: 575px) {
  .cart-page__item-qty {
    gap: 8px;
    padding: 6px 10px;
  }
}
.cart-page__item-subtotal {
  color: #EE2D7A;
  font-family: var(--font_Playfair);
  font-weight: 500;
  font-style: Medium;
  font-size: 16px;
  line-height: 24px;
  letter-spacing: 0px;
}
@media only screen and (max-width: 1399px) {
  .cart-page__item-subtotal {
    font-size: 15px;
    line-height: 22px;
  }
}
@media only screen and (max-width: 1199px) {
  .cart-page__item-subtotal {
    font-size: 14px;
    line-height: 20px;
  }
}
@media only screen and (max-width: 991px) {
  .cart-page__item-subtotal {
    font-size: 14px;
    line-height: 20px;
  }
}
@media only screen and (max-width: 767px) {
  .cart-page__item-subtotal::before {
    content: "Subtotal: ";
    font-weight: 600;
    margin-right: 6px;
    color: #0C0C0C;
  }
}
@media (max-width: 575px) {
  .cart-page__item-subtotal {
    font-size: 14px;
  }
}
@media only screen and (max-width: 1399px) {
  .cart-page__item .row {
    flex-wrap: nowrap;
  }
  .cart-page__item .row > .col-md-1 {
    flex: 0 0 auto;
    min-width: 40px;
    max-width: none;
  }
  .cart-page__item .row > .col-md-5 {
    min-width: 0;
    flex: 1 1 0;
  }
}
@media only screen and (max-width: 1199px) {
  .cart-page__item .row > .col-md-1 {
    min-width: 38px;
  }
}
@media only screen and (max-width: 991px) {
  .cart-page__item .row > .col-md-1 {
    min-width: 36px;
  }
}
.cart-page__qty-btn {
  width: 28px;
  height: 28px;
  border: 0;
  background: #FFDEE5;
  font-size: 18px;
  line-height: 1;
  cursor: pointer;
  color: #EE2D7A;
  transition: all 0.3s ease;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 4px;
}
@media only screen and (max-width: 1399px) {
  .cart-page__qty-btn {
    width: 26px;
    height: 26px;
    font-size: 16px;
  }
}
@media only screen and (max-width: 1199px) {
  .cart-page__qty-btn {
    width: 26px;
    height: 26px;
    font-size: 16px;
  }
}
@media only screen and (max-width: 991px) {
  .cart-page__qty-btn {
    width: 24px;
    height: 24px;
    font-size: 15px;
  }
}
@media (max-width: 575px) {
  .cart-page__qty-btn {
    width: 24px;
    height: 24px;
    font-size: 16px;
  }
}
.cart-page__qty-btn:hover:not(:disabled) {
  background: #EE2D7A;
  color: #FFFFFF;
  transform: scale(1.1);
}
.cart-page__qty-btn:active:not(:disabled) {
  transform: scale(0.95);
}
.cart-page__qty-btn:disabled {
  opacity: 0.4;
  cursor: not-allowed;
}
.cart-page__qty-input {
  width: 50px;
  text-align: center;
  border: none;
  background: transparent;
  color: #0C0C0C;
  font-family: var(--font_Playfair);
  font-weight: 500;
  font-style: Medium;
  font-size: 16px;
  line-height: 24px;
  letter-spacing: 0px;
  outline: none;
  appearance: textfield;
  -moz-appearance: textfield;
}
@media only screen and (max-width: 1399px) {
  .cart-page__qty-input {
    width: 44px;
    font-size: 14px;
  }
}
@media only screen and (max-width: 1199px) {
  .cart-page__qty-input {
    width: 44px;
    font-size: 14px;
  }
}
@media only screen and (max-width: 991px) {
  .cart-page__qty-input {
    width: 40px;
    font-size: 13px;
  }
}
@media (max-width: 575px) {
  .cart-page__qty-input {
    width: 40px;
    font-size: 14px;
  }
}
.cart-page__qty-input::-webkit-outer-spin-button, .cart-page__qty-input::-webkit-inner-spin-button {
  appearance: none;
  -webkit-appearance: none;
  margin: 0;
}
.cart-page__remove {
  width: 36px;
  height: 36px;
  border: none;
  background: #FFDEE5;
  color: #EE2D7A;
  border-radius: 8px;
  cursor: pointer;
  transition: all 0.3s ease;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 16px;
  flex-shrink: 0;
}
@media only screen and (max-width: 1399px) {
  .cart-page__remove {
    width: 34px;
    height: 34px;
    font-size: 15px;
    border-radius: 6px;
  }
}
@media only screen and (max-width: 1199px) {
  .cart-page__remove {
    width: 32px;
    height: 32px;
    font-size: 14px;
    border-radius: 6px;
  }
}
@media only screen and (max-width: 991px) {
  .cart-page__remove {
    width: 32px;
    height: 32px;
    font-size: 14px;
    border-radius: 6px;
  }
}
@media (max-width: 575px) {
  .cart-page__remove {
    width: 32px;
    height: 32px;
    font-size: 14px;
  }
}
.cart-page__remove:hover {
  background: #EE2D7A;
  color: #FFFFFF;
  transform: scale(1.1);
}
.cart-page__remove:active {
  transform: scale(0.95);
}
.cart-page__actions {
  margin-bottom: 30px;
}
@media only screen and (max-width: 1399px) {
  .cart-page__actions {
    margin-bottom: 28px;
  }
}
@media only screen and (max-width: 1199px) {
  .cart-page__actions {
    margin-bottom: 26px;
  }
}
@media only screen and (max-width: 991px) {
  .cart-page__actions {
    margin-bottom: 24px;
  }
}
@media only screen and (max-width: 767px) {
  .cart-page__actions {
    margin-bottom: 22px;
  }
  .cart-page__actions .row {
    flex-direction: column;
    align-items: center;
    gap: 14px;
    text-align: center;
  }
  .cart-page__actions .col-md-6 {
    max-width: 100%;
    flex: 0 0 100%;
  }
  .cart-page__actions .col-md-6.text-end {
    text-align: center !important;
  }
}
@media (max-width: 575px) {
  .cart-page__actions {
    margin-bottom: 20px;
  }
  .cart-page__actions .row {
    gap: 12px;
  }
}
.cart-page__continue-shopping {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: #0C0C0C;
  font-family: Lato;
  font-weight: 400;
  font-style: Regular;
  font-size: 16px;
  line-height: 26px;
  letter-spacing: 0px;
  text-decoration: none;
  transition: all 0.3s ease;
}
@media only screen and (max-width: 1399px) {
  .cart-page__continue-shopping {
    font-size: 15px;
  }
}
@media only screen and (max-width: 1199px) {
  .cart-page__continue-shopping {
    font-size: 15px;
  }
}
@media only screen and (max-width: 991px) {
  .cart-page__continue-shopping {
    font-size: 14px;
  }
}
@media (max-width: 575px) {
  .cart-page__continue-shopping {
    font-size: 14px;
  }
}
.cart-page__continue-shopping:hover {
  color: #EE2D7A;
}
.cart-page__continue-shopping i {
  font-size: 14px;
}
.cart-page__update-cart {
  background: #0C0C0C;
  color: #FFFFFF;
  border: none;
  border-radius: 8px;
  padding: 12px 24px;
  font-family: var(--font_Playfair);
  font-weight: 500;
  font-style: Medium;
  font-size: 16px;
  line-height: 24px;
  letter-spacing: 0px;
  text-transform: capitalize;
  cursor: pointer;
  transition: all 0.3s ease;
}
@media (max-width: 575px) {
  .cart-page__update-cart {
    padding: 10px 20px;
    font-size: 14px;
    width: 100%;
  }
}
.cart-page__update-cart:hover {
  background: #EE2D7A;
  transform: translateY(-2px);
  box-shadow: 0 4px 12px rgba(238, 45, 122, 0.3);
}
.cart-page__update-cart:active {
  transform: translateY(0);
}
.cart-page__coupon {
  background: #FFEFF2;
  border-radius: 8px;
  padding: 24px;
  margin-bottom: 30px;
}
@media only screen and (max-width: 1399px) {
  .cart-page__coupon {
    padding: 22px;
    margin-bottom: 28px;
  }
}
@media only screen and (max-width: 1199px) {
  .cart-page__coupon {
    padding: 20px;
    margin-bottom: 26px;
  }
}
@media only screen and (max-width: 991px) {
  .cart-page__coupon {
    padding: 20px;
    margin-bottom: 24px;
  }
}
@media only screen and (max-width: 767px) {
  .cart-page__coupon {
    padding: 18px;
    margin-bottom: 22px;
  }
  .cart-page__coupon .row {
    flex-direction: column;
    gap: 12px;
  }
  .cart-page__coupon .col-md-8,
  .cart-page__coupon .col-md-4 {
    max-width: 100%;
    flex: 0 0 100%;
  }
}
@media (max-width: 575px) {
  .cart-page__coupon {
    padding: 16px;
    margin-bottom: 20px;
    border-radius: 6px;
  }
}
.cart-page__coupon-title {
  color: #0C0C0C;
  font-family: var(--font_Playfair);
  font-weight: 700;
  font-style: Bold;
  font-size: 20px;
  line-height: 26px;
  letter-spacing: 0px;
  text-transform: capitalize;
  margin-bottom: 8px;
}
@media only screen and (max-width: 1399px) {
  .cart-page__coupon-title {
    font-size: 19px;
  }
}
@media only screen and (max-width: 1199px) {
  .cart-page__coupon-title {
    font-size: 18px;
  }
}
@media only screen and (max-width: 991px) {
  .cart-page__coupon-title {
    font-size: 18px;
  }
}
@media (max-width: 575px) {
  .cart-page__coupon-title {
    font-size: 17px;
  }
}
.cart-page__coupon-text {
  color: #5B5B5B;
  font-family: Lato;
  font-weight: 400;
  font-style: Regular;
  font-size: 14px;
  line-height: 22px;
  letter-spacing: 0px;
  margin-bottom: 16px;
}
@media only screen and (max-width: 1199px) {
  .cart-page__coupon-text {
    font-size: 13px;
    margin-bottom: 14px;
  }
}
@media (max-width: 575px) {
  .cart-page__coupon-text {
    font-size: 13px;
    margin-bottom: 12px;
  }
}
.cart-page__coupon-form {
  margin-top: 16px;
}
@media only screen and (max-width: 1199px) {
  .cart-page__coupon-form {
    margin-top: 14px;
  }
}
@media (max-width: 575px) {
  .cart-page__coupon-form {
    margin-top: 12px;
  }
}
.cart-page__coupon-input {
  width: 100%;
  background: #FFFFFF;
  border: none;
  border-radius: 50px;
  padding: 12px 20px;
  color: #0C0C0C;
  font-family: Lato;
  font-weight: 400;
  font-style: Regular;
  font-size: 16px;
  line-height: 26px;
  letter-spacing: 0px;
  outline: none;
  transition: all 0.3s ease;
}
@media only screen and (max-width: 1199px) {
  .cart-page__coupon-input {
    padding: 11px 18px;
    font-size: 15px;
  }
}
@media (max-width: 575px) {
  .cart-page__coupon-input {
    padding: 10px 16px;
    font-size: 14px;
    margin-bottom: 12px;
  }
}
.cart-page__coupon-input::placeholder {
  color: #5B5B5B;
  font-size: 16px;
}
@media only screen and (max-width: 1199px) {
  .cart-page__coupon-input::placeholder {
    font-size: 15px;
  }
}
@media (max-width: 575px) {
  .cart-page__coupon-input::placeholder {
    font-size: 14px;
  }
}
.cart-page__coupon-input:focus {
  box-shadow: 0 0 0 2px #EE2D7A;
}
.cart-page__coupon-btn {
  width: 100%;
  background: #0C0C0C;
  color: #FFFFFF;
  border: none;
  border-radius: 8px;
  padding: 12px 24px;
  font-family: var(--font_Playfair);
  font-weight: 500;
  font-style: Medium;
  font-size: 16px;
  line-height: 24px;
  letter-spacing: 0px;
  text-transform: capitalize;
  cursor: pointer;
  transition: all 0.3s ease;
}
@media (max-width: 575px) {
  .cart-page__coupon-btn {
    padding: 10px 20px;
    font-size: 14px;
  }
}
.cart-page__coupon-btn:hover {
  background: #EE2D7A;
  transform: translateY(-2px);
  box-shadow: 0 4px 12px rgba(238, 45, 122, 0.3);
}
.cart-page__coupon-btn:active {
  transform: translateY(0);
}
.cart-page__totals {
  position: sticky;
  top: 100px;
}
@media only screen and (max-width: 1199px) {
  .cart-page__totals {
    position: static;
    margin-top: 36px;
  }
}
@media only screen and (max-width: 991px) {
  .cart-page__totals {
    position: static;
    margin-top: 32px;
  }
}
@media only screen and (max-width: 767px) {
  .cart-page__totals {
    margin-top: 28px;
  }
}
@media (max-width: 575px) {
  .cart-page__totals {
    margin-top: 24px;
  }
}
.cart-page__totals-title {
  color: #0C0C0C;
  font-family: var(--font_Playfair);
  font-weight: 700;
  font-style: Bold;
  font-size: 24px;
  line-height: 30px;
  letter-spacing: 0px;
  text-transform: capitalize;
  margin-bottom: 24px;
}
@media only screen and (max-width: 1399px) {
  .cart-page__totals-title {
    font-size: 22px;
    margin-bottom: 22px;
  }
}
@media only screen and (max-width: 1199px) {
  .cart-page__totals-title {
    font-size: 22px;
    margin-bottom: 20px;
  }
}
@media only screen and (max-width: 991px) {
  .cart-page__totals-title {
    font-size: 21px;
    margin-bottom: 18px;
  }
}
@media (max-width: 575px) {
  .cart-page__totals-title {
    font-size: 20px;
    margin-bottom: 18px;
  }
}
.cart-page__totals-card {
  background: #FFEFF2;
  border-radius: 8px;
  padding: 24px;
  margin-bottom: 24px;
}
@media only screen and (max-width: 1399px) {
  .cart-page__totals-card {
    padding: 22px;
    margin-bottom: 22px;
  }
}
@media only screen and (max-width: 1199px) {
  .cart-page__totals-card {
    padding: 20px;
    margin-bottom: 20px;
  }
}
@media (max-width: 575px) {
  .cart-page__totals-card {
    padding: 18px;
    margin-bottom: 18px;
    border-radius: 6px;
  }
}
.cart-page__totals-row {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  padding: 12px 0;
  border-bottom: 1px solid #E6E6E6;
  gap: 16px;
}
@media (max-width: 575px) {
  .cart-page__totals-row {
    flex-direction: column;
    align-items: flex-start;
    gap: 8px;
    padding: 14px 0;
  }
}
@media only screen and (max-width: 1199px) {
  .cart-page__totals-row {
    padding: 11px 0;
  }
}
@media (max-width: 575px) {
  .cart-page__totals-row {
    padding: 10px 0;
  }
}
.cart-page__totals-row:last-child {
  border-bottom: none;
}
.cart-page__totals-row--total {
  padding-top: 16px;
  margin-top: 8px;
  border-top: 2px solid #E6E6E6;
  border-bottom: none;
}
@media (max-width: 575px) {
  .cart-page__totals-row--total {
    padding-top: 14px;
    margin-top: 6px;
  }
}
.cart-page__totals-label {
  color: #0C0C0C;
  font-family: Lato;
  font-weight: 400;
  font-style: Regular;
  font-size: 16px;
  line-height: 26px;
  letter-spacing: 0px;
  margin-right: 10px;
}
@media only screen and (max-width: 1399px) {
  .cart-page__totals-label {
    font-size: 15px;
  }
}
.cart-page__totals-value {
  color: #0C0C0C;
  font-family: var(--font_Playfair);
  font-weight: 500;
  font-style: Medium;
  font-size: 16px;
  line-height: 26px;
  letter-spacing: 0px;
  text-align: right;
}
@media only screen and (max-width: 1399px) {
  .cart-page__totals-value {
    font-size: 15px;
  }
}
@media only screen and (max-width: 1199px) {
  .cart-page__totals-value {
    font-size: 15px;
  }
}
@media (max-width: 575px) {
  .cart-page__totals-value {
    font-size: 14px;
    line-height: 22px;
    text-align: left;
  }
}
.cart-page__totals-value--muted {
  color: #5B5B5B;
  font-family: Lato;
  font-weight: 400;
}
.cart-page__totals-value--highlight {
  color: #EE2D7A;
  font-size: 18px;
  font-weight: 700;
}
@media only screen and (max-width: 1399px) {
  .cart-page__totals-value--highlight {
    font-size: 17px;
  }
}
@media only screen and (max-width: 1199px) {
  .cart-page__totals-value--highlight {
    font-size: 17px;
  }
}
@media (max-width: 575px) {
  .cart-page__totals-value--highlight {
    font-size: 16px;
  }
}
.cart-page__checkout-btn {
  width: 100%;
  background: #0C0C0C;
  color: #FFFFFF;
  border: none;
  border-radius: 50px;
  padding: 18px 30px;
  font-family: var(--font_Playfair);
  font-weight: 500;
  font-style: Medium;
  font-size: 18px;
  line-height: 24px;
  letter-spacing: 0px;
  text-transform: capitalize;
  text-decoration: none;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  transition: all 0.3s ease;
  cursor: pointer;
}
@media only screen and (max-width: 1399px) {
  .cart-page__checkout-btn {
    padding: 16px 28px;
    font-size: 17px;
  }
}
@media only screen and (max-width: 1199px) {
  .cart-page__checkout-btn {
    padding: 16px 26px;
    font-size: 17px;
  }
}
@media only screen and (max-width: 991px) {
  .cart-page__checkout-btn {
    padding: 16px 24px;
    font-size: 16px;
  }
}
@media (max-width: 575px) {
  .cart-page__checkout-btn {
    padding: 16px 24px;
    font-size: 16px;
  }
}
.cart-page__checkout-btn:hover {
  background: #EE2D7A;
  transform: translateY(-2px);
  box-shadow: 0 4px 12px rgba(238, 45, 122, 0.3);
  color: #FFFFFF;
}
.cart-page__checkout-btn:active {
  transform: translateY(0);
}
.cart-page__checkout-btn i {
  font-size: 16px;
  transition: transform 0.3s ease;
}
.cart-page__checkout-btn:hover i {
  transform: translateX(4px);
}

/* === Checkout Page Section === */
.checkout-page__billing {
  margin-bottom: 40px;
}
@media only screen and (max-width: 1199px) {
  .checkout-page__billing {
    margin-bottom: 30px;
  }
}
@media (max-width: 575px) {
  .checkout-page__billing {
    margin-bottom: 30px;
  }
}
.checkout-page__billing-title {
  color: #0C0C0C;
  font-family: var(--font_Playfair);
  font-weight: 700;
  font-style: Bold;
  font-size: 24px;
  line-height: 30px;
  letter-spacing: 0px;
  text-transform: capitalize;
  margin-bottom: 30px;
}
@media only screen and (max-width: 1199px) {
  .checkout-page__billing-title {
    font-size: 22px;
    margin-bottom: 24px;
  }
}
@media (max-width: 575px) {
  .checkout-page__billing-title {
    font-size: 20px;
    margin-bottom: 24px;
  }
}
.checkout-page__banner {
  background: #FFEFF2;
  border-radius: 8px;
  padding: 15px 20px;
  margin-bottom: 20px;
}
@media (max-width: 575px) {
  .checkout-page__banner {
    padding: 12px 16px;
    margin-bottom: 16px;
  }
}
.checkout-page__banner-text {
  color: #0C0C0C;
  font-family: Lato;
  font-weight: 400;
  font-style: Regular;
  font-size: 16px;
  line-height: 26px;
  letter-spacing: 0px;
  margin: 0;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 10px;
}
@media (max-width: 575px) {
  .checkout-page__banner-text {
    font-size: 14px;
    line-height: 22px;
    flex-wrap: wrap;
  }
}
.checkout-page__banner-link {
  color: #EE2D7A;
  text-decoration: none;
  transition: all 0.3s ease;
}
.checkout-page__banner-link:hover {
  color: #EE2D7A;
  text-decoration: underline;
}
.checkout-page__banner-icon {
  color: #0C0C0C;
  font-size: 14px;
  transition: transform 0.3s ease;
  cursor: pointer;
}
.checkout-page__banner-icon.active {
  transform: rotate(180deg);
}
.checkout-page__billing-form-group {
  margin-bottom: 24px;
}
@media (max-width: 575px) {
  .checkout-page__billing-form-group {
    margin-bottom: 20px;
  }
}
.checkout-page__billing-form-label {
  color: #0C0C0C;
  font-family: var(--font_Playfair);
  font-weight: 500;
  font-style: Medium;
  display: block;
  font-size: 20px;
  line-height: 26px;
  letter-spacing: 0px;
  margin-bottom: 12px;
  margin-top: 5px;
}
@media (max-width: 575px) {
  .checkout-page__billing-form-label {
    font-size: 17px;
    margin-bottom: 10px;
  }
}
.checkout-page__billing-form-required {
  color: #EE2D7A;
}
.checkout-page__billing-form-input {
  width: 100%;
  background: #FFEFF2;
  border: none;
  border-radius: 8px;
  padding: 15px 20px;
  color: #0C0C0C;
  font-family: Lato;
  font-weight: 400;
  font-style: Regular;
  font-size: 16px;
  line-height: 26px;
  letter-spacing: 0px;
  outline: none;
  transition: all 0.3s ease;
  margin-bottom: 12px;
}
@media (max-width: 575px) {
  .checkout-page__billing-form-input {
    padding: 13px 18px;
    font-size: 14px;
    margin-bottom: 10px;
  }
}
.checkout-page__billing-form-input::placeholder {
  color: #5B5B5B;
  font-size: 16px;
}
@media (max-width: 575px) {
  .checkout-page__billing-form-input::placeholder {
    font-size: 14px;
  }
}
.checkout-page__billing-form-input:focus {
  background: #FFDEE5;
}
.checkout-page__billing-form-input--optional {
  margin-top: 12px;
  margin-bottom: 0;
}
@media (max-width: 575px) {
  .checkout-page__billing-form-input--optional {
    margin-top: 10px;
  }
}
.checkout-page__billing-form-select {
  width: 100%;
  height: 56px;
  line-height: 56px;
  background: #FFEFF2;
  border: none;
  border-radius: 8px;
  padding: 0 20px;
  color: #0C0C0C;
  font-family: Lato;
  font-weight: 400;
  font-style: Regular;
  font-size: 16px;
  letter-spacing: 0px;
  outline: none;
  cursor: pointer;
  float: none;
}
.checkout-page__billing-form-select::after {
  border-bottom: 2px solid #0C0C0C;
  border-right: 2px solid #0C0C0C;
  height: 8px;
  width: 8px;
  right: 20px;
}
.checkout-page__billing-form-select .current {
  font-size: 16px;
  color: #0C0C0C;
}
.checkout-page__billing-form-select .list {
  width: 100%;
  background: #FFFFFF;
  border-radius: 8px;
  margin-top: 5px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
}
.checkout-page__billing-form-select .list .option {
  padding-left: 20px;
  padding-right: 20px;
  line-height: 44px;
  min-height: 44px;
  font-size: 15px;
}
.checkout-page__billing-form-select .list .option:hover, .checkout-page__billing-form-select .list .option.focus, .checkout-page__billing-form-select .list .option.selected.focus {
  background-color: #FFEFF2;
  color: #EE2D7A;
}
@media (max-width: 575px) {
  .checkout-page__billing-form-select {
    height: 48px;
    line-height: 48px;
    padding: 0 18px;
    font-size: 14px;
  }
  .checkout-page__billing-form-select .current {
    font-size: 14px;
  }
}
.checkout-page__billing-form-select:focus {
  background: #FFDEE5;
}
.checkout-page__billing-form-checkbox {
  display: flex;
  align-items: center;
  gap: 12px;
  cursor: pointer;
  margin: 0;
}
@media (max-width: 575px) {
  .checkout-page__billing-form-checkbox {
    gap: 10px;
  }
}
.checkout-page__billing-form-checkbox-input {
  width: 18px;
  height: 18px;
  cursor: pointer;
  accent-color: #EE2D7A;
}
.checkout-page__billing-form-checkbox-label {
  color: #0C0C0C;
  font-family: Lato;
  font-weight: 400;
  font-style: Regular;
  font-size: 16px;
  line-height: 26px;
  letter-spacing: 0px;
  margin: 0;
}
@media (max-width: 575px) {
  .checkout-page__billing-form-checkbox-label {
    font-size: 14px;
    line-height: 22px;
  }
}
.checkout-page__billing-form-textarea {
  width: 100%;
  background: #FFEFF2;
  border: none;
  border-radius: 8px;
  padding: 15px 20px;
  color: #0C0C0C;
  font-family: Lato;
  font-weight: 400;
  font-style: Regular;
  font-size: 16px;
  line-height: 26px;
  letter-spacing: 0px;
  outline: none;
  resize: none;
  min-height: 120px;
  transition: all 0.3s ease;
}
@media (max-width: 575px) {
  .checkout-page__billing-form-textarea {
    padding: 13px 18px;
    font-size: 14px;
    min-height: 100px;
  }
}
.checkout-page__billing-form-textarea::placeholder {
  color: #5B5B5B;
  font-size: 16px;
}
@media (max-width: 575px) {
  .checkout-page__billing-form-textarea::placeholder {
    font-size: 14px;
  }
}
.checkout-page__billing-form-textarea:focus {
  background: #FFDEE5;
}
@media only screen and (max-width: 1199px) {
  .checkout-page__order {
    margin-top: 40px;
  }
}
@media only screen and (max-width: 991px) {
  .checkout-page__order {
    margin-top: 40px;
  }
}
.checkout-page__order-title {
  color: #0C0C0C;
  font-family: var(--font_Playfair);
  font-weight: 700;
  font-style: Bold;
  font-size: 24px;
  line-height: 30px;
  letter-spacing: 0px;
  text-transform: capitalize;
  margin-bottom: 30px;
}
@media only screen and (max-width: 1199px) {
  .checkout-page__order-title {
    font-size: 22px;
    margin-bottom: 24px;
  }
}
@media (max-width: 575px) {
  .checkout-page__order-title {
    font-size: 20px;
    margin-bottom: 24px;
  }
}
.checkout-page__order-summary {
  background: #FFEFF2;
  border-radius: 8px;
  padding: 24px;
  margin-bottom: 24px;
}
@media (max-width: 575px) {
  .checkout-page__order-summary {
    padding: 20px;
    margin-bottom: 20px;
  }
}
.checkout-page__order-summary-item {
  display: flex;
  align-items: center;
  gap: 16px;
  padding-bottom: 20px;
  margin-bottom: 20px;
  border-bottom: 1px solid #E6E6E6;
}
@media (max-width: 575px) {
  .checkout-page__order-summary-item {
    gap: 12px;
    padding-bottom: 16px;
    margin-bottom: 16px;
  }
}
.checkout-page__order-summary-item-image {
  width: 60px;
  height: 60px;
  border-radius: 8px;
  overflow: hidden;
  flex-shrink: 0;
  background: #FFFFFF;
  padding: 4px;
  display: flex;
  align-items: center;
  justify-content: center;
}
@media (max-width: 575px) {
  .checkout-page__order-summary-item-image {
    width: 50px;
    height: 50px;
  }
}
.checkout-page__order-summary-item-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 4px;
}
.checkout-page__order-summary-item-content {
  flex: 1;
  min-width: 0;
}
.checkout-page__order-summary-item-title {
  color: #0C0C0C;
  font-family: var(--font_Playfair);
  font-weight: 500;
  font-style: Medium;
  font-size: 18px;
  line-height: 24px;
  letter-spacing: 0px;
  margin-bottom: 6px;
}
@media (max-width: 575px) {
  .checkout-page__order-summary-item-title {
    font-size: 16px;
    line-height: 22px;
  }
}
.checkout-page__order-summary-item-quantity {
  color: #5B5B5B;
  font-family: Lato;
  font-weight: 400;
  font-style: Regular;
  font-size: 14px;
  line-height: 20px;
  letter-spacing: 0px;
  margin: 0;
}
.checkout-page__order-summary-item-price {
  color: #EE2D7A;
  font-family: var(--font_Playfair);
  font-weight: 500;
  font-style: Medium;
  font-size: 18px;
  line-height: 24px;
  letter-spacing: 0px;
  white-space: nowrap;
}
@media (max-width: 575px) {
  .checkout-page__order-summary-item-price {
    font-size: 16px;
  }
}
.checkout-page__order-summary-totals-row {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  padding: 12px 0;
  border-bottom: 1px solid #E6E6E6;
  gap: 16px;
}
@media (max-width: 575px) {
  .checkout-page__order-summary-totals-row {
    flex-direction: column;
    align-items: flex-start;
    gap: 8px;
    padding: 10px 0;
  }
}
.checkout-page__order-summary-totals-row:last-child {
  border-bottom: none;
}
.checkout-page__order-summary-totals-row--total {
  padding-top: 16px;
  margin-top: 8px;
  border-top: 2px solid #E6E6E6;
  border-bottom: none;
}
@media (max-width: 575px) {
  .checkout-page__order-summary-totals-row--total {
    padding-top: 14px;
    margin-top: 6px;
  }
}
.checkout-page__order-summary-totals-label {
  color: #0C0C0C;
  font-family: Lato;
  font-weight: 400;
  font-style: Regular;
  font-size: 16px;
  line-height: 26px;
  letter-spacing: 0px;
}
@media (max-width: 575px) {
  .checkout-page__order-summary-totals-label {
    font-size: 14px;
    line-height: 22px;
  }
}
.checkout-page__order-summary-totals-value {
  color: #0C0C0C;
  font-family: var(--font_Playfair);
  font-weight: 500;
  font-style: Medium;
  font-size: 16px;
  line-height: 26px;
  letter-spacing: 0px;
}
@media (max-width: 575px) {
  .checkout-page__order-summary-totals-value {
    font-size: 14px;
    line-height: 22px;
  }
}
.checkout-page__order-summary-totals-value--muted {
  color: #5B5B5B;
  font-family: Lato;
  font-weight: 400;
}
.checkout-page__order-summary-totals-value--highlight {
  color: #EE2D7A;
  font-size: 18px;
  font-weight: 700;
}
@media (max-width: 575px) {
  .checkout-page__order-summary-totals-value--highlight {
    font-size: 16px;
  }
}
.checkout-page__payment {
  background: #FFEFF2;
  border-radius: 8px;
  padding: 24px;
  margin-bottom: 24px;
}
@media (max-width: 575px) {
  .checkout-page__payment {
    padding: 20px;
    margin-bottom: 20px;
  }
}
.checkout-page__payment-option {
  margin-bottom: 20px;
}
@media (max-width: 575px) {
  .checkout-page__payment-option {
    margin-bottom: 16px;
  }
}
.checkout-page__payment-option:last-child {
  margin-bottom: 0;
}
.checkout-page__payment-option-label {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  cursor: pointer;
  margin: 0;
}
@media (max-width: 575px) {
  .checkout-page__payment-option-label {
    gap: 10px;
  }
}
.checkout-page__payment-option-input {
  width: 18px;
  height: 18px;
  margin-top: 4px;
  cursor: pointer;
  accent-color: #EE2D7A;
  flex-shrink: 0;
}
.checkout-page__payment-option-text {
  display: flex;
  align-items: center;
  gap: 10px;
  color: #0C0C0C;
  font-family: Lato;
  font-weight: 400;
  font-style: Regular;
  font-size: 16px;
  line-height: 26px;
  letter-spacing: 0px;
  flex: 1;
}
@media (max-width: 575px) {
  .checkout-page__payment-option-text {
    font-size: 14px;
    line-height: 22px;
  }
}
.checkout-page__payment-option-text strong {
  font-weight: 600;
  display: block;
}
.checkout-page__payment-option-description {
  display: block;
  color: #5B5B5B;
  font-size: 14px;
  line-height: 22px;
}
@media (max-width: 575px) {
  .checkout-page__payment-option-description {
    font-size: 13px;
    line-height: 20px;
  }
}
.checkout-page__payment-option-icons {
  display: flex;
  align-items: center;
  gap: 8px;
  flex-wrap: wrap;
}
@media (max-width: 575px) {
  .checkout-page__payment-option-icons {
    gap: 6px;
    margin-top: 6px;
  }
}
.checkout-page__payment-option-icons img {
  height: 20px;
  width: auto;
  object-fit: contain;
}
@media (max-width: 575px) {
  .checkout-page__payment-option-icons img {
    height: 18px;
  }
}
.checkout-page__payment-option-link {
  color: #EE2D7A;
  text-decoration: none;
  font-size: 14px;
  margin-left: 8px;
  transition: all 0.3s ease;
}
@media (max-width: 575px) {
  .checkout-page__payment-option-link {
    font-size: 13px;
    margin-left: 6px;
  }
}
.checkout-page__payment-option-link:hover {
  color: #EE2D7A;
  text-decoration: underline;
}
.checkout-page__place-order-btn {
  width: 100%;
  background: #0C0C0C;
  color: #FFFFFF;
  border: none;
  border-radius: 8px;
  padding: 18px 30px;
  font-family: var(--font_Playfair);
  font-weight: 500;
  font-style: Medium;
  font-size: 18px;
  line-height: 24px;
  letter-spacing: 0px;
  text-transform: capitalize;
  cursor: pointer;
  transition: all 0.3s ease;
}
@media (max-width: 575px) {
  .checkout-page__place-order-btn {
    padding: 16px 24px;
    font-size: 16px;
  }
}
.checkout-page__place-order-btn:hover {
  background: #EE2D7A;
  transform: translateY(-2px);
  box-shadow: 0 4px 12px rgba(238, 45, 122, 0.3);
}
.checkout-page__place-order-btn:active {
  transform: translateY(0);
}

/* === Contact Section  === */
.contact2 .section-heading__title {
  font-weight: 700;
  font-style: Bold;
  font-size: 40px;
  line-height: 48px;
  letter-spacing: -0.5px;
  margin-bottom: 10px;
}
@media only screen and (max-width: 1199px) {
  .contact2 .section-heading__title {
    font-size: 36px;
    line-height: 44px;
  }
}
@media only screen and (max-width: 991px) {
  .contact2 .section-heading__title {
    font-size: 32px;
    line-height: 40px;
    margin-bottom: 8px;
  }
}
@media (max-width: 575px) {
  .contact2 .section-heading__title {
    font-size: 28px;
    line-height: 36px;
    margin-bottom: 8px;
  }
}
.contact2 .section-heading__text {
  color: #5B5B5B;
  font-family: Lato;
  font-weight: 400;
  font-style: Regular;
  font-size: 14px;
  line-height: 22px;
  letter-spacing: 0px;
  text-align: center;
  border-bottom: 1px solid #E6E6E6;
  padding: 3px 0px 24px;
}
@media only screen and (max-width: 991px) {
  .contact2 .section-heading__text {
    font-size: 13px;
    line-height: 20px;
    padding: 3px 0px 20px;
  }
}
@media (max-width: 575px) {
  .contact2 .section-heading__text {
    font-size: 12px;
    line-height: 18px;
    padding: 3px 0px 18px;
  }
}
.contact2-form {
  position: relative;
}
.contact2-form__input-name {
  color: #0C0C0C;
  font-family: var(--font_Playfair);
  font-weight: 500;
  font-style: Medium;
  display: block;
  font-size: 20px;
  line-height: 26px;
  letter-spacing: 0px;
  margin-bottom: 12px;
}
@media only screen and (max-width: 991px) {
  .contact2-form__input-name {
    font-size: 18px;
    line-height: 24px;
    margin-bottom: 10px;
  }
}
@media (max-width: 575px) {
  .contact2-form__input-name {
    font-size: 16px;
    line-height: 22px;
    margin-bottom: 8px;
  }
}
.contact2-form__input-field {
  position: relative;
  background: #FFEFF2;
  padding: 15px 20px;
  border-radius: 8px;
  font-family: Lato;
  font-weight: 400;
  font-style: Regular;
  font-size: 16px;
  line-height: 26px;
  letter-spacing: 0px;
  width: 100%;
  border: none;
}
@media only screen and (max-width: 991px) {
  .contact2-form__input-field {
    padding: 12px 18px;
    font-size: 15px;
    line-height: 24px;
  }
}
@media (max-width: 575px) {
  .contact2-form__input-field {
    padding: 10px 16px;
    font-size: 14px;
    line-height: 22px;
  }
}
.contact2-form__input-field::placeholder {
  font-size: 16px;
  font-weight: 400;
  line-height: 23px;
}
@media only screen and (max-width: 991px) {
  .contact2-form__input-field::placeholder {
    font-size: 15px;
    line-height: 22px;
  }
}
@media (max-width: 575px) {
  .contact2-form__input-field::placeholder {
    font-size: 14px;
    line-height: 20px;
  }
}
.contact2-form__input .textarea {
  height: 163px;
}
@media only screen and (max-width: 991px) {
  .contact2-form__input .textarea {
    height: 140px;
  }
}
@media (max-width: 575px) {
  .contact2-form__input .textarea {
    height: 120px;
  }
}

/* === Map Section  === */
.map {
  margin-bottom: -15px;
  position: relative;
  background-color: var(--black);
}

iframe {
  width: 100%;
  height: 682px;
  margin-bottom: -15px;
  background-color: var(--black);
}

/* === Intro3 Section (Home 03) === */
.intro3 {
  background-color: var(--primary);
  position: relative;
  overflow: hidden;
  padding: 120px 0 0px;
}
@media only screen and (max-width: 1399px) {
  .intro3 {
    padding: 100px 0 80px;
  }
}
@media only screen and (max-width: 1199px) {
  .intro3 {
    padding: 90px 0 70px;
  }
}
@media only screen and (max-width: 991px) {
  .intro3 {
    padding: 80px 0 60px;
  }
}
@media only screen and (max-width: 767px) {
  .intro3 {
    padding: 60px 0 50px;
  }
}
.intro3__content {
  z-index: 5;
  position: relative;
}
@media only screen and (max-width: 991px) {
  .intro3__content {
    max-width: 100%;
    text-align: center;
    margin-bottom: 50px;
  }
}
.intro3__subtitle {
  color: var(--primary-two);
  font-family: var(--font_Playfair);
  font-weight: 500;
  font-size: 1.125rem;
  display: block;
  margin-bottom: 1.25rem;
  letter-spacing: 0.05em;
}
@media (max-width: 575px) {
  .intro3__subtitle {
    font-size: 1rem;
  }
}
.intro3__title {
  font-size: 5rem;
  line-height: 1.1;
  margin-bottom: 1.875rem;
  color: var(--text-color-one);
}
@media only screen and (max-width: 991px) {
  .intro3__title br {
    display: none;
  }
}
@media only screen and (max-width: 1399px) {
  .intro3__title {
    font-size: 4rem;
  }
}
@media only screen and (max-width: 1199px) {
  .intro3__title {
    font-size: 3.375rem;
  }
}
@media only screen and (max-width: 991px) {
  .intro3__title {
    font-size: 3rem;
  }
}
@media (max-width: 575px) {
  .intro3__title {
    font-size: 2.25rem;
  }
}
.intro3__description {
  font-size: 1.125rem;
  color: var(--text-color-two);
  margin-bottom: 2.5rem;
  line-height: 1.6;
  max-width: 580px;
}
@media only screen and (max-width: 991px) {
  .intro3__description {
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
  }
}
@media (max-width: 575px) {
  .intro3__description {
    font-size: 1rem;
  }
}
.intro3__buttons {
  display: flex;
  gap: 20px;
  flex-wrap: wrap;
}
@media only screen and (max-width: 991px) {
  .intro3__buttons {
    justify-content: center;
  }
}
.intro3__buttons .rr-btn-button.intro-btn-black {
  background: var(--text-color-one);
  color: var(--white);
}
.intro3__buttons .rr-btn-button.intro-btn-black:hover {
  background: var(--primary-two);
  color: var(--white);
}
.intro3__buttons .rr-btn-button.intro-btn-black:hover .icon {
  background: var(--white);
}
.intro3__buttons .rr-btn-button.intro-btn-black:hover .icon svg path {
  stroke: var(--primary-two);
}
.intro3__buttons .rr-btn-button.intro-btn-black .icon {
  background: var(--primary-two);
  color: var(--white);
}
.intro3__buttons .rr-btn-button.intro-btn-white {
  background: var(--white);
  color: var(--text-color-one);
  border: 1px solid #EAEAEA;
}
.intro3__buttons .rr-btn-button.intro-btn-white:hover {
  border-color: var(--primary-two);
  color: var(--primary-two);
}
.intro3__buttons .rr-btn-button.intro-btn-white:hover .icon {
  background: var(--text-color-one);
}
.intro3__buttons .rr-btn-button.intro-btn-white .icon {
  background: var(--primary-two);
  color: var(--white);
}
.intro3__info-flex {
  margin-top: 60px;
}
@media only screen and (max-width: 991px) {
  .intro3__info-flex {
    justify-content: center;
  }
}
.intro3__quote {
  max-width: 320px;
  position: relative;
  text-align: left;
}
.intro3__quote .icon {
  color: var(--primary-two);
  font-size: 24px;
  margin-bottom: 15px;
}
.intro3__quote p {
  font-style: italic;
  font-size: 1rem;
  line-height: 26px;
  margin-bottom: 15px;
  color: var(--text-color-one);
}
.intro3__quote span {
  display: block;
  font-weight: 600;
  color: var(--text-color-one);
  font-size: 0.9375rem;
}
.intro3__small-card {
  background: #EAE6EF;
  border-radius: 1.25rem;
  padding: 0.9375rem;
  display: flex;
  align-items: center;
  justify-content: center;
}
.intro3__small-card img {
  border-radius: 0.9375rem;
  width: 8.75rem;
  height: auto;
}
.intro3__thumb-wrapper {
  position: relative;
  z-index: 2;
  padding-left: 20px;
}
@media only screen and (max-width: 991px) {
  .intro3__thumb-wrapper {
    padding-left: 0;
    max-width: 500px;
    margin: 0 auto;
  }
}
.intro3__thumb img {
  width: 100%;
  height: auto;
}
.intro3__review-badge {
  position: absolute;
  bottom: 13.5rem;
  left: 1.25rem;
  background: var(--white);
  padding: 0.9375rem 1.5625rem;
  border-radius: 3.75rem;
  display: flex;
  align-items: center;
  gap: 0.9375rem;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
  z-index: 3;
}
@media only screen and (max-width: 1399px) {
  .intro3__review-badge {
    left: -1.875rem;
  }
}
@media only screen and (max-width: 1199px) {
  .intro3__review-badge {
    left: 0;
    bottom: 1.25rem;
  }
}
@media only screen and (max-width: 991px) {
  .intro3__review-badge {
    left: 50%;
    transform: translateX(-50%);
    bottom: -1.875rem;
    width: max-content;
  }
}
.intro3__review-badge-users {
  display: flex;
  align-items: center;
}
.intro3__review-badge-users img {
  width: 2.25rem;
  height: 2.25rem;
  border-radius: 50%;
  border: 2px solid var(--white);
  margin-left: -0.75rem;
  object-fit: cover;
}
.intro3__review-badge-users img:first-child {
  margin-left: 0;
}
.intro3__review-badge-users .plus-icon {
  width: 2.25rem;
  height: 2.25rem;
  border-radius: 50%;
  background: var(--primary-two);
  color: var(--white);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.75rem;
  margin-left: -0.75rem;
  border: 2px solid var(--white);
}
.intro3__review-badge-text p {
  margin-bottom: 0;
  font-size: 0.875rem;
  line-height: 1.2;
  color: var(--text-color-two);
}
.intro3__review-badge-text p strong {
  color: var(--text-color-one);
  display: block;
}
.intro3_shape {
  position: absolute;
  z-index: 1;
  pointer-events: none;
}
.intro3 .shape-1 {
  position: absolute;
  top: 10%;
  left: 0;
  width: 15.625rem;
  z-index: 1;
}
@media only screen and (max-width: 1399px) {
  .intro3 .shape-1 {
    width: 11.25rem;
  }
}
@media only screen and (max-width: 991px) {
  .intro3 .shape-1 {
    display: none;
  }
}
.intro3 .shape-1 img {
  width: 100%;
}
.intro3 .shape-2 {
  position: absolute;
  top: 5%;
  right: 5%;
  width: 9.375rem;
  z-index: 1;
}
@media only screen and (max-width: 1399px) {
  .intro3 .shape-2 {
    width: 7.5rem;
  }
}
@media only screen and (max-width: 767px) {
  .intro3 .shape-2 {
    top: 2%;
    right: 2%;
    width: 5rem;
  }
}
.intro3 .shape-2 img {
  width: 100%;
}
.intro3 .shape-3 {
  position: absolute;
  bottom: 0;
  right: 0;
  width: 12.5rem;
  z-index: 1;
}
@media only screen and (max-width: 1399px) {
  .intro3 .shape-3 {
    width: 9.375rem;
  }
}
@media only screen and (max-width: 767px) {
  .intro3 .shape-3 {
    width: 6.25rem;
  }
}
.intro3 .shape-3 img {
  width: 100%;
}

/* === Category Section (Home 03) === */
.category3-item {
  position: relative;
}
.category3-item__thumb {
  border-radius: 16px;
}
.category3-item__thumb img {
  width: 100%;
}
.category3-item__content1 {
  position: absolute;
  top: 10%;
  left: 10%;
  width: 429px;
}
@media only screen and (max-width: 1919px) {
  .category3-item__content1 {
    width: 380px;
  }
}
@media only screen and (max-width: 1399px) {
  .category3-item__content1 {
    width: 330px;
  }
}
@media only screen and (max-width: 991px) {
  .category3-item__content1 {
    top: 6%;
    left: 10%;
  }
}
@media only screen and (max-width: 767px) {
  .category3-item__content1 {
    width: 340px;
    top: 20%;
    left: 12%;
  }
}
@media (max-width: 575px) {
  .category3-item__content1 {
    width: 290px;
    top: 2%;
    left: 3%;
  }
}
.category3-item__content1-title {
  font-weight: 700;
  font-style: Bold;
  font-size: 40px;
  line-height: 48px;
  letter-spacing: -0.5px;
  margin-bottom: 17px;
}
@media only screen and (max-width: 1919px) {
  .category3-item__content1-title {
    font-size: 35px;
  }
}
@media only screen and (max-width: 1399px) {
  .category3-item__content1-title {
    font-size: 30px;
    margin-bottom: 15px;
  }
}
@media only screen and (max-width: 991px) {
  .category3-item__content1-title {
    font-size: 25px;
    margin-bottom: 10px;
  }
}
@media only screen and (max-width: 767px) {
  .category3-item__content1-title {
    font-size: 20px;
    line-height: 40px;
    margin-bottom: 19px;
  }
}
@media (max-width: 575px) {
  .category3-item__content1-title {
    font-size: 16px;
    line-height: 33px;
    margin-bottom: 1px;
  }
}
.category3-item__content1-subtitle {
  color: var(--text-color-two);
  font-family: var(--font_Lato);
  font-weight: 400;
  font-style: Regular;
  font-size: 16px;
  line-height: 26px;
  letter-spacing: 0px;
  margin-bottom: 30px;
}
@media only screen and (max-width: 1399px) {
  .category3-item__content1-subtitle {
    margin-bottom: 15px;
  }
}
@media only screen and (max-width: 991px) {
  .category3-item__content1-subtitle {
    margin-bottom: 6px;
  }
}
@media only screen and (max-width: 767px) {
  .category3-item__content1-subtitle {
    margin-bottom: 17px;
  }
}
@media (max-width: 575px) {
  .category3-item__content1-subtitle {
    margin-bottom: -6px;
    font-size: 13px;
    line-height: 22px;
  }
}
.category3-item__content1-button .rrr-btn-button {
  gap: 11px;
  font-family: var(--font_Playfair);
  font-weight: 500;
  font-style: Medium;
  font-size: 16px;
  line-height: 18px;
  letter-spacing: 0px;
  align-items: center;
  display: inline-flex;
  color: var(--text-color-one);
  text-transform: capitalize;
  border: none;
  justify-content: space-between;
  background: transparent;
}
@media only screen and (max-width: 767px) {
  .category3-item__content1-button .rrr-btn-button {
    font-size: 15px;
  }
}
.category3-item__content1-button .rrr-btn-button .icon {
  width: 36px;
  height: 36px;
  display: flex;
  font-size: 20px;
  color: var(--white);
  align-items: center;
  border-radius: 500px;
  transition: all 0.3s;
  background: var(--primary-two);
  justify-content: center;
  background: var(--primary-two);
}
@media only screen and (max-width: 767px) {
  .category3-item__content1-button .rrr-btn-button .icon {
    font-size: 15px;
  }
}
.category3-item__content1-button .rrr-btn-button:hover .icon {
  rotate: -45deg;
}
.category3-item__content1-button .rrr-btn-button.btn-black {
  color: var(--black);
  background: var(--primary);
}
.category3-item__content1-button .rrr-btn-button.btn-black .icon {
  color: var(--primary);
  background: var(--white);
}
.category3-item__content1-button .rrr-btn-button.btn-purples {
  gap: 11px;
  color: var(--black);
  background: transparent;
}
.category3-item__content1-button .rrr-btn-button.btn-purples .icon {
  width: 44px;
  height: 44px;
  background: var(--primary-two);
}
@media only screen and (max-width: 767px) {
  .category3-item__content1-button .rrr-btn-button.btn-purples .icon {
    width: 30px;
    height: 30px;
  }
}
.category3-item__content1-button .rrr-btn-button.btn-purples .icon:hover {
  background: var(--text-color-one);
}
.category3-item__content2 {
  position: absolute;
  bottom: 17%;
  right: 8%;
  width: 225px;
}
@media only screen and (max-width: 991px) {
  .category3-item__content2 {
    width: 200px;
  }
}
@media only screen and (max-width: 767px) {
  .category3-item__content2 {
    width: 260px;
    right: 15%;
  }
}
@media (max-width: 575px) {
  .category3-item__content2 {
    width: 260px;
    right: 6%;
  }
}
.category3-item__content2-title {
  font-weight: 700;
  font-style: Bold;
  font-size: 32px;
  line-height: 40px;
  letter-spacing: 0px;
  text-transform: capitalize;
  margin-bottom: 10px;
}
@media only screen and (max-width: 991px) {
  .category3-item__content2-title {
    font-size: 25px;
  }
}
@media only screen and (max-width: 767px) {
  .category3-item__content2-title {
    font-size: 22px;
  }
}
.category3-item__content2-subtitle {
  color: var(--text-color-two);
  font-family: var(--font_Lato);
  font-weight: 400;
  font-style: Regular;
  font-size: 16px;
  line-height: 26px;
  letter-spacing: 0px;
  margin-bottom: 14px;
}
.category3-item__content2-button .rrr-btn-button {
  gap: 11px;
  font-family: var(--font_Playfair);
  font-weight: 500;
  font-style: Medium;
  font-size: 16px;
  line-height: 18px;
  letter-spacing: 0px;
  align-items: center;
  display: inline-flex;
  color: var(--text-color-one);
  text-transform: capitalize;
  border: none;
  justify-content: space-between;
  background: transparent;
}
.category3-item__content2-button .rrr-btn-button .icon {
  width: 36px;
  height: 36px;
  display: flex;
  font-size: 20px;
  color: var(--white);
  align-items: center;
  border-radius: 500px;
  transition: all 0.3s;
  background: var(--primary-two);
  justify-content: center;
  background: var(--primary-two);
}
.category3-item__content2-button .rrr-btn-button:hover .icon {
  rotate: -45deg;
}
.category3-item__content2-button .rrr-btn-button.btn-black {
  color: var(--black);
  background: var(--primary);
}
.category3-item__content2-button .rrr-btn-button.btn-black .icon {
  color: var(--primary);
  background: var(--white);
}
.category3-item__content2-button .rrr-btn-button.btn-purples {
  gap: 11px;
  color: var(--black);
  background: transparent;
}
.category3-item__content2-button .rrr-btn-button.btn-purples .icon {
  width: 44px;
  height: 44px;
  background: var(--primary-two);
}
.category3-item__content2-button .rrr-btn-button.btn-purples .icon:hover {
  background: var(--text-color-one);
}

/* === Trending-Product Section (Home 03) === */
.trending-product2__button {
  margin-bottom: 40px;
}
@media only screen and (max-width: 1399px) {
  .trending-product2__button {
    margin-right: auto;
    margin-bottom: 40px;
    margin-top: -55px;
  }
}
@media only screen and (max-width: 1199px) {
  .trending-product2__button {
    margin-right: auto;
    margin-bottom: 35px;
    margin-top: -66px;
  }
}
@media only screen and (max-width: 991px) {
  .trending-product2__button {
    margin-right: auto;
    margin-bottom: 25px;
  }
}
@media (max-width: 575px) {
  .trending-product2__button {
    margin-bottom: 30px;
  }
}
.trending-product2-card {
  position: relative;
}
.trending-product2-card__thumb {
  position: relative;
}
.trending-product2-card__thumb img {
  border-top-left-radius: 16px;
  border-top-right-radius: 16px;
  width: 100%;
}
@media only screen and (max-width: 767px) {
  .trending-product2-card__thumb img {
    border-top-left-radius: 40px;
    border-top-right-radius: 40px;
  }
}
.trending-product2-card__thumb-offer {
  position: absolute;
  top: 6%;
  left: 7%;
  padding: 5px 15px;
  color: var(--white);
  background: var(--text-color-one);
  border-radius: 23px;
  font-family: var(--font_Lato);
  font-weight: 400;
  font-style: Regular;
  font-size: 14px;
  line-height: 22px;
  letter-spacing: 0px;
}
.trending-product2-card__thumb-offer.style {
  color: var(--text-color-one);
  background: var(--yellow);
}
.trending-product2-card__thumb-btn-wrapper {
  opacity: 0;
  visibility: hidden;
  position: absolute;
  bottom: -20px;
  left: 50%;
  display: flex;
  align-items: center;
  width: 100%;
  transform: translateX(-50%);
  transition: all 0.3s linear;
  -webkit-transform: translateX(-50%);
  -moz-transform: translateX(-50%);
  -ms-transform: translateX(-50%);
  -o-transform: translateX(-50%);
  -webkit-transition: all 0.3s linear;
  -moz-transition: all 0.3s linear;
  -ms-transition: all 0.3s linear;
  -o-transition: all 0.3s linear;
}
.trending-product2-card__thumb-btn-wrapper .rr-btn-button4 {
  padding: 8px 17px;
  width: 100%;
  font-size: 16px;
  font-style: normal;
  font-weight: 500;
  line-height: 24px;
  transition: all 0.3s linear;
}
.trending-product2-card__content {
  padding: 16px;
  background: var(--white);
  border-bottom-left-radius: 16px;
  border-bottom-right-radius: 16px;
}
.trending-product2-card__content-title {
  color: var(--text-color-one);
  font-family: var(--font_Playfair);
  font-weight: 500;
  font-style: Medium;
  font-size: 18px;
  line-height: 24px;
  letter-spacing: 0px;
  text-transform: capitalize;
  margin-bottom: 8px;
}
.trending-product2-card__content-list {
  display: flex;
  gap: 7px;
  align-items: center;
  list-style: none;
  margin-bottom: 8px;
}
.trending-product2-card__content-list-start i {
  color: var(--yellow);
}
.trending-product2-card__content-list-point {
  color: var(--text-color-one);
  font-family: var(--font_Lato);
  font-weight: 400;
  font-style: Regular;
  font-size: 14px;
  line-height: 22px;
  letter-spacing: 0px;
}
.trending-product2-card__content-list-text {
  color: var(--text-color6);
  font-family: var(--font_Lato);
  font-weight: 400;
  font-style: Regular;
  font-size: 14px;
  line-height: 22px;
  letter-spacing: 0px;
}
.trending-product2-card__content-dollar {
  color: var(--text-color-one);
  font-family: var(--font_Playfair);
  font-weight: 700;
  font-style: Bold;
  font-size: 20px;
  line-height: 28px;
  letter-spacing: 0px;
  text-transform: capitalize;
}
.trending-product2-card:hover .trending-product-card__thumb-btn-wrapper {
  opacity: 1;
  visibility: visible;
  bottom: 10px;
  transition: all 0.4s ease-in-out;
}

/* === Why-Choose-Us Section (Home 03) === */
.wcu3 {
  padding: 120px 0px 0px;
}
.wcu3__thumb img {
  width: 100%;
}
.wcu3-items1 {
  position: relative;
}
.wcu3-items1__thumb img {
  width: 100%;
}
.wcu3-items1__thumb2 {
  position: absolute;
  top: 50%;
}
.wcu3-items2__thumb {
  margin-bottom: 40px;
}
.wcu3-items2__thumb img {
  width: 100%;
}
.wcu3-items2__thumb2 img {
  width: 100%;
}

/* === Natural-Beauty-Product Section (Home 03) === */
.natural-beauty__wrapper {
  padding: 100px 40px 24px 100px;
  border-radius: 32px;
  margin-bottom: 70px;
}
@media (max-width: 1199px) {
  .natural-beauty__wrapper {
    padding: 100px 20px 24px 50px;
  }
}
@media (max-width: 767px) {
  .natural-beauty__wrapper {
    padding: 100px 10px 24px 25px;
  }
}
.natural-beauty__content-subtitle {
  color: var(--primary-two);
  font-family: var(--font_Playfair);
  font-weight: 500;
  font-style: Medium;
  display: block;
  font-size: 18px;
  line-height: 24px;
  letter-spacing: 0px;
  text-transform: capitalize;
  margin-bottom: 13px;
}
.natural-beauty__content-title {
  color: var(--text-color-one);
  font-family: var(--font_Playfair);
  font-weight: 700;
  font-style: Bold;
  font-size: 40px;
  line-height: 48px;
  letter-spacing: -0.5px;
  margin-bottom: 40px;
}
@media only screen and (max-width: 1199px) {
  .natural-beauty__content-title {
    font-size: 34px;
  }
}
@media only screen and (max-width: 991px) {
  .natural-beauty__content-title {
    font-size: 30px;
  }
}
@media only screen and (max-width: 767px) {
  .natural-beauty__content-title {
    font-size: 28px;
  }
}
@media (max-width: 575px) {
  .natural-beauty__content-title {
    font-size: 22px;
  }
}
.natural-beauty__countdown {
  display: inline-block;
  background: #AEC0B4;
  border-radius: 999px;
  padding: 8px 24px 8px;
  margin-bottom: 32px;
}
@media (max-width: 767px) {
  .natural-beauty__countdown {
    padding: 8px 16px 8px;
  }
}
.natural-beauty__countdown-inner {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 12px 16px;
  flex-wrap: wrap;
}
.natural-beauty__countdown-unit {
  display: flex;
  flex-direction: column;
  align-items: center;
  min-width: 44px;
}
.natural-beauty__countdown-num {
  color: #1A1A1A;
  font-family: var(--font_Playfair);
  font-weight: 700;
  font-size: 32px;
  line-height: 1.1;
  letter-spacing: 0;
  display: block;
}
@media only screen and (max-width: 1199px) {
  .natural-beauty__countdown-num {
    font-size: 28px;
  }
}
@media only screen and (max-width: 991px) {
  .natural-beauty__countdown-num {
    font-size: 26px;
  }
}
@media only screen and (max-width: 767px) {
  .natural-beauty__countdown-num {
    font-size: 24px;
  }
}
@media (max-width: 575px) {
  .natural-beauty__countdown-num {
    font-size: 22px;
  }
}
.natural-beauty__countdown-label {
  color: #404040;
  font-family: var(--font_Lato);
  font-weight: 400;
  font-size: 14px;
  line-height: 1.4;
  letter-spacing: 0;
  text-transform: capitalize;
  margin-top: 4px;
}
@media (max-width: 575px) {
  .natural-beauty__countdown-label {
    font-size: 13px;
  }
}
.natural-beauty__countdown-sep {
  color: #1A1A1A;
  font-family: var(--font_Playfair);
  font-weight: 700;
  font-size: 32px;
  line-height: 1;
  align-self: flex-start;
  padding-top: 2px;
}
@media only screen and (max-width: 1199px) {
  .natural-beauty__countdown-sep {
    font-size: 28px;
  }
}
@media only screen and (max-width: 991px) {
  .natural-beauty__countdown-sep {
    font-size: 26px;
  }
}
@media only screen and (max-width: 767px) {
  .natural-beauty__countdown-sep {
    font-size: 24px;
  }
}
@media (max-width: 575px) {
  .natural-beauty__countdown-sep {
    font-size: 22px;
  }
}
.natural-beauty__thumb img {
  width: 100%;
}
.natural-beauty-card1 {
  position: relative;
  overflow: hidden;
  text-align: center;
  justify-items: center;
  transition: all 0.4s ease-in-out;
}
.natural-beauty-card1::before {
  position: absolute;
  content: "";
  background: var(--text-color-four);
  width: 1px;
  height: 102px;
  z-index: 9;
  top: 50%;
  left: 50%;
  transition: all 0.4s ease-in-out;
}
@media only screen and (max-width: 1199px) {
  .natural-beauty-card1::before {
    height: 98px;
    top: 47%;
  }
}
@media (max-width: 575px) {
  .natural-beauty-card1::before {
    height: 98px;
    top: 45%;
  }
}
.natural-beauty-card1__content {
  padding: 48px 72px;
  background: var(--bg-color);
  border-radius: 8px;
  text-align: center;
  margin-bottom: 100px;
}
@media only screen and (max-width: 1199px) {
  .natural-beauty-card1__content {
    padding: 40px 40px;
  }
}
@media (max-width: 575px) {
  .natural-beauty-card1__content {
    padding: 35px 30px;
  }
}
.natural-beauty-card1__content-title {
  font-weight: 700;
  font-style: Bold;
  font-size: 24px;
  line-height: 30px;
  letter-spacing: 0px;
  text-align: center;
  text-transform: capitalize;
  margin-bottom: 8px;
}
@media only screen and (max-width: 1199px) {
  .natural-beauty-card1__content-title {
    font-size: 23px;
  }
}
@media (max-width: 575px) {
  .natural-beauty-card1__content-title {
    font-size: 22px;
  }
}
.natural-beauty-card1__content-subtitle {
  color: var(--text-color-two);
  font-family: var(--font_Lato);
  font-weight: 400;
  font-style: Regular;
  font-size: 16px;
  line-height: 26px;
  letter-spacing: 0px;
  text-align: center;
}
.natural-beauty-card1__icon {
  background: var(--white);
  width: 64px;
  height: 64px;
  line-height: 64px;
  border-radius: 56px;
}
.natural-beauty-card1:hover::before {
  position: absolute;
  content: "";
  z-index: 9;
  width: 1px;
  height: 102px;
  border-width: 1px;
  border-style: dashed;
  dashes: 2, 2;
  border: 1px solid var(--primary-two);
  transition: all 0.4s ease-in-out;
}
.natural-beauty-card1:hover__icon {
  background: var(--primary-two);
  transition: all 0.4s ease-in-out;
}
.natural-beauty-card1:hover__icon svg path {
  fill: var(--white);
}
.natural-beauty-card1:hover .natural-beauty-card1__icon {
  background: var(--primary-two);
  transition: all 0.4s ease-in-out;
}
.natural-beauty-card1:hover .natural-beauty-card1__icon svg path {
  fill: var(--white);
}
.natural-beauty-card2 {
  position: relative;
  overflow: hidden;
  text-align: center;
  justify-items: center;
  transition: all 0.4s ease-in-out;
}
.natural-beauty-card2::before {
  position: absolute;
  content: "";
  background: var(--text-color-four);
  width: 1px;
  height: 102px;
  z-index: 9;
  bottom: 50%;
  left: 50%;
  transition: all 0.4s ease-in-out;
}
@media only screen and (max-width: 1199px) {
  .natural-beauty-card2::before {
    height: 99px;
    bottom: 47%;
  }
}
@media (max-width: 575px) {
  .natural-beauty-card2::before {
    height: 99px;
    bottom: 45%;
  }
}
.natural-beauty-card2__icon {
  background: var(--white);
  width: 64px;
  height: 64px;
  line-height: 64px;
  border-radius: 56px;
  margin-bottom: 100px;
}
.natural-beauty-card2__content {
  padding: 48px 72px;
  background: var(--bg-color2);
  border-radius: 8px;
  text-align: center;
}
@media only screen and (max-width: 1199px) {
  .natural-beauty-card2__content {
    padding: 40px 40px;
  }
}
@media (max-width: 575px) {
  .natural-beauty-card2__content {
    padding: 35px 30px;
  }
}
.natural-beauty-card2__content-title {
  font-weight: 700;
  font-style: Bold;
  font-size: 24px;
  line-height: 30px;
  letter-spacing: 0px;
  text-align: center;
  text-transform: capitalize;
  margin-bottom: 8px;
}
@media only screen and (max-width: 1199px) {
  .natural-beauty-card2__content-title {
    font-size: 23px;
  }
}
@media (max-width: 575px) {
  .natural-beauty-card2__content-title {
    font-size: 22px;
  }
}
.natural-beauty-card2__content-subtitle {
  color: var(--text-color-two);
  font-family: var(--font_Lato);
  font-weight: 400;
  font-style: Regular;
  font-size: 16px;
  line-height: 26px;
  letter-spacing: 0px;
  text-align: center;
}
.natural-beauty-card2:hover::before {
  position: absolute;
  content: "";
  z-index: 9;
  width: 1px;
  height: 102px;
  border-width: 1px;
  border-style: dashed;
  dashes: 2, 2;
  border: 1px solid var(--primary-two);
  transition: all 0.4s ease-in-out;
}
.natural-beauty-card2:hover .natural-beauty-card2__icon {
  background: var(--primary-two);
  transition: all 0.4s ease-in-out;
}
.natural-beauty-card2:hover .natural-beauty-card2__icon svg path {
  filter: brightness(0) saturate(100%) invert(100%) sepia(4%) saturate(402%) hue-rotate(178deg) brightness(121%) contrast(100%);
}
.natural-beauty-card3 {
  position: relative;
  overflow: hidden;
  text-align: center;
  justify-items: center;
  transition: all 0.4s ease-in-out;
}
.natural-beauty-card3::before {
  position: absolute;
  content: "";
  background: var(--text-color-four);
  width: 1px;
  height: 102px;
  z-index: 9;
  top: 50%;
  left: 50%;
  transition: all 0.4s ease-in-out;
}
@media only screen and (max-width: 1199px) {
  .natural-beauty-card3::before {
    height: 98px;
    top: 47%;
  }
}
@media (max-width: 575px) {
  .natural-beauty-card3::before {
    height: 98px;
    top: 45%;
  }
}
.natural-beauty-card3__content {
  padding: 48px 72px;
  background: var(--thardary);
  border-radius: 8px;
  text-align: center;
  margin-bottom: 100px;
}
@media only screen and (max-width: 1199px) {
  .natural-beauty-card3__content {
    padding: 40px 40px;
  }
}
@media (max-width: 575px) {
  .natural-beauty-card3__content {
    padding: 35px 30px;
  }
}
.natural-beauty-card3__content-title {
  font-weight: 700;
  font-style: Bold;
  font-size: 24px;
  line-height: 30px;
  letter-spacing: 0px;
  text-align: center;
  text-transform: capitalize;
  margin-bottom: 8px;
}
@media only screen and (max-width: 1199px) {
  .natural-beauty-card3__content-title {
    font-size: 23px;
  }
}
@media (max-width: 575px) {
  .natural-beauty-card3__content-title {
    font-size: 22px;
  }
}
.natural-beauty-card3__content-subtitle {
  color: var(--text-color-two);
  font-family: var(--font_Lato);
  font-weight: 400;
  font-style: Regular;
  font-size: 16px;
  line-height: 26px;
  letter-spacing: 0px;
  text-align: center;
}
.natural-beauty-card3__icon {
  background: var(--white);
  width: 64px;
  height: 64px;
  line-height: 64px;
  border-radius: 56px;
}
.natural-beauty-card3:hover::before {
  position: absolute;
  content: "";
  z-index: 9;
  width: 1px;
  height: 102px;
  border-width: 1px;
  border-style: dashed;
  dashes: 2, 2;
  border: 1px solid var(--primary-two);
  transition: all 0.4s ease-in-out;
}
.natural-beauty-card3:hover .natural-beauty-card3__icon {
  background: var(--primary-two);
  transition: all 0.4s ease-in-out;
}
.natural-beauty-card3:hover .natural-beauty-card3__icon svg path {
  filter: brightness(0) saturate(100%) invert(100%) sepia(4%) saturate(402%) hue-rotate(178deg) brightness(121%) contrast(100%);
}

/* === Featured-Products Section (Home 03) === */
.featured-products {
  position: relative;
  padding: 120px 0px 80px;
}
.featured-products__thumb {
  width: 896px;
  height: 766px;
}
.featured-products__thumb img {
  margin-top: -120px;
  margin-left: -46%;
}
.featured-products__info {
  position: relative;
}
.featured-products__info .section-heading__title2 {
  font-weight: 700;
  font-style: Bold;
  font-size: 40px;
  line-height: 48px;
  text-align: left;
  letter-spacing: -0.5px;
}
.featured-products-card {
  margin-bottom: 48px;
}
.featured-products-card__thumb img {
  border-top-left-radius: 16px;
  border-top-right-radius: 16px;
  width: 100%;
}
@media only screen and (max-width: 767px) {
  .featured-products-card__thumb img {
    border-top-left-radius: 40px;
    border-top-right-radius: 40px;
  }
}
.featured-products-card__content {
  padding: 16px;
  background: var(--primary);
  border-bottom-left-radius: 16px;
  border-bottom-right-radius: 16px;
}
.featured-products-card__content-title {
  color: var(--text-color-one);
  font-family: var(--font_Playfair);
  font-weight: 500;
  font-style: Medium;
  font-size: 18px;
  line-height: 24px;
  letter-spacing: 0px;
  text-transform: capitalize;
  margin-bottom: 8px;
}
.featured-products-card__content-list {
  display: flex;
  gap: 7px;
  align-items: center;
  list-style: none;
  margin-bottom: 8px;
}
.featured-products-card__content-list-start i {
  color: var(--yellow);
}
.featured-products-card__content-list-point {
  color: var(--text-color-one);
  font-family: var(--font_Lato);
  font-weight: 400;
  font-style: Regular;
  font-size: 14px;
  line-height: 22px;
  letter-spacing: 0px;
}
.featured-products-card__content-list-text {
  color: var(--text-color6);
  font-family: var(--font_Lato);
  font-weight: 400;
  font-style: Regular;
  font-size: 14px;
  line-height: 22px;
  letter-spacing: 0px;
}
.featured-products-card__content-dollar {
  color: var(--text-color-one);
  font-family: var(--font_Playfair);
  font-weight: 700;
  font-style: Bold;
  font-size: 20px;
  line-height: 28px;
  letter-spacing: 0px;
  text-transform: capitalize;
}
.featured-products-controls {
  display: flex;
  gap: 20px;
  z-index: 99;
}
.featured-products-controls__arrowLeft {
  transform: translateY(-50%);
  transform: rotate(0deg);
  z-index: 99;
  padding: 6px 20px 6px 6px;
  height: 48px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font_Playfair);
  font-weight: 500;
  font-style: Medium;
  font-size: 18px;
  line-height: 24px;
  letter-spacing: 0px;
  text-transform: capitalize;
  color: var(--text-color-one);
  border: 1px solid var(--text-color-four);
  border-radius: 1000px;
  gap: 8px;
  transition: all 0.4s ease-in-out;
}
@media only screen and (max-width: 1399px) {
  .featured-products-controls__arrowLeft {
    left: 0%;
    top: 50%;
  }
}
@media only screen and (max-width: 1199px) {
  .featured-products-controls__arrowLeft {
    display: none;
  }
}
.featured-products-controls__arrowLeft .icon {
  background: var(--text-color-one);
  width: 36px;
  height: 36px;
  line-height: 36px;
  border-radius: 79.2px;
  text-align: center;
  gap: 7px;
  color: var(--white);
  font-size: 16px;
  transition: all 0.4s ease-in-out;
}
.featured-products-controls__arrowLeft:hover {
  background: var(--primary-two);
  color: var(--text-color-four);
}
.featured-products-controls__arrowLeft:hover .icon {
  background: var(--white);
  color: var(--text-color-one);
}
.featured-products-controls__arrowRight {
  transform: translateY(-50%);
  transform: rotate(-361deg);
  z-index: 9;
  padding: 6px 6px 6px 20px;
  height: 48px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font_Playfair);
  font-weight: 500;
  font-style: Medium;
  font-size: 18px;
  line-height: 24px;
  letter-spacing: 0px;
  text-transform: capitalize;
  background: var(--primary-two);
  color: var(--text-color-four);
  border: 1px solid var(--text-color-four);
  border-radius: 1000px;
  gap: 8px;
  transition: all 0.4s ease-in-out;
}
@media only screen and (max-width: 1399px) {
  .featured-products-controls__arrowRight {
    right: 0%;
    top: 50%;
  }
}
@media only screen and (max-width: 1199px) {
  .featured-products-controls__arrowRight {
    display: none;
  }
}
.featured-products-controls__arrowRight .icon {
  width: 36px;
  height: 36px;
  line-height: 36px;
  border-radius: 79.2px;
  text-align: center;
  gap: 7px;
  font-size: 16px;
  background: var(--white);
  color: var(--text-color-one);
  transition: all 0.4s ease-in-out;
}
.featured-products-controls__arrowRight:hover {
  color: var(--text-color-one);
  background-color: transparent;
}
.featured-products-controls__arrowRight:hover .icon {
  color: var(--white);
  background-color: var(--text-color-one);
}
.featured-products__dsc {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  color: var(--text-color-one);
  font-family: var(--font_Lato);
  font-weight: 400;
  font-style: Regular;
  font-size: 16px;
  line-height: 26px;
  letter-spacing: 0px;
  text-align: center;
}
.featured-products__dsc-dicount {
  padding: 5px 17px;
  color: var(--text-color-one);
  background: var(--yellow);
  border-radius: 23px;
  font-family: var(--font_Lato);
  font-weight: 400;
  font-style: Regular;
  font-size: 16px;
  line-height: 26px;
  letter-spacing: 0px;
}
.featured-products__dsc-text {
  font-family: var(--font_Playfair);
  font-weight: 500;
  font-style: Medium;
  font-size: 16px;
  line-height: 22px;
  letter-spacing: 0px;
  text-decoration: underline;
  text-decoration-style: solid;
  text-decoration-offset: 0%;
  text-decoration-thickness: 0%;
}

/* === Testimonial Section (Home 03) === */
.testimonial3 {
  position: relative;
  overflow: hidden;
  z-index: 99;
}
.testimonial3-items {
  z-index: 99;
  position: relative;
}
@media only screen and (max-width: 991px) {
  .testimonial3-items {
    display: flex;
    justify-content: center;
  }
}
.testimonial3-items__circle {
  position: absolute;
  border: 4px solid var(--primary-two);
  width: 276px;
  height: 276px;
  border-width: 4px;
  border-radius: 100%;
  left: -30%;
  z-index: -1;
}
@media only screen and (max-width: 1919px) {
  .testimonial3-items__circle {
    width: 250px;
    height: 250px;
    left: -15%;
  }
}
@media only screen and (max-width: 991px) {
  .testimonial3-items__circle {
    left: 15%;
  }
}
.testimonial3-items__thumb img {
  z-index: 9;
  width: 276px;
  height: 276px;
  border-radius: 50%;
}
@media only screen and (max-width: 1919px) {
  .testimonial3-items__thumb img {
    width: 250px;
    height: 250px;
  }
}
.testimonial3-items__icon {
  position: absolute;
  background: var(--primary-two);
  width: 56px;
  height: 56px;
  top: 40%;
  left: -8%;
  border-radius: 28px;
  padding: 12px;
  display: flex;
  text-align: center;
  justify-content: center;
  align-items: center;
}
@media only screen and (max-width: 991px) {
  .testimonial3-items__icon {
    top: 34%;
    left: 28%;
  }
}
@media only screen and (max-width: 991px) {
  .testimonial3-card {
    display: flex;
    justify-content: center;
  }
}
.testimonial3-card__content-star {
  margin-bottom: 18px;
}
.testimonial3-card__content-star .fa-solid.fa-star{
  color: orange;
}
.testimonial3-card__content-title {
  color: var(--text-color-three);
  font-family: var(--font_Playfair);
  font-weight: 600;
  font-style: Italic;
  font-size: 22px;
  line-height: 28px;
  letter-spacing: 0px;
  width: 813px;
  margin-bottom: 32px;
}
@media only screen and (max-width: 1919px) {
  .testimonial3-card__content-title {
    font-size: 21px;
  }
}
@media only screen and (max-width: 1199px) {
  .testimonial3-card__content-title {
    line-height: 33px;
    letter-spacing: 0px;
    font-size: 20px;
    width: 654px;
  }
}
@media (max-width: 575px) {
  .testimonial3-card__content-title {
    line-height: 33px;
    letter-spacing: 0px;
    font-size: 16px;
    width: 282px;
  }
}
.testimonial3-card__content-subtitle {
  color: var(--black);
  font-family: var(--font_Playfair);
  font-weight: 700;
  font-style: Bold;
  font-size: 20px;
  line-height: 28px;
  letter-spacing: 0px;
  text-transform: capitalize;
}
@media only screen and (max-width: 1919px) {
  .testimonial3-card__content-subtitle {
    font-size: 19px;
  }
}
@media (max-width: 575px) {
  .testimonial3-card__content-subtitle {
    font-size: 16px;
  }
}
.testimonial3-card__content-text {
  color: var(--text-color-two);
  font-family: var(--font_Lato);
  font-weight: 400;
  font-style: Regular;
  font-size: 16px;
  line-height: 26px;
  letter-spacing: 0px;
}
.testimonial3-controls {
  position: absolute;
  display: flex;
  gap: 20px;
  z-index: 99;
  right: 10%;
  top: 75%;
}
.testimonial3-controls__arrowLeft {
  transform: translateY(-50%);
  transform: rotate(0deg);
  z-index: 99;
  width: 111px;
  height: 48px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font_Playfair);
  font-weight: 500;
  font-style: Medium;
  font-size: 18px;
  line-height: 24px;
  letter-spacing: 0px;
  text-transform: capitalize;
  color: #ee2d7a;
  border: 1px solid #ee2d7a;
  border-radius: 1000px;
  gap: 8px;
  transition: all 0.4s ease-in-out;
}
@media only screen and (max-width: 1399px) {
  .testimonial3-controls__arrowLeft {
    left: 0%;
    top: 50%;
  }
}
@media only screen and (max-width: 1199px) {
  .testimonial3-controls__arrowLeft {
    display: none;
  }
}
.testimonial3-controls__arrowLeft .icon {
  background: var(--text-color-one);
  width: 36px;
  height: 36px;
  line-height: 36px;
  border-radius: 79.2px;
  text-align: center;
  gap: 7px;
  color: var(--white);
  font-size: 16px;
  transition: all 0.4s ease-in-out;
}
.testimonial3-controls__arrowLeft:hover {
  background: var(--primary-two);
  color: var(--text-color-four);
}
.testimonial3-controls__arrowLeft:hover .icon {
  background: var(--white);
  color: var(--text-color-one);
}
.testimonial3-controls__arrowRight {
  transform: translateY(-50%);
  transform: rotate(-361deg);
  z-index: 9;
  width: 111px;
  height: 48px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font_Playfair);
  font-weight: 500;
  font-style: Medium;
  font-size: 18px;
  line-height: 24px;
  letter-spacing: 0px;
  text-transform: capitalize;
  background: var(--primary-two);
  color: var(--text-color-four);
  border: 1px solid var(--text-color-four);
  border-radius: 1000px;
  gap: 8px;
  transition: all 0.4s ease-in-out;
}
@media only screen and (max-width: 1399px) {
  .testimonial3-controls__arrowRight {
    right: 0%;
    top: 50%;
  }
}
@media only screen and (max-width: 1199px) {
  .testimonial3-controls__arrowRight {
    display: none;
  }
}
.testimonial3-controls__arrowRight .icon {
  width: 36px;
  height: 36px;
  line-height: 36px;
  border-radius: 79.2px;
  text-align: center;
  gap: 7px;
  font-size: 16px;
  background: var(--white);
  color: var(--text-color-one);
  transition: all 0.4s ease-in-out;
}
.testimonial3-controls__arrowRight:hover {
  color: var(--text-color-one);
  background-color: transparent;
}
.testimonial3-controls__arrowRight:hover .icon {
  color: var(--white);
  background-color: var(--text-color-one);
}

/* === Instagram Section (Home 03) === */
.instagram3 {
  position: relative;
  padding: 10px 0px 40px;
}
.instagram3-thumb {
  position: relative;
  overflow: hidden;
}
.instagram3-thumb::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: rgba(238, 45, 122, 0.4784313725);
  transform-origin: top;
  transform: scaleY(0);
  transition: transform 0.4s ease;
  z-index: 9;
  border-radius: 20px;
}
.instagram3-thumb img {
  width: 100%;
  height: 100%;
  border-radius: 20px;
  transform: scale(1.02);
  transition: all 1.5s ease-out;
}
.instagram3-thumb .icon {
  display: inline-block;
  position: absolute;
  top: -100px;
  left: 50%;
  transform: translate(-50%, -50%);
  font-size: 50px;
  color: var(--white);
  transition: all 0.4s ease-in-out;
  opacity: 0;
  visibility: hidden;
  z-index: 99;
}
.instagram3-thumb:hover .icon {
  top: 50%;
  opacity: 1;
  visibility: visible;
}
.instagram3-thumb:hover img {
  -webkit-transform: scale3d(1.1, 1.1, 1);
  transform: scale3d(1.1, 1.1, 1);
}
.instagram3-thumb:hover::before {
  transform: scaleY(1);
}

/* === product-details  (inner) === */
@media only screen and (max-width: 767px) {
  .product-details .container.rr-container-1350 {
    padding-left: 20px;
    padding-right: 20px;
  }
}
@media (max-width: 575px) {
  .product-details .container.rr-container-1350 {
    padding-left: 16px;
    padding-right: 16px;
  }
}
.product-details .product-details-wrapper {
  width: 100%;
  max-width: 100%;
  overflow: hidden;
}
@media only screen and (max-width: 991px) {
  .product-details .product-details-wrapper .row {
    row-gap: 24px;
    --bs-gutter-x: 24px;
  }
}
@media only screen and (max-width: 767px) {
  .product-details .product-details-wrapper .row {
    row-gap: 28px;
    --bs-gutter-x: 20px;
  }
}
@media (max-width: 575px) {
  .product-details .product-details-wrapper .row {
    row-gap: 24px;
    --bs-gutter-x: 16px;
  }
}
@media only screen and (max-width: 1199px) {
  .product-details .product-details-wrapper .col-xl-6.col-lg-6 {
    flex: 0 0 100%;
    max-width: 100%;
  }
}
@media only screen and (max-width: 1199px) {
  .product-details .product-details-wrapper .col-xl-6.col-lg-6:first-child {
    order: 1;
  }
}
@media only screen and (max-width: 1199px) {
  .product-details .product-details-wrapper .col-xl-6.col-lg-6:last-child {
    order: 2;
  }
}
.product-details .product-details-items .tab-content .product-details-thumb {
  position: relative;
}
.product-details .product-details-items .tab-content .product-details-thumb .thumb {
  position: relative;
  overflow: hidden;
  border-radius: 20px;
}
.product-details .product-details-items .tab-content .product-details-thumb .thumb img {
  border: none;
  width: 100%;
  height: auto;
  display: block;
  border-radius: 20px;
  transform-origin: center center;
  transition: transform 0.35s ease-out;
  will-change: transform;
}
@media only screen and (max-width: 991px) {
  .product-details .product-details-items .tab-content .product-details-thumb .thumb img {
    border-radius: 16px;
  }
}
@media only screen and (max-width: 767px) {
  .product-details .product-details-items .tab-content .product-details-thumb .thumb img {
    border-radius: 12px;
  }
}
@media (max-width: 575px) {
  .product-details .product-details-items .tab-content .product-details-thumb .thumb img {
    border-radius: 10px;
  }
}
.product-details .product-details-items .tab-content .product-details-thumb .content {
  position: absolute;
  gap: 20px;
  top: 5%;
  right: 6%;
  z-index: 99;
}
@media only screen and (max-width: 1199px) {
  .product-details .product-details-items .tab-content .product-details-thumb .content {
    top: 4%;
    right: 4%;
    gap: 15px;
  }
}
@media only screen and (max-width: 991px) {
  .product-details .product-details-items .tab-content .product-details-thumb .content {
    top: 3%;
    right: 3%;
    gap: 12px;
  }
}
@media (max-width: 575px) {
  .product-details .product-details-items .tab-content .product-details-thumb .content {
    top: 2%;
    right: 2%;
    gap: 10px;
  }
}
.product-details .product-details-items .tab-content .product-details-thumb .content .sale {
  display: block;
  display: flex;
  padding: 3px 12px 3px;
  justify-content: center;
  align-items: center;
  border-radius: 3px;
  background: #F2C94C;
  color: #0C0C0C;
  text-align: center;
  font-family: Lato;
  font-weight: 400;
  font-style: Regular;
  font-size: 14px;
  line-height: 22px;
  letter-spacing: 0px;
  margin-bottom: 10px;
}
@media only screen and (max-width: 991px) {
  .product-details .product-details-items .tab-content .product-details-thumb .content .sale {
    padding: 2px 10px 2px;
    font-size: 12px;
    line-height: 20px;
    margin-bottom: 8px;
  }
}
@media (max-width: 575px) {
  .product-details .product-details-items .tab-content .product-details-thumb .content .sale {
    padding: 2px 8px 2px;
    font-size: 11px;
    line-height: 18px;
    margin-bottom: 6px;
  }
}
.product-details .product-details-items .tab-header {
  margin-top: 20px;
  position: relative;
  align-items: center;
  justify-content: center;
}
@media only screen and (max-width: 991px) {
  .product-details .product-details-items .tab-header {
    margin-top: 16px;
  }
}
@media (max-width: 575px) {
  .product-details .product-details-items .tab-header {
    margin-top: 14px;
  }
}
.product-details .product-details-items .tab-header .nav {
  position: relative;
  display: flex;
  align-items: center;
  gap: 20px;
  justify-content: flex-start;
  border: none !important;
  flex-wrap: nowrap;
  overflow-x: auto;
  overflow-y: hidden;
  -webkit-overflow-scrolling: touch;
  scrollbar-width: thin;
  padding-bottom: 4px;
}
@media only screen and (max-width: 991px) {
  .product-details .product-details-items .tab-header .nav {
    gap: 12px;
    justify-content: flex-start;
  }
}
@media only screen and (max-width: 767px) {
  .product-details .product-details-items .tab-header .nav {
    gap: 10px;
  }
}
@media (max-width: 575px) {
  .product-details .product-details-items .tab-header .nav {
    gap: 8px;
    flex-wrap: nowrap;
    min-width: 0;
  }
}
.product-details .product-details-items .tab-header .nav .item,
.product-details .product-details-items .tab-header .nav .tab-header-nav-item {
  flex: 0 0 auto;
  min-width: 0;
}
.product-details .product-details-items .tab-header .nav .item a,
.product-details .product-details-items .tab-header .nav .tab-header-nav-item a {
  display: block;
  width: 84px;
  height: 84px;
  border-radius: 10px;
  overflow: hidden;
  border: 1px solid #ececf4;
  background: #fff;
  transition: all 0.25s ease;
}
.product-details .product-details-items .tab-header .nav .item a img,
.product-details .product-details-items .tab-header .nav .tab-header-nav-item a img {
  border-radius: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}
@media (max-width: 575px) {
  .product-details .product-details-items .tab-header .nav .item a img,
  .product-details .product-details-items .tab-header .nav .tab-header-nav-item a img {
    border-radius: 6px;
    max-height: 72px;
    object-fit: cover;
  }
}
.product-details .product-details-items .tab-header .nav:focus {
  border: none !important;
  outline: none !important;
  box-shadow: none !important;
}
.product-details .product-details-items .tab-header .nav .item a img {
  width: 100%;
}
.product-details .product-details-items .tab-header .nav .item a.active,
.product-details .product-details-items .tab-header .nav .tab-header-nav-item a.active {
  border-color: var(--primary-two);
  box-shadow: 0 8px 18px rgba(255, 75, 141, 0.18);
}
@media (max-width: 575px) {
  .product-details .product-details-items .tab-header .nav .item a,
  .product-details .product-details-items .tab-header .nav .tab-header-nav-item a {
    width: 68px;
    height: 68px;
  }
}
.product-details .product-details-items .tab-header .nav .item a.active img {
  border-radius: 5px;
}
.product-details .product-details-items .tab-header .nav .item a:hover img {
  border-radius: 5px;
}
@media only screen and (max-width: 1199px) {
  .product-details-content {
    padding-top: 0;
  }
}
@media (max-width: 575px) {
  .product-details-content {
    padding-left: 0;
    padding-right: 0;
  }
}
.product-details-content__text {
  color: #0C0C0C;
  font-family: Lato;
  font-weight: 400;
  font-style: Regular;
  font-size: 18px;
  line-height: 28px;
  letter-spacing: 0px;
  margin-bottom: 13px;
}
@media only screen and (max-width: 991px) {
  .product-details-content__text {
    font-size: 16px;
    line-height: 26px;
    margin-bottom: 10px;
  }
}
@media (max-width: 575px) {
  .product-details-content__text {
    font-size: 15px;
    line-height: 24px;
    margin-bottom: 8px;
  }
}
.product-details-content__title {
  color: #0C0C0C;
  font-family: var(--font_Playfair);
  font-weight: 700;
  font-style: Bold;
  font-size: 40px;
  line-height: 48px;
  letter-spacing: -0.5px;
}
@media only screen and (max-width: 1399px) {
  .product-details-content__title {
    font-size: 35px;
    line-height: 44px;
  }
}
@media only screen and (max-width: 1199px) {
  .product-details-content__title {
    font-size: 30px;
    line-height: 38px;
  }
}
@media only screen and (max-width: 991px) {
  .product-details-content__title {
    font-size: 28px;
    line-height: 36px;
  }
}
@media only screen and (max-width: 767px) {
  .product-details-content__title {
    font-size: 26px;
    line-height: 34px;
  }
}
@media (max-width: 575px) {
  .product-details-content__title {
    font-size: 22px;
    line-height: 30px;
  }
}
.product-details-content-items {
  display: flex;
  gap: 24px;
  align-items: center;
  margin-bottom: 7px;
  flex-wrap: wrap;
}
@media only screen and (max-width: 991px) {
  .product-details-content-items {
    gap: 18px;
    margin-bottom: 6px;
  }
}
@media only screen and (max-width: 767px) {
  .product-details-content-items {
    gap: 14px;
  }
}
@media (max-width: 575px) {
  .product-details-content-items {
    gap: 12px;
    margin-bottom: 6px;
  }
}
@media only screen and (max-width: 991px) {
  .product-details-content__price .price-now,
  .product-details-content__price .price-was,
  .product-details-content__price .price-currency {
    font-size: 20px;
    line-height: 28px;
  }
}
@media (max-width: 575px) {
  .product-details-content__price .price-now,
  .product-details-content__price .price-was,
  .product-details-content__price .price-currency {
    font-size: 18px;
    line-height: 26px;
  }
}
.product-details-content__price .price-now {
  font-family: var(--font_Playfair);
  font-weight: 700;
  font-style: Bold;
  font-size: 24px;
  line-height: 30px;
  letter-spacing: 0px;
  text-transform: capitalize;
  color: #171E16;
}
.product-details-content__price .price-was {
  color: #A5A5A5;
  font-family: var(--font_Playfair);
  font-weight: 700;
  font-style: Bold;
  font-size: 24px;
  line-height: 30px;
  letter-spacing: 0px;
  text-transform: capitalize;
}
.product-details-content__price .price-currency {
  color: #A5A5A5;
  font-family: var(--font_Playfair);
  font-weight: 700;
  font-style: Bold;
  font-size: 24px;
  line-height: 30px;
  letter-spacing: 0px;
  text-transform: capitalize;
}
.product-details-content__badge-pill {
  background: #0C0C0C;
  width: 100px;
  padding: 6px 16px;
  border-radius: 100px;
  color: #FFFFFF;
  font-family: Archivo Narrow;
  font-weight: 700;
  font-style: Bold;
  font-size: 16px;
  line-height: 25px;
  letter-spacing: 0%;
  text-align: center;
  text-transform: uppercase;
}
@media only screen and (max-width: 991px) {
  .product-details-content__badge-pill {
    width: auto;
    min-width: 80px;
    padding: 5px 12px;
    font-size: 14px;
    line-height: 22px;
  }
}
@media (max-width: 575px) {
  .product-details-content__badge-pill {
    min-width: 72px;
    padding: 4px 10px;
    font-size: 12px;
    line-height: 20px;
  }
}
.product-details-content__rating .stars {
  display: flex;
  align-items: center;
  gap: 8px;
}
.product-details-content__rating .stars .star {
  color: #F2C94C;
}
.product-details-content__rating .stars .star5 {
  color: #B5B5B5;
}
.product-details-content__desc {
  color: #5B5B5B;
  font-family: Lato;
  font-weight: 400;
  font-style: Regular;
  font-size: 16px;
  line-height: 26px;
  letter-spacing: 0px;
  margin-bottom: 32px;
  padding: 24px 0px 24px;
  border-bottom: 1px solid #E6E6E6;
}
@media only screen and (max-width: 991px) {
  .product-details-content__desc {
    font-size: 15px;
    line-height: 24px;
    margin-bottom: 24px;
    padding: 20px 0;
  }
}
@media (max-width: 575px) {
  .product-details-content__desc {
    font-size: 14px;
    line-height: 22px;
    margin-bottom: 20px;
    padding: 16px 0;
  }
}
.product-details-content__color-items .label {
  font-family: Lato;
  font-weight: 400;
  font-style: Regular;
  font-size: 16px;
  line-height: 26px;
  letter-spacing: 0px;
  color: #5B5B5B;
}
@media (max-width: 575px) {
  .product-details-content__color-items .label {
    font-size: 14px;
    line-height: 22px;
  }
}
.product-details-content__color-items .selected-dot {
  width: 16px;
  height: 16px;
  border-radius: 999px;
  background: #FF1212;
  display: inline-block;
}
@media (max-width: 575px) {
  .product-details-content__color-items .selected-dot {
    width: 14px;
    height: 14px;
  }
}
.product-details-content__color-items .selected-name {
  color: #0C0C0C;
  font-family: var(--font_Playfair);
  font-weight: 500;
  font-style: Medium;
  font-size: 16px;
  line-height: 22px;
  letter-spacing: 0px;
}
@media (max-width: 575px) {
  .product-details-content__color-items .selected-name {
    font-size: 14px;
    line-height: 20px;
  }
}
.product-details-content__color-items .color-row {
  display: flex;
  align-items: center;
  gap: 10px;
  flex-wrap: wrap;
}
@media (max-width: 575px) {
  .product-details-content__color-items .color-row {
    gap: 8px;
  }
}
.product-details-content__color-items .color-dot {
  width: 18px;
  height: 18px;
  border-radius: 999px;
  border: 2px solid transparent;
  background: var(--dot);
  padding: 0;
  outline: none;
  cursor: pointer;
  position: relative;
  box-sizing: border-box;
  transition: all 0.3s ease;
}
@media (max-width: 575px) {
  .product-details-content__color-items .color-dot {
    width: 16px;
    height: 16px;
  }
}
.product-details-content__color-items .color-dot.is-active {
  border-color: #fff;
  box-shadow: 0 0 0 2px #FF1212;
}
.product-details-content__color-items .color-dot:hover:not(.is-active) {
  border-color: #FF1212;
  box-shadow: 0 0 0 1px rgba(255, 18, 18, 0.3);
}
.product-details-content__info .label {
  color: #0C0C0C;
  font-family: var(--font_Playfair);
  font-weight: 500;
  font-style: Medium;
  font-size: 18px;
  line-height: 24px;
  letter-spacing: 0px;
  text-transform: capitalize;
  margin-bottom: 12px;
  display: block;
}
@media (max-width: 575px) {
  .product-details-content__info .label {
    font-size: 16px;
    line-height: 22px;
    margin-bottom: 10px;
  }
}
.product-details-content__info .d-flex.flex-wrap.align-items-center.gap-3 {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 16px;
  min-height: 46px;
}
@media only screen and (max-width: 767px) {
  .product-details-content__info .d-flex.flex-wrap.align-items-center.gap-3 {
    gap: 12px;
  }
}
@media (max-width: 575px) {
  .product-details-content__info .d-flex.flex-wrap.align-items-center.gap-3 {
    gap: 10px;
    min-height: 44px;
  }
}
.product-details-content__info .qty {
  display: inline-flex;
  align-items: center;
  gap: 14px;
  border-radius: 999px;
  padding: 10px 14px;
  background: #fff;
  border: 1px solid #E6E6E6;
  height: 46px;
  flex-shrink: 0;
}
@media (max-width: 575px) {
  .product-details-content__info .qty {
    height: 44px;
    padding: 8px 12px;
    gap: 10px;
  }
}
.product-details-content__info .qty .qty-btn {
  width: 28px;
  height: 28px;
  border: 0;
  background: transparent;
  font-size: 18px;
  line-height: 1;
  cursor: pointer;
  color: #111;
  transition: all 0.3s ease;
  display: flex;
  align-items: center;
  justify-content: center;
}
@media (max-width: 575px) {
  .product-details-content__info .qty .qty-btn {
    width: 24px;
    height: 24px;
    font-size: 16px;
  }
}
.product-details-content__info .qty .qty-btn:hover:not(:disabled) {
  color: var(--primary-two);
  transform: scale(1.1);
}
.product-details-content__info .qty .qty-btn:active:not(:disabled) {
  transform: scale(0.95);
}
.product-details-content__info .qty .qty-btn:disabled {
  opacity: 0.4;
  cursor: not-allowed;
}
.product-details-content__info .qty .qty-val {
  color: #000000;
  font-family: var(--font_Playfair);
  font-weight: 500;
  font-style: Medium;
  font-size: 18px;
  line-height: 24px;
  letter-spacing: 0px;
  text-transform: capitalize;
  width: 26px;
  text-align: center;
  transition: transform 0.2s ease;
  display: inline-block;
}
.product-details-content__info .btn-add {
  border: 0;
  background: #111;
  color: #fff;
  border-radius: 999px;
  padding: 6px 10px 6px 20px;
  font-family: var(--font_Playfair);
  font-weight: 500;
  font-size: 16px;
  line-height: 22px;
  letter-spacing: 0px;
  display: inline-flex;
  justify-content: space-between;
  align-items: center;
  gap: 12px;
  height: 46px;
  min-height: 46px;
  transition: all 0.4s ease-in-out;
  cursor: pointer;
  white-space: nowrap;
}
@media only screen and (max-width: 991px) {
  .product-details-content__info .btn-add {
    padding: 6px 8px 6px 16px;
    font-size: 15px;
    gap: 10px;
    height: 46px;
    min-height: 46px;
  }
}
@media (max-width: 575px) {
  .product-details-content__info .btn-add {
    padding: 6px 8px 6px 14px;
    font-size: 14px;
    line-height: 20px;
    height: 44px;
    min-height: 44px;
    gap: 8px;
  }
}
.product-details-content__info .btn-add:hover {
  background: #FFEFF2;
  color: #111;
  transform: translateY(-2px);
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
}
.product-details-content__info .btn-add:active {
  transform: translateY(0);
}
.product-details-content__info .btn-add .btn-icon {
  width: 34px;
  height: 34px;
  min-width: 34px;
  min-height: 34px;
  border-radius: 50%;
  display: grid;
  place-items: center;
  background: #fff;
  color: #111;
  font-size: 16px;
  font-weight: 900;
  transition: all 0.3s ease;
  flex-shrink: 0;
}
@media (max-width: 575px) {
  .product-details-content__info .btn-add .btn-icon {
    width: 30px;
    height: 30px;
    min-width: 30px;
    min-height: 30px;
    font-size: 14px;
  }
}
.product-details-content__info .btn-add .btn-icon:hover {
  background: #FFEFF2;
  color: #111;
}
.product-details-content__info .btn-heart {
  width: 46px;
  height: 46px;
  min-width: 46px;
  min-height: 46px;
  border-radius: 50%;
  border: 1px solid #E6E6E6;
  background: #fff;
  display: grid;
  place-items: center;
  font-size: 18px;
  cursor: pointer;
  transition: all 0.3s ease;
  color: #111;
  flex-shrink: 0;
}
@media (max-width: 575px) {
  .product-details-content__info .btn-heart {
    width: 44px;
    height: 44px;
    min-width: 44px;
    min-height: 44px;
  }
}
.product-details-content__info .btn-heart:hover {
  border-color: var(--primary-two);
  background: #FFEFF2;
  transform: scale(1.1);
}
.product-details-content__info .btn-heart:active {
  transform: scale(0.95);
}
.product-details-content__info .btn-heart.active {
  color: var(--primary-two);
  border-color: var(--primary-two);
  background: #FFEFF2;
}
.product-details-content__info .btn-buy {
  border: 1px solid #E6E6E6;
  background: #fff;
  color: #111;
  border-radius: 999px;
  padding: 6px 6px 6px 18px;
  font-family: var(--font_Playfair);
  font-weight: 500;
  font-style: Medium;
  font-size: 16px;
  line-height: 22px;
  letter-spacing: 0px;
  display: inline-flex;
  gap: 10px;
  align-items: center;
  justify-content: space-between;
  cursor: pointer;
  transition: all 0.4s ease-in-out;
}
@media only screen and (max-width: 991px) {
  .product-details-content__info .btn-buy {
    margin-bottom: 28px;
  }
}
@media (max-width: 575px) {
  .product-details-content__info .btn-buy {
    margin-top: 20px;
    margin-bottom: 24px;
    padding: 6px 6px 6px 14px;
    font-size: 14px;
    line-height: 20px;
  }
}
.product-details-content__info .btn-buy:hover {
  background: var(--primary-two);
  color: #fff;
  border-color: var(--primary-two);
  transform: translateY(-2px);
  box-shadow: 0 4px 12px rgba(238, 45, 122, 0.3);
}
.product-details-content__info .btn-buy:active {
  transform: translateY(0);
}
.product-details-content__info .btn-buy .btn-icon {
  width: 30px;
  height: 30px;
  border-radius: 999px;
  display: grid;
  place-items: center;
  background: #111;
  color: #fff;
  font-size: 16px;
  font-weight: 900;
  transition: all 0.3s ease;
}
.product-details-content__info .btn-buy:hover .btn-icon {
  background: #fff;
  color: var(--primary-two);
}
.product-details-content__meta .meta-row {
  display: flex;
  gap: 10px;
  margin-bottom: 6px;
  flex-wrap: wrap;
}
@media (max-width: 575px) {
  .product-details-content__meta .meta-row {
    gap: 6px;
    margin-bottom: 4px;
  }
}
.product-details-content__meta .meta-row .k {
  color: #0C0C0C;
  min-width: 80px;
  font-family: var(--font_Playfair);
  font-weight: 500;
  font-style: Medium;
  font-size: 16px;
  line-height: 22px;
  letter-spacing: 0px;
}
@media (max-width: 575px) {
  .product-details-content__meta .meta-row .k {
    min-width: 70px;
    font-size: 14px;
    line-height: 20px;
  }
}
.product-details-content__meta .meta-row .v {
  color: #5B5B5B;
  font-family: Lato;
  font-weight: 400;
  font-style: Regular;
  font-size: 16px;
  line-height: 26px;
  letter-spacing: 0px;
}
@media (max-width: 575px) {
  .product-details-content__meta .meta-row .v {
    font-size: 14px;
    line-height: 22px;
  }
}
.product-details-content__checkout-text {
  font-family: var(--font_Playfair);
  font-weight: 500;
  font-style: Medium;
  font-size: 16px;
  line-height: 22px;
  letter-spacing: 0px;
  color: #171E16;
}
@media (max-width: 575px) {
  .product-details-content__checkout-text {
    font-size: 14px;
    line-height: 20px;
  }
}
.product-details-content__checkout .pay-row {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
  align-items: center;
}
@media only screen and (max-width: 767px) {
  .product-details-content__checkout .pay-row {
    gap: 8px;
  }
}
@media (max-width: 575px) {
  .product-details-content__checkout .pay-row {
    gap: 6px;
  }
}
.product-details-content__checkout .pay-row .pay-badge {
  border: 1px solid var(--line);
  border-radius: 8px;
  padding: 8px 12px;
  font-family: system-ui, -apple-system, Segoe UI, Roboto, Arial, sans-serif;
  font-size: 12px;
  font-weight: 700;
  color: #111;
  background: #fff;
}
@media (max-width: 575px) {
  .product-details-content__checkout .pay-row .pay-badge {
    padding: 6px 10px;
    font-size: 11px;
  }
  .product-details-content__checkout .pay-row .pay-badge img {
    max-height: 20px;
    width: auto;
    object-fit: contain;
  }
}

/* === Product Tab  (inner) === */
.product-tab .tab-buttons {
  display: flex;
  margin-bottom: 50px;
}
.product-tab .tab-buttons .nav-item .nav-link {
  color: #5B5B5B;
  font-family: var(--font_Playfair);
  font-weight: 500;
  font-style: Medium;
  font-size: 22px;
  line-height: 28px;
  letter-spacing: 0px;
}
@media (max-width: 575px) {
  .product-tab .tab-buttons .nav-item .nav-link {
    font-size: 16px;
  }
}
.product-tab .tab-buttons .nav-item .nav-link.active {
  color: #0C0C0C;
}
.product-tab-card__content-title {
  color: #0C0C0C;
  font-family: var(--font_Playfair);
  font-weight: 700;
  font-style: Bold;
  font-size: 24px;
  line-height: 30px;
  letter-spacing: 0px;
  text-transform: capitalize;
  margin-bottom: 16px;
}
@media only screen and (max-width: 1399px) {
  .product-tab-card__content-title {
    font-size: 22px;
  }
}
@media only screen and (max-width: 1199px) {
  .product-tab-card__content-title {
    font-size: 20px;
  }
}
@media (max-width: 575px) {
  .product-tab-card__content-title {
    font-size: 18px;
  }
}
.product-tab-card__content-dsc {
  color: #5B5B5B;
  font-family: Lato;
  font-weight: 400;
  font-style: Regular;
  font-size: 16px;
  line-height: 26px;
  letter-spacing: 0px;
}
.product-tab-card__content-text {
  color: #5B5B5B;
  font-family: Lato;
  font-weight: 400;
  font-style: Regular;
  font-size: 16px;
  line-height: 26px;
  letter-spacing: 0px;
}
.product-tab-card__content-subtitle {
  color: #5B5B5B;
  font-family: Lato;
  font-weight: 400;
  font-style: Regular;
  font-size: 16px;
  line-height: 26px;
  letter-spacing: 0px;
  margin-bottom: 30px;
}
.product-tab-card__content-title2 {
  color: #0C0C0C;
  font-family: var(--font_Playfair);
  font-weight: 700;
  font-style: Bold;
  font-size: 24px;
  line-height: 30px;
  letter-spacing: 0px;
  text-transform: capitalize;
  margin-bottom: 14px;
}
@media only screen and (max-width: 1399px) {
  .product-tab-card__content-title2 {
    font-size: 22px;
  }
}
@media only screen and (max-width: 1199px) {
  .product-tab-card__content-title2 {
    font-size: 20px;
  }
}
@media (max-width: 575px) {
  .product-tab-card__content-title2 {
    font-size: 18px;
  }
}
.product-tab-card__content-subtitle2 {
  color: #5B5B5B;
  font-family: Lato;
  font-weight: 400;
  font-style: Regular;
  font-size: 16px;
  line-height: 26px;
  letter-spacing: 0px;
}
.product-tab-items {
  padding: 30px 40px 40px;
  background: #FFEFF2;
  border-radius: 16px;
}
@media (max-width: 575px) {
  .product-tab-items {
    padding: 25px 25px 30px;
  }
}
.product-tab-items__text {
  color: #0C0C0C;
  font-family: var(--font_Playfair);
  font-weight: 500;
  font-style: Medium;
  font-size: 22px;
  line-height: 28px;
  letter-spacing: 0px;
  border-bottom: 1px solid #E6E6E6;
  padding-bottom: 10px;
  margin-bottom: 20px;
}
@media only screen and (max-width: 1199px) {
  .product-tab-items__text {
    font-size: 20px;
  }
}
@media (max-width: 575px) {
  .product-tab-items__text {
    font-size: 16px;
  }
}
.product-tab-items__card {
  padding: 32px;
  background: #FFDEE5;
  border-radius: 8px;
  display: flex;
  align-items: center;
  gap: 24px;
}
@media (max-width: 575px) {
  .product-tab-items__card {
    padding: 32px 20px;
  }
}
@media (max-width: 575px) {
  .product-tab-items__card {
    flex-wrap: wrap;
  }
}
.product-tab-items__card:not(:last-child) {
  margin-bottom: 20px;
}
.product-tab-items__card-info {
  display: flex !important;
  justify-content: space-between !important;
}
@media (max-width: 575px) {
  .product-tab-items__card-info {
    flex-wrap: wrap;
    gap: 10px;
  }
}
.product-tab-items__card-info-content-text {
  color: #5B5B5B;
  font-family: Lato;
  font-weight: 400;
  font-style: Regular;
  font-size: 18px;
  line-height: 28px;
  letter-spacing: 0px;
  margin-bottom: 5px;
}
@media (max-width: 575px) {
  .product-tab-items__card-info-content-text {
    font-size: 16px;
  }
}
.product-tab-items__card-info-content-name {
  color: #000000;
  font-family: var(--font_Playfair);
  font-weight: 500;
  font-style: Medium;
  font-size: 22px;
  line-height: 28px;
  letter-spacing: 0px;
}
@media (max-width: 575px) {
  .product-tab-items__card-info-content-name {
    font-size: 16px;
  }
}
.product-tab-contact {
  padding: 40px;
  border-radius: 16px;
  background: #FFEFF2;
}
@media only screen and (max-width: 1199px) {
  .product-tab-contact {
    padding: 33px 30px;
  }
}
@media (max-width: 575px) {
  .product-tab-contact {
    padding: 30px 25px;
  }
}
.product-tab-contact__title {
  color: #0C0C0C;
  font-family: var(--font_Playfair);
  font-weight: 700;
  font-style: Bold;
  font-size: 24px;
  line-height: 30px;
  letter-spacing: 0px;
  text-transform: capitalize;
  border-bottom: 1px solid #E6E6E6;
  padding-bottom: 10px;
  margin-bottom: 20px;
}
@media only screen and (max-width: 1199px) {
  .product-tab-contact__title {
    font-size: 20px;
  }
}
@media (max-width: 575px) {
  .product-tab-contact__title {
    font-size: 16px;
    margin-bottom: 15px;
  }
}
.product-tab-contact__form {
  position: relative;
}
.product-tab-contact__form-input-name {
  color: #0C0C0C;
  font-family: var(--font_Playfair);
  font-weight: 500;
  font-style: Medium;
  display: block;
  font-size: 20px;
  line-height: 26px;
  letter-spacing: 0px;
  margin-bottom: 12px;
}
@media (max-width: 575px) {
  .product-tab-contact__form-input-name {
    font-size: 17px;
  }
}
.product-tab-contact__form-input-field {
  position: relative;
  background: #FFDEE5;
  padding: 15px 20px;
  border-radius: 8px;
  font-family: Lato;
  font-weight: 400;
  font-style: Regular;
  font-size: 16px;
  line-height: 26px;
  letter-spacing: 0px;
  width: 100%;
  border: none;
}
@media (max-width: 575px) {
  .product-tab-contact__form-input-field {
    padding: 13px 18px;
  }
}
.product-tab-contact__form-input-field::placeholder {
  font-size: 16px;
  font-weight: 400;
  line-height: 23px;
}
.product-tab-contact__form-input .textarea {
  height: 163px;
}
.product-tab-contact__form-button .btn-orange:hover {
  background: #FFDEE5;
}

/* === featured-products  (inner) === */
.featured-products2 {
  position: relative;
  padding: 120px 0px 80px;
}
.featured-products2-controls {
  display: flex;
  align-items: center;
  gap: 24px;
  margin-bottom: 41px;
}
@media only screen and (max-width: 1399px) {
  .featured-products2-controls {
    margin-right: auto;
    margin-bottom: 41px;
    margin-top: -96px;
  }
}
@media only screen and (max-width: 1199px) {
  .featured-products2-controls {
    margin-right: auto;
    margin-bottom: 45px;
    margin-top: -59px;
  }
}
@media only screen and (max-width: 991px) {
  .featured-products2-controls {
    margin-right: auto;
    margin-bottom: 51px;
    margin-top: -104px;
  }
}
@media (max-width: 575px) {
  .featured-products2-controls {
    margin-bottom: 30px;
  }
}
.featured-products2-controls__arrowLeft {
  padding: 6px 24px 6px 6px;
  height: 48px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font_Playfair);
  font-weight: 500;
  font-style: Medium;
  font-size: 18px;
  line-height: 24px;
  letter-spacing: 0px;
  text-transform: capitalize;
  color: var(--text-color-one);
  border: 1px solid var(--text-color-four);
  border-radius: 1000px;
  gap: 8px;
  transition: all 0.4s ease-in-out;
}
.featured-products2-controls__arrowLeft .icon {
  background: var(--text-color-one);
  width: 36px;
  height: 36px;
  line-height: 36px;
  border-radius: 79.2px;
  text-align: center;
  gap: 7px;
  color: var(--white);
  font-size: 16px;
  transition: all 0.4s ease-in-out;
}
.featured-products2-controls__arrowLeft:hover {
  background: var(--primary-two);
  color: var(--text-color-four);
}
.featured-products2-controls__arrowLeft:hover .icon {
  background: var(--white);
  color: var(--text-color-one);
}
.featured-products2-controls__arrowRight {
  padding: 6px 6px 6px 24px;
  height: 48px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font_Playfair);
  font-weight: 500;
  font-style: Medium;
  font-size: 18px;
  line-height: 24px;
  letter-spacing: 0px;
  text-transform: capitalize;
  background: var(--primary-two);
  color: var(--text-color-four);
  border: 1px solid var(--text-color-four);
  border-radius: 1000px;
  gap: 8px;
  transition: all 0.4s ease-in-out;
}
.featured-products2-controls__arrowRight .icon {
  width: 36px;
  height: 36px;
  line-height: 36px;
  border-radius: 79.2px;
  text-align: center;
  gap: 7px;
  font-size: 16px;
  background: var(--white);
  color: var(--text-color-one);
  transition: all 0.4s ease-in-out;
}
.featured-products2-controls__arrowRight:hover {
  color: var(--text-color-one);
  background-color: transparent;
}
.featured-products2-controls__arrowRight:hover .icon {
  color: var(--white);
  background-color: var(--text-color-one);
}
.featured-products2__info {
  position: relative;
}
.featured-products2__info .section-heading__title2 {
  font-weight: 700;
  font-style: Bold;
  font-size: 40px;
  line-height: 48px;
  text-align: left;
  letter-spacing: -0.5px;
}
.featured-products2-card {
  margin-bottom: 48px;
}
.featured-products2-card__thumb img {
  border-top-left-radius: 16px;
  border-top-right-radius: 16px;
  width: 100%;
}
@media only screen and (max-width: 767px) {
  .featured-products2-card__thumb img {
    border-top-left-radius: 10px;
    border-top-right-radius: 10px;
  }
}
.featured-products2-card__content {
  padding: 16px;
  background: var(--primary);
  border-bottom-left-radius: 16px;
  border-bottom-right-radius: 16px;
}
.featured-products2-card__content-title {
  color: var(--text-color-one);
  font-family: var(--font_Playfair);
  font-weight: 500;
  font-style: Medium;
  font-size: 18px;
  line-height: 24px;
  letter-spacing: 0px;
  text-transform: capitalize;
  margin-bottom: 8px;
}
.featured-products2-card__content-list {
  display: flex;
  gap: 7px;
  align-items: center;
  list-style: none;
  margin-bottom: 8px;
}
.featured-products2-card__content-list-start i {
  color: var(--yellow);
}
.featured-products2-card__content-list-point {
  color: var(--text-color-one);
  font-family: var(--font_Lato);
  font-weight: 400;
  font-style: Regular;
  font-size: 14px;
  line-height: 22px;
  letter-spacing: 0px;
}
.featured-products2-card__content-list-text {
  color: var(--text-color6);
  font-family: var(--font_Lato);
  font-weight: 400;
  font-style: Regular;
  font-size: 14px;
  line-height: 22px;
  letter-spacing: 0px;
}
.featured-products2-card__content-dollar {
  color: var(--text-color-one);
  font-family: var(--font_Playfair);
  font-weight: 700;
  font-style: Bold;
  font-size: 20px;
  line-height: 28px;
  letter-spacing: 0px;
  text-transform: capitalize;
}

.shop-list-wrapper__items {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 32px;
}
@media only screen and (max-width: 991px) {
  .shop-list-wrapper__items {
    margin-bottom: 28px;
    flex-wrap: wrap;
    gap: 15px;
  }
}
@media (max-width: 575px) {
  .shop-list-wrapper__items {
    margin-bottom: 24px;
    flex-direction: column;
    align-items: flex-start;
    gap: 12px;
  }
}
.shop-list-wrapper__items-text {
  color: #5B5B5B;
  font-family: Lato;
  font-weight: 400;
  font-style: Regular;
  font-size: 18px;
  line-height: 28px;
  letter-spacing: 0px;
}
@media only screen and (max-width: 991px) {
  .shop-list-wrapper__items-text {
    font-size: 16px;
    line-height: 26px;
  }
}
@media (max-width: 575px) {
  .shop-list-wrapper__items-text {
    font-size: 14px;
    line-height: 24px;
  }
}
.shop-list-wrapper__items .language {
  display: flex;
  align-items: center;
  gap: 10px;
  background: #0C0C0C;
  width: 116px;
  opacity: 1;
  border-radius: 43px;
  padding: 9px 24px;
}
.shop-list-wrapper__items .language .single-select {
  border: none;
  display: block;
  width: 100%;
  line-height: 5px;
  height: 100%;
  padding: 0px 5px 0px 0px;
  background-image: none;
  color: var(--white);
  font-size: 14px;
  font-style: normal;
  font-weight: 500;
  line-height: normal;
  letter-spacing: -0.42px;
  background-color: transparent;
}
.shop-list-wrapper__items .language .single-select.open {
  color: var(--text-color-two);
  background-color: #0C0C0C;
}
.shop-list-wrapper__items .language .single-select:after {
  border-bottom: 1px solid var(--white);
  border-right: 1px solid var(--white);
  right: 20px;
  height: 7px;
  width: 7px;
}
.shop-list-wrapper__items .language .nice-select.open .list {
  width: fit-content;
  opacity: 1;
  pointer-events: auto;
  -webkit-transform: scale(1) translateY(8%);
  -ms-transform: scale(1) translateY(8%);
  transform: scale(1) translateY(8%);
  -moz-transform: scale(1) translateY(8%);
  -o-transform: scale(1) translateY(8%);
}
.shop-list-wrapper .pagination {
  margin-top: 89px;
}
@media only screen and (max-width: 1199px) {
  .shop-list-wrapper .pagination {
    margin-top: 60px;
  }
}
@media only screen and (max-width: 991px) {
  .shop-list-wrapper .pagination {
    margin-top: 50px;
  }
}
@media only screen and (max-width: 767px) {
  .shop-list-wrapper .pagination {
    margin-top: 40px;
  }
}
@media (max-width: 575px) {
  .shop-list-wrapper .pagination {
    margin-top: 30px;
  }
}
.shop-list-card {
  padding: 16px 40px 16px 16px;
  border: 1px solid #E6E6E6;
  display: flex;
  gap: 24px;
  border-radius: 12px;
  align-items: center;
  justify-content: space-between;
}
@media only screen and (max-width: 1199px) {
  .shop-list-card {
    padding: 16px 30px 16px 16px;
    gap: 20px;
  }
}
@media only screen and (max-width: 991px) {
  .shop-list-card {
    padding: 16px 24px 16px 16px;
    gap: 18px;
  }
}
@media only screen and (max-width: 767px) {
  .shop-list-card {
    padding: 16px 20px 16px 16px;
    gap: 16px;
    flex-wrap: wrap;
  }
}
@media (max-width: 575px) {
  .shop-list-card {
    padding: 16px 16px;
    flex-wrap: wrap;
    justify-content: center;
    gap: 14px;
  }
}
.shop-list-card__thumb {
  position: relative;
}
.shop-list-card__thumb img {
  border-radius: 16px;
  width: 100%;
}
.shop-list-card__thumb-offer {
  position: absolute;
  top: 6%;
  left: 7%;
  padding: 5px 15px;
  color: var(--text-color-one);
  background: var(--yellow);
  border-radius: 23px;
  font-family: var(--font_Lato);
  font-weight: 400;
  font-style: Regular;
  font-size: 14px;
  line-height: 22px;
  letter-spacing: 0px;
}
.shop-list-card__content-star {
  display: flex;
  gap: 5px;
  align-items: center;
  color: #0C0C0C;
  margin-bottom: 17px;
}
.shop-list-card__content-title {
  color: #0C0C0C;
  font-family: var(--font_Playfair);
  font-weight: 500;
  font-style: Medium;
  font-size: 20px;
  line-height: 26px;
  letter-spacing: 0px;
  margin-bottom: 10px;
}
@media (max-width: 575px) {
  .shop-list-card__content-title {
    font-size: 17px;
    margin-bottom: 8px;
  }
}
.shop-list-card__content-title a {
  color: inherit;
  text-decoration: none;
  transition: all 0.3s ease;
}
.shop-list-card__content-title a:hover {
  color: #EE2D7A;
}
.shop-list-card__content-subtitle {
  color: #5B5B5B;
  font-family: Lato;
  font-weight: 400;
  font-style: Regular;
  font-size: 16px;
  line-height: 26px;
  letter-spacing: 0px;
  margin-bottom: 17px;
}
@media (max-width: 575px) {
  .shop-list-card__content-subtitle {
    font-size: 15px;
    margin-bottom: 10px;
  }
}
.shop-list-card__content-price {
  display: flex;
  gap: 16px;
  align-items: center;
  margin-bottom: 12px;
}
.shop-list-card__content-price .original-price {
  color: var(--text-color-one);
  font-family: var(--font_Playfair);
  font-weight: 700;
  font-style: Bold;
  font-size: 24px;
  line-height: 30px;
  letter-spacing: 0px;
  text-transform: capitalize;
}
@media only screen and (max-width: 1399px) {
  .shop-list-card__content-price .original-price {
    font-size: 18px;
  }
}
@media (max-width: 575px) {
  .shop-list-card__content-price .original-price {
    font-size: 17px;
  }
}
.shop-list-card__content-price .offer-price {
  color: var(--text-color-two);
  font-family: var(--font_Playfair);
  font-weight: 500;
  font-style: Medium;
  font-size: 24px;
  line-height: 26px;
  letter-spacing: 0px;
  text-decoration: line-through;
}
@media only screen and (max-width: 1399px) {
  .shop-list-card__content-price .offer-price {
    font-size: 18px;
  }
}
@media (max-width: 575px) {
  .shop-list-card__content-price .offer-price {
    font-size: 17px;
  }
}
.shop-list-card__content-social {
  display: flex;
  justify-content: flex-end;
}
@media only screen and (max-width: 991px) {
  .shop-list-card__content-social {
    justify-content: flex-start;
  }
}
@media (max-width: 575px) {
  .shop-list-card__content-social {
    width: 100%;
    justify-content: center;
  }
}
.shop-list-card__content-social-link {
  display: flex;
  align-items: center;
  gap: 20px;
}
@media only screen and (max-width: 991px) {
  .shop-list-card__content-social-link {
    gap: 15px;
  }
}
@media (max-width: 575px) {
  .shop-list-card__content-social-link {
    gap: 12px;
    flex-wrap: wrap;
  }
}
.shop-list-card__content-social-link a {
  background: #FFEFF2;
  color: var(--black);
  width: 40px;
  height: 40px;
  border-radius: 100px;
  gap: 6.67px;
  text-align: center;
  opacity: 1;
  padding-top: 8.33px;
  padding-right: 10px;
  padding-bottom: 8.33px;
  padding-left: 10px;
}
@media only screen and (max-width: 991px) {
  .shop-list-card__content-social-link a {
    width: 36px;
    height: 36px;
    padding: 7px 9px;
  }
}
@media (max-width: 575px) {
  .shop-list-card__content-social-link a {
    width: 32px;
    height: 32px;
    padding: 6px 8px;
  }
}

/* === Shop Section (inner-page) === */
.shop-wrapper__items {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 32px;
}
@media (max-width: 575px) {
  .shop-wrapper__items {
    margin-bottom: 24px;
  }
}
.shop-wrapper__items-text {
  color: #5B5B5B;
  font-family: Lato;
  font-weight: 400;
  font-style: Regular;
  font-size: 18px;
  line-height: 28px;
  letter-spacing: 0px;
}
@media (max-width: 575px) {
  .shop-wrapper__items-text {
    font-size: 16px;
    line-height: 24px;
  }
}
.shop-wrapper__filter-btn {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  background: #0C0C0C;
  color: #FFFFFF;
  border: none;
  border-radius: 8px;
  padding: 12px 20px;
  font-family: var(--font_Playfair);
  font-weight: 500;
  font-style: Medium;
  font-size: 16px;
  line-height: 22px;
  letter-spacing: 0px;
  cursor: pointer;
  transition: all 0.3s ease;
  outline: none;
  position: relative;
  z-index: 10;
}
@media (max-width: 575px) {
  .shop-wrapper__filter-btn {
    padding: 10px 16px;
    font-size: 14px;
    gap: 8px;
  }
}
.shop-wrapper__filter-btn-text {
  color: inherit;
}
.shop-wrapper__filter-btn-icon {
  width: 22px;
  height: 19px;
  color: currentColor;
  flex-shrink: 0;
  transition: transform 0.3s ease;
}
@media (max-width: 575px) {
  .shop-wrapper__filter-btn-icon {
    width: 18px;
    height: 16px;
  }
}
.shop-wrapper__filter-btn:hover {
  background: #EE2D7A;
  transform: translateY(-2px);
  box-shadow: 0 4px 12px rgba(238, 45, 122, 0.3);
}
.shop-wrapper__filter-btn:active {
  transform: translateY(0);
}
.shop-wrapper__filter-btn.active {
  background: #EE2D7A;
}
.shop-wrapper__filter-btn.active .shop-wrapper__filter-btn-icon {
  transform: rotate(180deg);
}
.shop-wrapper__filter-btn-chevron {
  margin-left: 4px;
  font-size: 10px;
  transition: transform 0.3s ease;
}
.shop-wrapper__filter-dropdown {
  position: relative;
  display: inline-block;
}
.shop-wrapper__sort-dropdown {
  display: none;
  position: absolute;
  top: 100%;
  right: 0;
  margin-top: 8px;
  min-width: 200px;
  background: #FFFFFF;
  border-radius: 8px;
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.12);
  z-index: 1000;
  overflow: hidden;
  border: 1px solid #E6E6E6;
}
.shop-wrapper__sort-dropdown--open {
  display: block;
}
.shop-wrapper__sort-option {
  display: block;
  width: 100%;
  padding: 12px 16px;
  text-align: left;
  border: none;
  background: transparent;
  color: #0C0C0C;
  font-family: var(--font_Playfair);
  font-weight: 500;
  font-size: 14px;
  line-height: 1.4;
  cursor: pointer;
  transition: background 0.2s ease, color 0.2s ease;
}
.shop-wrapper__sort-option:hover {
  background: #FFEFF2;
  color: #EE2D7A;
}
.shop-wrapper__sort-option:not(:last-child) {
  border-bottom: 1px solid #E6E6E6;
}
.shop-wrapper .pagination {
  margin-top: 89px;
}
@media only screen and (max-width: 1199px) {
  .shop-wrapper .pagination {
    margin-top: 60px;
  }
}
@media only screen and (max-width: 991px) {
  .shop-wrapper .pagination {
    margin-top: 50px;
  }
}
@media only screen and (max-width: 767px) {
  .shop-wrapper .pagination {
    margin-top: 40px;
  }
}
@media (max-width: 575px) {
  .shop-wrapper .pagination {
    margin-top: 30px;
  }
}
.shop__button {
  margin-bottom: 40px;
}
@media only screen and (max-width: 1399px) {
  .shop__button {
    margin-right: auto;
    margin-bottom: 40px;
    margin-top: -55px;
  }
}
@media only screen and (max-width: 1199px) {
  .shop__button {
    margin-right: auto;
    margin-bottom: 35px;
    margin-top: -66px;
  }
}
@media only screen and (max-width: 991px) {
  .shop__button {
    margin-right: auto;
    margin-bottom: 25px;
  }
}
@media (max-width: 575px) {
  .shop__button {
    margin-bottom: 30px;
  }
}
.shop-card {
  position: relative;
  height: 100%;
  display: flex;
  flex-direction: column;
  border-radius: 16px;
  overflow: hidden;
  background: #fff;
  border: 1px solid #ececf4;
  box-shadow: 0 10px 28px rgba(17, 24, 39, 0.06);
  transition: transform 0.35s ease, box-shadow 0.35s ease, border-color 0.35s ease;
}
.shop-card__thumb {
  position: relative;
  height: 290px;
  background: linear-gradient(180deg, #ffffff 0%, #fafafe 100%);
  border-bottom: 1px solid #f0f0f6;
}
.shop-card__thumb img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  padding: 10px;
  border-radius: 14px;
}
@media only screen and (max-width: 767px) {
  .shop-card__thumb {
    height: 240px;
  }
  .shop-card__thumb img {
    border-top-left-radius: 0;
    border-top-right-radius: 0;
  }
}
.shop-card__thumb-offer {
  position: absolute;
  top: 6%;
  left: 7%;
  padding: 5px 15px;
  color: var(--white);
  background: var(--text-color-one);
  border-radius: 23px;
  font-family: var(--font_Lato);
  font-weight: 400;
  font-style: Regular;
  font-size: 14px;
  line-height: 22px;
  letter-spacing: 0px;
}
.shop-card__thumb-offer.style {
  color: var(--text-color-one);
  background: var(--yellow);
}
.shop-card__thumb-btn-wrapper {
  opacity: 0;
  visibility: hidden;
  position: absolute;
  bottom: -20px;
  left: 50%;
  z-index: 2;
  display: flex;
  align-items: center;
  width: 100%;
  transform: translateX(-50%);
  transition: all 0.3s linear;
  -webkit-transform: translateX(-50%);
  -moz-transform: translateX(-50%);
  -ms-transform: translateX(-50%);
  -o-transform: translateX(-50%);
  -webkit-transition: all 0.3s linear;
  -moz-transition: all 0.3s linear;
  -ms-transition: all 0.3s linear;
  -o-transition: all 0.3s linear;
}
.shop-card__thumb-btn-wrapper .rr-btn-button4 {
  padding: 8px 17px;
  width: 100%;
  font-size: 16px;
  font-style: normal;
  font-weight: 500;
  line-height: 24px;
  transition: all 0.3s linear;
}
.shop-card__content {
  padding: 16px;
  background: var(--primary);
  flex: 1;
  display: flex;
  flex-direction: column;
}
.shop-card__content-title {
  color: var(--text-color-one);
  font-family: var(--font_Playfair);
  font-weight: 500;
  font-style: Medium;
  font-size: 18px;
  line-height: 24px;
  letter-spacing: 0px;
  text-transform: capitalize;
  margin-bottom: 8px;
  min-height: 48px;
}
.shop-card__content-title a {
  color: inherit;
  text-decoration: none;
  transition: all 0.3s ease;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}
.shop-card__content-title a:hover {
  color: var(--primary-two);
}
.shop-card__content-list {
  display: flex;
  gap: 7px;
  align-items: center;
  list-style: none;
  margin-bottom: 8px;
}
.shop-card__content-list-start i {
  color: var(--yellow);
}
.shop-card__content-list-point {
  color: var(--text-color-one);
  font-family: var(--font_Lato);
  font-weight: 400;
  font-style: Regular;
  font-size: 14px;
  line-height: 22px;
  letter-spacing: 0px;
}
.shop-card__content-list-text {
  color: var(--text-color6);
  font-family: var(--font_Lato);
  font-weight: 400;
  font-style: Regular;
  font-size: 14px;
  line-height: 22px;
  letter-spacing: 0px;
}
.shop-card__content-dollar {
  color: var(--text-color-one);
  font-family: var(--font_Playfair);
  font-weight: 700;
  font-style: Bold;
  font-size: 20px;
  line-height: 28px;
  letter-spacing: 0px;
  text-transform: capitalize;
  margin-top: auto;
}
.shop-card:hover .shop-card__thumb-btn-wrapper {
  opacity: 1;
  visibility: visible;
  bottom: 10px;
  transition: all 0.4s ease-in-out;
}
.shop-card:hover {
  transform: translateY(-6px);
  border-color: rgba(255, 75, 141, 0.3);
  box-shadow: 0 16px 36px rgba(255, 75, 141, 0.14), 0 10px 24px rgba(17, 24, 39, 0.08);
}
@media only screen and (max-width: 991px) {
  .shop-card__thumb {
    height: 260px;
  }
}

/* === Shop Sidebar Filter === */
.shop-sidebar {
  transition: all 0.3s ease;
}
@media (max-width: 1199px) {
  .shop-sidebar {
    position: fixed;
    top: 0;
    left: -100%;
    width: 320px;
    height: 100vh;
    background: #FFFFFF;
    z-index: 9999;
    padding: 24px;
    overflow-y: auto;
    transition: left 0.3s ease;
    box-shadow: 2px 0 10px rgba(0, 0, 0, 0.1);
  }
  .shop-sidebar.active {
    left: 0;
  }
}
@media (min-width: 1200px) {
  .shop-sidebar.active {
    transform: translateX(0);
  }
}
@media only screen and (max-width: 991px) {
  .shop-sidebar {
    width: 300px;
    padding: 20px;
  }
}
@media (max-width: 575px) {
  .shop-sidebar {
    width: 100%;
    padding: 18px;
  }
}
.shop-sidebar__overlay {
  display: none;
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.5);
  z-index: 9998;
  transition: opacity 0.3s ease;
}
.shop-sidebar__close-btn {
  display: none;
  position: absolute;
  top: 20px;
  right: 20px;
  width: 36px;
  height: 36px;
  background: #0C0C0C;
  color: #FFFFFF;
  border: none;
  border-radius: 50%;
  cursor: pointer;
  align-items: center;
  justify-content: center;
  z-index: 10000;
  transition: all 0.3s ease;
}
@media (max-width: 1199px) {
  .shop-sidebar__close-btn {
    display: flex;
  }
}
.shop-sidebar__close-btn i {
  font-size: 18px;
}
.shop-sidebar__close-btn:hover {
  background: #EE2D7A;
  transform: rotate(90deg);
}
.shop-sidebar__widget {
  background: #FFEFF2;
  border-radius: 8px;
  padding: 24px;
  margin-bottom: 24px;
}
@media only screen and (max-width: 1199px) {
  .shop-sidebar__widget {
    padding: 20px;
    margin-bottom: 20px;
  }
}
@media (max-width: 575px) {
  .shop-sidebar__widget {
    padding: 18px;
    margin-bottom: 18px;
  }
}
.shop-sidebar__widget:last-child {
  margin-bottom: 0;
}
.shop-sidebar__widget-header {
  margin-bottom: 20px;
  position: relative;
  padding-left: 12px;
}
@media (max-width: 575px) {
  .shop-sidebar__widget-header {
    margin-bottom: 16px;
  }
}
.shop-sidebar__widget-title {
  color: #0C0C0C;
  font-family: var(--font_Playfair);
  font-weight: 500;
  font-style: Medium;
  font-size: 20px;
  line-height: 26px;
  letter-spacing: 0px;
  text-transform: capitalize;
  margin: 0;
  position: relative;
}
@media (max-width: 575px) {
  .shop-sidebar__widget-title {
    font-size: 18px;
  }
}
.shop-sidebar__widget-title::before {
  content: "";
  position: absolute;
  left: -12px;
  top: 0;
  width: 2px;
  height: 26px;
  background-color: #EE2D7A;
  border-radius: 2px;
}
.shop-sidebar__search-form {
  position: relative;
  width: 100%;
}
.shop-sidebar__search-input {
  width: 100%;
  padding: 15px 50px 15px 20px;
  border-radius: 8px;
  border: 1px solid #FFFFFF;
  background: #FFFFFF;
  color: #0C0C0C;
  font-family: Lato;
  font-weight: 400;
  font-style: Regular;
  font-size: 16px;
  line-height: 26px;
  letter-spacing: 0px;
  outline: none;
  transition: all 0.3s ease;
}
@media (max-width: 575px) {
  .shop-sidebar__search-input {
    padding: 12px 45px 12px 16px;
    font-size: 14px;
  }
}
.shop-sidebar__search-input::placeholder {
  color: #5B5B5B;
  font-size: 16px;
}
@media (max-width: 575px) {
  .shop-sidebar__search-input::placeholder {
    font-size: 14px;
  }
}
.shop-sidebar__search-input:focus {
  border-color: #EE2D7A;
  box-shadow: 0 0 0 2px rgba(238, 45, 122, 0.1);
}
.shop-sidebar__search-btn {
  position: absolute;
  right: 12px;
  top: 50%;
  transform: translateY(-50%);
  background: #EE2D7A;
  color: #FFFFFF;
  border: none;
  border-radius: 8px;
  width: 36px;
  height: 36px;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: all 0.3s ease;
}
@media (max-width: 575px) {
  .shop-sidebar__search-btn {
    width: 32px;
    height: 32px;
    right: 10px;
  }
}
.shop-sidebar__search-btn i {
  font-size: 16px;
}
@media (max-width: 575px) {
  .shop-sidebar__search-btn i {
    font-size: 14px;
  }
}
.shop-sidebar__search-btn:hover {
  background: #0C0C0C;
  transform: translateY(-50%) scale(1.1);
}
.shop-sidebar__search-btn:active {
  transform: translateY(-50%) scale(0.95);
}
.shop-sidebar__price-info {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 16px;
}
@media (max-width: 575px) {
  .shop-sidebar__price-info {
    flex-direction: column;
    align-items: flex-start;
    gap: 8px;
    margin-bottom: 12px;
  }
}
.shop-sidebar__price-info-text {
  color: #5B5B5B;
  font-family: Lato;
  font-weight: 400;
  font-style: Regular;
  font-size: 14px;
  line-height: 22px;
  letter-spacing: 0px;
  margin: 0;
}
@media (max-width: 575px) {
  .shop-sidebar__price-info-text {
    font-size: 13px;
  }
}
.shop-sidebar__price-info-text span {
  color: #0C0C0C;
  font-weight: 500;
}
.shop-sidebar__price-reset {
  color: #EE2D7A;
  font-family: Lato;
  font-weight: 400;
  font-style: Regular;
  font-size: 14px;
  line-height: 22px;
  letter-spacing: 0px;
  text-decoration: none;
  transition: all 0.3s ease;
}
@media (max-width: 575px) {
  .shop-sidebar__price-reset {
    font-size: 13px;
  }
}
.shop-sidebar__price-reset:hover {
  color: #0C0C0C;
  text-decoration: underline;
}
.shop-sidebar__price-slider {
  margin-bottom: 16px;
}
@media (max-width: 575px) {
  .shop-sidebar__price-slider {
    margin-bottom: 12px;
  }
}
.shop-sidebar__price-range {
  width: 100%;
  height: 8px;
  border-radius: 5px;
  outline: none;
  -webkit-appearance: none;
  appearance: none;
  background: linear-gradient(to right, #EE2D7A 0%, #EE2D7A 14%, #FFFFFF 14%, #FFFFFF 100%);
  border: 1px solid #EE2D7A;
}
.shop-sidebar__price-range::-webkit-slider-thumb {
  -webkit-appearance: none;
  appearance: none;
  width: 18px;
  height: 18px;
  background: #FFFFFF;
  border: 2px solid #EE2D7A;
  border-radius: 50%;
  cursor: pointer;
  transition: all 0.3s ease;
}
.shop-sidebar__price-range::-moz-range-thumb {
  width: 18px;
  height: 18px;
  background: #FFFFFF;
  border: 2px solid #EE2D7A;
  border-radius: 50%;
  cursor: pointer;
  transition: all 0.3s ease;
}
.shop-sidebar__price-range:hover::-webkit-slider-thumb {
  transform: scale(1.2);
}
.shop-sidebar__price-range:hover::-moz-range-thumb {
  transform: scale(1.2);
}
.shop-sidebar__price-inputs {
  display: flex;
  align-items: center;
  gap: 12px;
}
@media (max-width: 575px) {
  .shop-sidebar__price-inputs {
    gap: 8px;
  }
}
.shop-sidebar__price-input-group {
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 6px;
}
.shop-sidebar__price-input-label {
  color: #5B5B5B;
  font-family: Lato;
  font-weight: 400;
  font-style: Regular;
  font-size: 14px;
  line-height: 20px;
  letter-spacing: 0px;
}
@media (max-width: 575px) {
  .shop-sidebar__price-input-label {
    font-size: 12px;
  }
}
.shop-sidebar__price-input {
  width: 100%;
  padding: 10px 12px;
  border-radius: 8px;
  border: 1px solid #FFFFFF;
  background: #FFFFFF;
  color: #0C0C0C;
  font-family: Lato;
  font-weight: 400;
  font-style: Regular;
  font-size: 14px;
  line-height: 20px;
  letter-spacing: 0px;
  outline: none;
  transition: all 0.3s ease;
}
@media (max-width: 575px) {
  .shop-sidebar__price-input {
    padding: 8px 10px;
    font-size: 13px;
  }
}
.shop-sidebar__price-input:focus {
  border-color: #EE2D7A;
  box-shadow: 0 0 0 2px rgba(238, 45, 122, 0.1);
}
.shop-sidebar__price-input-separator {
  color: #5B5B5B;
  font-family: Lato;
  font-weight: 400;
  font-size: 16px;
  margin-top: 20px;
}
@media (max-width: 575px) {
  .shop-sidebar__price-input-separator {
    font-size: 14px;
    margin-top: 18px;
  }
}
.shop-sidebar__categories-list {
  list-style: none;
  padding: 0;
  margin: 0;
}
.shop-sidebar__categories-item {
  margin-bottom: 12px;
}
@media (max-width: 575px) {
  .shop-sidebar__categories-item {
    margin-bottom: 10px;
  }
}
.shop-sidebar__categories-item:last-child {
  margin-bottom: 0;
}
.shop-sidebar__categories-link {
  display: flex;
  align-items: center;
  color: #5B5B5B;
  font-family: Lato;
  font-weight: 400;
  font-style: Regular;
  font-size: 16px;
  line-height: 26px;
  letter-spacing: 0px;
  text-transform: capitalize;
  text-decoration: none;
  transition: all 0.3s ease;
}
@media (max-width: 575px) {
  .shop-sidebar__categories-link {
    font-size: 14px;
    line-height: 22px;
  }
}
.shop-sidebar__categories-link i {
  margin-right: 12px;
  font-size: 12px;
  transition: all 0.3s ease;
}
.shop-sidebar__categories-link:hover, .shop-sidebar__categories-link.active {
  color: #EE2D7A;
}
.shop-sidebar__categories-link:hover i, .shop-sidebar__categories-link.active i {
  transform: translateX(4px);
}
.shop-sidebar__colors-list {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  list-style: none;
  padding: 0;
  margin: 0;
}
@media (max-width: 575px) {
  .shop-sidebar__colors-list {
    gap: 10px;
  }
}
.shop-sidebar__colors-item {
  list-style: none;
}
.shop-sidebar__color-dot {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  border: 2px solid transparent;
  padding: 0;
  cursor: pointer;
  position: relative;
  box-sizing: border-box;
  transition: all 0.3s ease;
  outline: none;
}
@media (max-width: 575px) {
  .shop-sidebar__color-dot {
    width: 32px;
    height: 32px;
  }
}
.shop-sidebar__color-dot--active {
  border-color: #FFFFFF;
  box-shadow: 0 0 0 2px #EE2D7A;
}
.shop-sidebar__color-dot:hover:not(.shop-sidebar__color-dot--active) {
  border-color: #EE2D7A;
  transform: scale(1.1);
}
.shop-sidebar__color-dot:active {
  transform: scale(0.95);
}
.shop-sidebar__status-list {
  list-style: none;
  padding: 0;
  margin: 0;
}
.shop-sidebar__status-item {
  margin-bottom: 12px;
}
@media (max-width: 575px) {
  .shop-sidebar__status-item {
    margin-bottom: 10px;
  }
}
.shop-sidebar__status-item:last-child {
  margin-bottom: 0;
}
.shop-sidebar__status-link {
  display: flex;
  align-items: center;
  color: #5B5B5B;
  font-family: Lato;
  font-weight: 400;
  font-style: Regular;
  font-size: 16px;
  line-height: 26px;
  letter-spacing: 0px;
  text-transform: capitalize;
  text-decoration: none;
  transition: all 0.3s ease;
}
@media (max-width: 575px) {
  .shop-sidebar__status-link {
    font-size: 14px;
    line-height: 22px;
  }
}
.shop-sidebar__status-link i {
  margin-right: 12px;
  font-size: 12px;
  transition: all 0.3s ease;
}
.shop-sidebar__status-link:hover, .shop-sidebar__status-link.active {
  color: #EE2D7A;
}
.shop-sidebar__status-link:hover i, .shop-sidebar__status-link.active i {
  transform: translateX(4px);
}
.shop-sidebar__tags-list {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-top: 12px;
}
@media (max-width: 575px) {
  .shop-sidebar__tags-list {
    gap: 6px;
    margin-top: 10px;
  }
}
.shop-sidebar__tags-tag {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 10px 16px;
  border-radius: 8px;
  border: 0.5px solid #E6E6E6;
  background: #FFFFFF;
  color: #0C0C0C;
  font-family: var(--font_Playfair);
  font-weight: 500;
  font-style: Medium;
  font-size: 16px;
  line-height: 22px;
  letter-spacing: 0px;
  text-decoration: none;
  transition: all 0.3s ease;
  white-space: nowrap;
}
@media (max-width: 575px) {
  .shop-sidebar__tags-tag {
    padding: 8px 12px;
    font-size: 14px;
  }
}
.shop-sidebar__tags-tag:hover, .shop-sidebar__tags-tag.active {
  background: #EE2D7A;
  color: #FFFFFF;
  border-color: #EE2D7A;
  transform: translateY(-2px);
  box-shadow: 0 4px 8px rgba(238, 45, 122, 0.2);
}
.shop-sidebar__tags-tag:active {
  transform: translateY(0);
}
.shop-sidebar__brand-list {
  list-style: none;
  padding: 0;
  margin: 0;
}
.shop-sidebar__brand-item {
  margin-bottom: 12px;
}
@media (max-width: 575px) {
  .shop-sidebar__brand-item {
    margin-bottom: 10px;
  }
}
.shop-sidebar__brand-item:last-child {
  margin-bottom: 0;
}
.shop-sidebar__brand-link {
  display: flex;
  align-items: center;
  color: #5B5B5B;
  font-family: Lato;
  font-weight: 400;
  font-style: Regular;
  font-size: 16px;
  line-height: 26px;
  letter-spacing: 0px;
  text-transform: capitalize;
  text-decoration: none;
  transition: all 0.3s ease;
}
@media (max-width: 575px) {
  .shop-sidebar__brand-link {
    font-size: 14px;
    line-height: 22px;
  }
}
.shop-sidebar__brand-link i {
  margin-right: 12px;
  font-size: 12px;
  transition: all 0.3s ease;
}
.shop-sidebar__brand-link:hover, .shop-sidebar__brand-link.active {
  color: #EE2D7A;
}
.shop-sidebar__brand-link:hover i, .shop-sidebar__brand-link.active i {
  transform: translateX(4px);
}

/* === Wishlist Page Section === */
.wishlist-page {
  margin-left: auto;
  margin-right: auto;
  max-width: 100%;
}
@media only screen and (max-width: 1399px) {
  .wishlist-page {
    padding-top: 80px !important;
    padding-bottom: 80px !important;
  }
}
@media only screen and (max-width: 1199px) {
  .wishlist-page {
    padding-top: 70px !important;
    padding-bottom: 70px !important;
  }
}
@media only screen and (max-width: 991px) {
  .wishlist-page {
    padding-top: 65px !important;
    padding-bottom: 65px !important;
  }
}
@media only screen and (max-width: 767px) {
  .wishlist-page {
    padding-top: 55px !important;
    padding-bottom: 55px !important;
  }
}
@media (max-width: 575px) {
  .wishlist-page {
    padding-top: 40px !important;
    padding-bottom: 40px !important;
  }
}
.wishlist-page__items {
  margin-bottom: 40px;
  margin-left: auto;
  margin-right: auto;
}
@media only screen and (max-width: 1399px) {
  .wishlist-page__items {
    margin-bottom: 32px;
  }
}
@media only screen and (max-width: 1199px) {
  .wishlist-page__items {
    margin-bottom: 28px;
  }
}
@media only screen and (max-width: 991px) {
  .wishlist-page__items {
    margin-bottom: 24px;
  }
}
@media only screen and (max-width: 767px) {
  .wishlist-page__items {
    margin-bottom: 20px;
  }
}
@media (max-width: 575px) {
  .wishlist-page__items {
    margin-bottom: 18px;
  }
}
.wishlist-page__items-title {
  color: #0C0C0C;
  font-family: var(--font_Playfair);
  font-weight: 700;
  font-style: Bold;
  font-size: 24px;
  line-height: 30px;
  letter-spacing: 0px;
  text-transform: capitalize;
  margin-bottom: 30px;
}
@media only screen and (max-width: 1199px) {
  .wishlist-page__items-title {
    font-size: 22px;
    margin-bottom: 24px;
  }
}
@media (max-width: 575px) {
  .wishlist-page__items-title {
    font-size: 20px;
    margin-bottom: 24px;
  }
}
.wishlist-page__table {
  background: #FCE8E9;
  border-radius: 12px;
  padding: 24px;
  margin-bottom: 24px;
  margin-left: auto;
  margin-right: auto;
  overflow-x: auto;
  -webkit-overflow-scrolling: touch;
}
@media only screen and (max-width: 1399px) {
  .wishlist-page__table {
    padding: 22px;
    margin-bottom: 22px;
  }
}
@media only screen and (max-width: 1199px) {
  .wishlist-page__table {
    padding: 18px;
    margin-bottom: 20px;
  }
}
@media only screen and (max-width: 991px) {
  .wishlist-page__table {
    overflow-x: auto;
    padding: 16px;
    margin-bottom: 18px;
  }
}
@media only screen and (max-width: 767px) {
  .wishlist-page__table {
    padding: 14px;
    margin-bottom: 16px;
  }
}
@media (max-width: 575px) {
  .wishlist-page__table {
    padding: 12px;
    margin-bottom: 14px;
    border-radius: 10px;
  }
}
.wishlist-page__table-header {
  padding-bottom: 16px;
  margin-bottom: 16px;
  border-bottom: 1px solid rgba(0, 0, 0, 0.08);
  text-align: center;
}
@media only screen and (max-width: 1399px) {
  .wishlist-page__table-header {
    padding-bottom: 14px;
    margin-bottom: 14px;
  }
}
@media only screen and (max-width: 1199px) {
  .wishlist-page__table-header {
    padding-bottom: 12px;
    margin-bottom: 12px;
  }
}
@media only screen and (max-width: 991px) {
  .wishlist-page__table-header {
    padding-bottom: 10px;
    margin-bottom: 10px;
  }
}
@media only screen and (max-width: 767px) {
  .wishlist-page__table-header {
    padding-bottom: 10px;
    margin-bottom: 10px;
  }
}
@media (min-width: 768px) and (max-width: 991px) {
  .wishlist-page__table-header {
    min-width: 800px;
  }
}
@media only screen and (max-width: 767px) {
  .wishlist-page__table-header {
    display: none;
  }
}
@media (max-width: 575px) {
  .wishlist-page__table-header {
    padding-bottom: 12px;
    margin-bottom: 12px;
  }
}
.wishlist-page__table-header-text {
  font-family: var(--font_Playfair);
  font-weight: 500;
  font-size: 22px;
  line-height: 28px;
  letter-spacing: 0px;
  color: #0C0C0C;
}
@media only screen and (max-width: 1399px) {
  .wishlist-page__table-header-text {
    font-size: 17px;
    line-height: 22px;
  }
}
@media only screen and (max-width: 1199px) {
  .wishlist-page__table-header-text {
    font-size: 16px;
    line-height: 22px;
  }
}
@media only screen and (max-width: 991px) {
  .wishlist-page__table-header-text {
    font-size: 14px;
    line-height: 20px;
  }
}
@media (max-width: 575px) {
  .wishlist-page__table-header-text {
    font-size: 14px;
  }
}
.wishlist-page__table-body {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 20px;
}
@media only screen and (max-width: 1399px) {
  .wishlist-page__table-body {
    gap: 18px;
  }
}
@media only screen and (max-width: 1199px) {
  .wishlist-page__table-body {
    gap: 16px;
  }
}
@media only screen and (max-width: 991px) {
  .wishlist-page__table-body {
    gap: 14px;
  }
}
@media only screen and (max-width: 767px) {
  .wishlist-page__table-body {
    gap: 12px;
  }
}
@media (max-width: 575px) {
  .wishlist-page__table-body {
    gap: 10px;
  }
}
.wishlist-page__item {
  padding: 20px 0;
  border-bottom: 1px solid rgba(0, 0, 0, 0.06);
  width: 100%;
  max-width: 100%;
}
@media only screen and (max-width: 1399px) {
  .wishlist-page__item {
    padding: 18px 0;
  }
}
@media only screen and (max-width: 1199px) {
  .wishlist-page__item {
    padding: 14px 0;
  }
}
@media only screen and (max-width: 991px) {
  .wishlist-page__item {
    padding: 12px 0;
  }
}
@media (min-width: 768px) and (max-width: 991px) {
  .wishlist-page__item {
    min-width: 800px;
  }
}
@media only screen and (max-width: 767px) {
  .wishlist-page__item {
    padding: 12px 0;
  }
  .wishlist-page__item .row {
    flex-direction: column;
    align-items: center;
    gap: 14px;
  }
  .wishlist-page__item .col-md-4,
  .wishlist-page__item .col-md-2,
  .wishlist-page__item .col-md-1 {
    max-width: 100%;
    flex: 0 0 100%;
    text-align: center;
  }
  .wishlist-page__item .text-center {
    text-align: center;
  }
}
@media (max-width: 575px) {
  .wishlist-page__item {
    padding: 10px 0;
  }
  .wishlist-page__item .row {
    gap: 10px;
  }
}
.wishlist-page__item:last-child {
  border-bottom: none;
}
.wishlist-page__item-product {
  display: flex;
  align-items: center;
  gap: 20px;
  background: #FCE8E9;
  border-radius: 12px;
  padding: 16px 20px;
}
@media only screen and (max-width: 1399px) {
  .wishlist-page__item-product {
    gap: 18px;
    padding: 15px 18px;
    flex-direction: column;
  }
}
@media only screen and (max-width: 1199px) {
  .wishlist-page__item-product {
    gap: 14px;
    padding: 12px 16px;
    border-radius: 10px;
  }
}
@media only screen and (max-width: 991px) {
  .wishlist-page__item-product {
    flex-direction: column;
    gap: 12px;
    padding: 11px 14px;
    border-radius: 10px;
  }
}
@media only screen and (max-width: 767px) {
  .wishlist-page__item-product {
    justify-content: center;
    margin-left: auto;
    margin-right: auto;
    width: fit-content;
    max-width: 100%;
  }
}
@media (max-width: 575px) {
  .wishlist-page__item-product {
    gap: 12px;
    padding: 12px 16px;
  }
}
.wishlist-page__item-product-image {
  width: 112px;
  height: 112px;
  border-radius: 10px;
  overflow: hidden;
  flex-shrink: 0;
  background: #FCE8E9;
  padding: 6px;
  display: flex;
  align-items: center;
  justify-content: center;
}
@media only screen and (max-width: 1199px) {
  .wishlist-page__item-product-image {
    width: 88px;
    height: 88px;
    border-radius: 8px;
  }
}
@media only screen and (max-width: 991px) {
  .wishlist-page__item-product-image {
    width: 80px;
    height: 80px;
    padding: 5px;
    border-radius: 8px;
  }
}
@media only screen and (max-width: 767px) {
  .wishlist-page__item-product-image {
    width: 80px;
    height: 80px;
  }
}
@media (max-width: 575px) {
  .wishlist-page__item-product-image {
    width: 64px;
    height: 64px;
    padding: 4px;
    border-radius: 8px;
  }
}
.wishlist-page__item-product-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 6px;
}
.wishlist-page__item-product-info {
  flex: 1;
  min-width: 0;
}
.wishlist-page__item-product-title {
  margin: 0 0 8px 0;
  color: #0C0C0C;
  font-family: var(--font_Playfair);
  font-weight: 600;
  font-style: Medium;
  font-size: 20px;
  line-height: 26px;
  letter-spacing: 0px;
}
@media only screen and (max-width: 1399px) {
  .wishlist-page__item-product-title {
    font-size: 18px;
    line-height: 24px;
    margin-bottom: 6px;
  }
}
@media only screen and (max-width: 1199px) {
  .wishlist-page__item-product-title {
    font-size: 17px;
    line-height: 22px;
    margin-bottom: 6px;
  }
}
@media only screen and (max-width: 991px) {
  .wishlist-page__item-product-title {
    font-size: 16px;
    line-height: 21px;
    margin-bottom: 6px;
  }
}
@media (max-width: 575px) {
  .wishlist-page__item-product-title {
    font-size: 17px;
    line-height: 22px;
  }
}
.wishlist-page__item-product-title a {
  color: inherit;
  text-decoration: none;
  transition: all 0.3s ease;
}
.wishlist-page__item-product-title a:hover {
  color: #EE2D7A;
}
.wishlist-page__item-product-rating {
  display: flex;
  align-items: center;
  gap: 8px;
  margin: 0 0 6px 0;
  font-family: Lato, sans-serif;
  font-weight: 400;
  font-size: 14px;
  line-height: 20px;
  color: #0C0C0C;
}
@media only screen and (max-width: 1399px) {
  .wishlist-page__item-product-rating {
    font-size: 13px;
    line-height: 18px;
    gap: 6px;
  }
}
@media only screen and (max-width: 1199px) {
  .wishlist-page__item-product-rating {
    font-size: 13px;
    line-height: 18px;
    gap: 6px;
  }
}
@media only screen and (max-width: 991px) {
  .wishlist-page__item-product-rating {
    font-size: 12px;
    line-height: 17px;
    gap: 6px;
  }
}
@media (max-width: 575px) {
  .wishlist-page__item-product-rating {
    font-size: 12px;
    gap: 6px;
  }
}
.wishlist-page__item-product-star {
  color: #E5B318;
  font-size: 16px;
}
@media only screen and (max-width: 1399px) {
  .wishlist-page__item-product-star {
    font-size: 14px;
  }
}
@media only screen and (max-width: 1199px) {
  .wishlist-page__item-product-star {
    font-size: 14px;
  }
}
@media only screen and (max-width: 991px) {
  .wishlist-page__item-product-star {
    font-size: 13px;
  }
}
@media (max-width: 575px) {
  .wishlist-page__item-product-star {
    font-size: 14px;
  }
}
.wishlist-page__item-product-attribute {
  margin: 0;
  color: #5B5B5B;
  font-family: Lato;
  font-weight: 400;
  font-style: Regular;
  font-size: 13px;
  line-height: 18px;
  letter-spacing: 0px;
}
@media only screen and (max-width: 1199px) {
  .wishlist-page__item-product-attribute {
    font-size: 12px;
    line-height: 16px;
  }
}
@media only screen and (max-width: 991px) {
  .wishlist-page__item-product-attribute {
    font-size: 12px;
    line-height: 16px;
  }
}
@media (max-width: 575px) {
  .wishlist-page__item-product-attribute {
    font-size: 12px;
  }
}
.wishlist-page__item-price {
  color: #0C0C0C;
  font-family: var(--font_Playfair);
  font-weight: 500;
  font-style: Medium;
  font-size: 16px;
  line-height: 24px;
  letter-spacing: 0px;
}
@media only screen and (max-width: 767px) {
  .wishlist-page__item-price::before {
    content: "Price: ";
    font-weight: 600;
    margin-right: 6px;
  }
}
@media only screen and (max-width: 1399px) {
  .wishlist-page__item-price {
    font-size: 14px;
    line-height: 20px;
  }
}
@media only screen and (max-width: 1199px) {
  .wishlist-page__item-price {
    font-size: 14px;
    line-height: 20px;
  }
}
@media only screen and (max-width: 991px) {
  .wishlist-page__item-price {
    font-size: 13px;
    line-height: 19px;
  }
}
@media (max-width: 575px) {
  .wishlist-page__item-price {
    font-size: 14px;
  }
}
.wishlist-page__item-qty {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  background: #FFFFFF;
  border-radius: 8px;
  padding: 8px 12px;
}
@media only screen and (max-width: 1199px) {
  .wishlist-page__item-qty {
    gap: 10px;
    padding: 6px 10px;
    border-radius: 6px;
  }
}
@media only screen and (max-width: 991px) {
  .wishlist-page__item-qty {
    gap: 8px;
    padding: 6px 8px;
    border-radius: 6px;
  }
}
@media only screen and (max-width: 767px) {
  .wishlist-page__item-qty {
    flex-wrap: wrap;
  }
  .wishlist-page__item-qty::before {
    content: "Quantity: ";
    display: block;
    width: 100%;
    font-family: var(--font_Playfair);
    font-weight: 600;
    font-size: 14px;
    color: #0C0C0C;
    margin-bottom: 8px;
  }
}
@media (max-width: 575px) {
  .wishlist-page__item-qty {
    gap: 8px;
    padding: 6px 10px;
  }
}
.wishlist-page__item-total {
  color: #EE2D7A;
  font-family: var(--font_Playfair);
  font-weight: 500;
  font-style: Medium;
  font-size: 16px;
  line-height: 24px;
  letter-spacing: 0px;
}
@media only screen and (max-width: 767px) {
  .wishlist-page__item-total::before {
    content: "Total: ";
    font-weight: 600;
    margin-right: 6px;
    color: #0C0C0C;
  }
}
@media only screen and (max-width: 1399px) {
  .wishlist-page__item-total {
    font-size: 14px;
    line-height: 20px;
  }
}
@media only screen and (max-width: 1199px) {
  .wishlist-page__item-total {
    font-size: 14px;
    line-height: 20px;
  }
}
@media only screen and (max-width: 991px) {
  .wishlist-page__item-total {
    font-size: 13px;
    line-height: 19px;
  }
}
@media (max-width: 575px) {
  .wishlist-page__item-total {
    font-size: 14px;
  }
}
@media only screen and (max-width: 1399px) {
  .wishlist-page__item .row {
    flex-wrap: nowrap;
  }
  .wishlist-page__item .row > .col-md-4 {
    min-width: 0;
    flex: 1 1 0;
  }
  .wishlist-page__item .row > .col-md-1:nth-last-child(2) {
    flex: 0 0 auto;
    min-width: 110px;
    max-width: none;
    display: flex;
    align-items: center;
    justify-content: flex-end;
    padding-right: 10px;
  }
  .wishlist-page__item .row > .col-md-1:nth-last-child(1) {
    flex: 0 0 auto;
    min-width: 36px;
    max-width: none;
    display: flex;
    align-items: center;
    justify-content: center;
    padding-left: 0;
  }
}
@media only screen and (max-width: 1199px) {
  .wishlist-page__item .row > .col-md-1:nth-last-child(2) {
    min-width: 100px;
    padding-right: 8px;
  }
  .wishlist-page__item .row > .col-md-1:nth-last-child(1) {
    min-width: 34px;
  }
}
@media only screen and (max-width: 991px) {
  .wishlist-page__item .row > .col-md-1:nth-last-child(2) {
    min-width: 95px;
    padding-right: 14px;
  }
  .wishlist-page__item .row > .col-md-1:nth-last-child(1) {
    min-width: 32px;
    padding-left: 6px;
  }
}
@media only screen and (max-width: 767px) {
  .wishlist-page__item .row > [class*=col-]:nth-last-child(-n+2) {
    display: flex;
    flex-wrap: nowrap;
    align-items: center;
    justify-content: center;
    gap: 12px;
  }
  .wishlist-page__item .row > [class*=col-]:nth-last-child(-n+2) .wishlist-page__add-to-cart {
    flex: 1;
    min-width: 120px;
  }
  .wishlist-page__item .row > [class*=col-]:nth-last-child(-n+2) .wishlist-page__remove {
    flex-shrink: 0;
  }
}
@media (max-width: 575px) {
  .wishlist-page__item .row > [class*=col-]:nth-last-child(-n+2) {
    gap: 10px;
  }
  .wishlist-page__item .row > [class*=col-]:nth-last-child(-n+2) .wishlist-page__add-to-cart {
    min-width: 100px;
  }
}
.wishlist-page__qty-btn {
  width: 28px;
  height: 28px;
  border: 0;
  background: #FFDEE5;
  font-size: 18px;
  line-height: 1;
  cursor: pointer;
  color: #EE2D7A;
  transition: all 0.3s ease;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 4px;
}
@media only screen and (max-width: 1199px) {
  .wishlist-page__qty-btn {
    width: 26px;
    height: 26px;
    font-size: 16px;
  }
}
@media only screen and (max-width: 991px) {
  .wishlist-page__qty-btn {
    width: 24px;
    height: 24px;
    font-size: 15px;
  }
}
@media (max-width: 575px) {
  .wishlist-page__qty-btn {
    width: 24px;
    height: 24px;
    font-size: 16px;
  }
}
.wishlist-page__qty-btn:hover:not(:disabled) {
  background: #EE2D7A;
  color: #FFFFFF;
  transform: scale(1.1);
}
.wishlist-page__qty-btn:active:not(:disabled) {
  transform: scale(0.95);
}
.wishlist-page__qty-btn:disabled {
  opacity: 0.4;
  cursor: not-allowed;
}
.wishlist-page__qty-input {
  width: 50px;
  text-align: center;
  border: none;
  background: transparent;
  color: #0C0C0C;
  font-family: var(--font_Playfair);
  font-weight: 500;
  font-style: Medium;
  font-size: 16px;
  line-height: 24px;
  letter-spacing: 0px;
  outline: none;
  appearance: textfield;
  -moz-appearance: textfield;
}
@media only screen and (max-width: 1399px) {
  .wishlist-page__qty-input {
    width: 44px;
    font-size: 14px;
  }
}
@media only screen and (max-width: 1199px) {
  .wishlist-page__qty-input {
    width: 44px;
    font-size: 14px;
  }
}
@media only screen and (max-width: 991px) {
  .wishlist-page__qty-input {
    width: 40px;
    font-size: 13px;
  }
}
@media (max-width: 575px) {
  .wishlist-page__qty-input {
    width: 40px;
    font-size: 14px;
  }
}
.wishlist-page__qty-input::-webkit-outer-spin-button, .wishlist-page__qty-input::-webkit-inner-spin-button {
  appearance: none;
  -webkit-appearance: none;
  margin: 0;
}
.wishlist-page__add-to-cart {
  background: transparent;
  color: #0C0C0C;
  border: 2px solid #0C0C0C;
  border-radius: 50px;
  padding: 12px 24px;
  font-family: var(--font_Playfair);
  font-weight: 500;
  font-style: Medium;
  font-size: 14px;
  line-height: 20px;
  letter-spacing: 0px;
  text-transform: capitalize;
  cursor: pointer;
  transition: all 0.3s ease;
  white-space: nowrap;
  max-width: 100%;
}
@media only screen and (max-width: 1399px) {
  .wishlist-page__add-to-cart {
    padding: 9px 16px;
    font-size: 12px;
    line-height: 17px;
    border-width: 1.5px;
  }
}
@media only screen and (max-width: 1199px) {
  .wishlist-page__add-to-cart {
    padding: 9px 14px;
    font-size: 12px;
    line-height: 17px;
    border-width: 1.5px;
  }
}
@media only screen and (max-width: 991px) {
  .wishlist-page__add-to-cart {
    padding: 8px 10px;
    font-size: 11px;
    line-height: 16px;
    border-width: 1.5px;
  }
}
@media (max-width: 575px) {
  .wishlist-page__add-to-cart {
    padding: 10px 20px;
    font-size: 12px;
    width: 100%;
  }
}
.wishlist-page__add-to-cart:hover {
  background: #F5F5F5;
  border-color: #0C0C0C;
  color: #0C0C0C;
}
.wishlist-page__add-to-cart:active {
  background: #EEEEEE;
}
.wishlist-page__remove {
  width: 36px;
  height: 36px;
  border: none;
  background: #FFDEE5;
  color: #EE2D7A;
  border-radius: 8px;
  cursor: pointer;
  transition: all 0.3s ease;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 16px;
  flex-shrink: 0;
}
.wishlist-page__remove svg {
  width: 100%;
  height: 100%;
  max-width: 24px;
  max-height: 24px;
  object-fit: contain;
}
@media only screen and (max-width: 1399px) {
  .wishlist-page__remove {
    width: 32px;
    height: 32px;
    font-size: 14px;
    border-radius: 6px;
  }
  .wishlist-page__remove svg {
    max-width: 20px;
    max-height: 20px;
  }
}
@media only screen and (max-width: 1199px) {
  .wishlist-page__remove {
    width: 30px;
    height: 30px;
    font-size: 14px;
    border-radius: 6px;
  }
  .wishlist-page__remove svg {
    max-width: 18px;
    max-height: 18px;
  }
}
@media only screen and (max-width: 991px) {
  .wishlist-page__remove {
    width: 28px;
    height: 28px;
    font-size: 13px;
    border-radius: 5px;
  }
  .wishlist-page__remove svg {
    max-width: 16px;
    max-height: 16px;
  }
}
@media (max-width: 575px) {
  .wishlist-page__remove {
    width: 32px;
    height: 32px;
    font-size: 14px;
  }
}
.wishlist-page__remove:hover {
  background: #EE2D7A;
  color: #FFFFFF;
  transform: scale(1.1);
}
.wishlist-page__remove:active {
  transform: scale(0.95);
}
.wishlist-page__continue-shopping {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: #0C0C0C;
  font-family: Lato;
  font-weight: 400;
  font-style: Regular;
  font-size: 16px;
  line-height: 26px;
  letter-spacing: 0px;
  text-decoration: none;
  transition: all 0.3s ease;
  margin-top: 16px;
}
@media only screen and (max-width: 1399px) {
  .wishlist-page__continue-shopping {
    font-size: 15px;
    line-height: 24px;
    margin-top: 14px;
  }
}
@media only screen and (max-width: 1199px) {
  .wishlist-page__continue-shopping {
    font-size: 15px;
    line-height: 24px;
    margin-top: 14px;
  }
}
@media only screen and (max-width: 991px) {
  .wishlist-page__continue-shopping {
    font-size: 14px;
    line-height: 22px;
    margin-top: 12px;
  }
}
@media (max-width: 575px) {
  .wishlist-page__continue-shopping {
    font-size: 14px;
  }
}
.wishlist-page__continue-shopping:hover {
  color: #EE2D7A;
}

@keyframes slideIn {
  from {
    transform: translateX(100%);
    opacity: 0;
  }
  to {
    transform: translateX(0);
    opacity: 1;
  }
}
@keyframes slideOut {
  from {
    transform: translateX(0);
    opacity: 1;
  }
  to {
    transform: translateX(100%);
    opacity: 0;
  }
}
/* === Testimonial Section (Home 01) === */
.testimonial1 {
  position: relative;
  padding-bottom: 7.5rem;
}
@media only screen and (max-width: 1399px) {
  .testimonial1 {
    padding-bottom: 6.25rem;
  }
}
@media only screen and (max-width: 1199px) {
  .testimonial1 {
    padding-bottom: 5rem;
  }
}
@media only screen and (max-width: 991px) {
  .testimonial1 {
    padding-bottom: 3.75rem;
  }
}
@media only screen and (max-width: 767px) {
  .testimonial1 {
    padding-bottom: 3.125rem;
  }
}
.testimonial1-card {
  position: relative;
  border-radius: 1.25rem;
  overflow: hidden;
  height: 100%;
  padding: 3.125rem 2.5rem;
  display: flex;
  flex-direction: column;
  justify-content: center;
  transition: all 0.4s ease;
}
@media only screen and (max-width: 1399px) {
  .testimonial1-card {
    padding: 2.5rem 1.875rem;
    min-height: 23.75rem;
  }
}
@media only screen and (max-width: 767px) {
  .testimonial1-card {
    padding: 1.875rem;
    min-height: 21.875rem;
  }
}
.testimonial1-card.dark-card {
  background-size: cover;
  background-position: center;
  position: relative;
  z-index: 1;
}
.testimonial1-card.dark-card::after {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.45);
  z-index: -1;
  transition: all 0.4s ease;
}
.testimonial1-card.dark-card .testimonial1-card__text {
  color: var(--white);
}
.testimonial1-card.dark-card .testimonial1-card__author-name {
  color: var(--white);
}
.testimonial1-card.dark-card .testimonial1-card__author-designation {
  color: #CDCDCD;
}
.testimonial1-card.dark-card:hover::after {
  background: rgba(0, 0, 0, 0.55);
}
.testimonial1-card.light-card {
  background-color: #FFF0F3;
  position: relative;
}
.testimonial1-card.light-card .testimonial1-card__product-img {
  position: absolute;
  bottom: 1.25rem;
  right: 1.25rem;
  width: 10rem;
  opacity: 0.1;
  pointer-events: none;
  transform: rotate(15deg);
}
.testimonial1-card.light-card .testimonial1-card__product-img img {
  width: 100%;
  height: auto;
}
.testimonial1-card.light-card .testimonial1-card__text {
  color: var(--text-color-one);
}
.testimonial1-card.light-card .testimonial1-card__author-name {
  color: var(--text-color-one);
}
.testimonial1-card.light-card .testimonial1-card__author-designation {
  color: var(--text-color-two);
}
.testimonial1-card.light-card .testimonial1-card__author-thumb {
  width: 3.125rem;
  height: 3.125rem;
  border-radius: 50%;
  overflow: hidden;
  flex-shrink: 0;
}
.testimonial1-card.light-card .testimonial1-card__author-thumb img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.testimonial1-card.light-card:hover {
  background-color: #ffe6eb;
}
.testimonial1-card__quote {
  font-size: 2rem;
  color: #EE2D7A;
  margin-bottom: 1.5625rem;
}
@media only screen and (max-width: 767px) {
  .testimonial1-card__quote {
    font-size: 1.75rem;
    margin-bottom: 1.25rem;
  }
}
.testimonial1-card__text {
  font-size: 1.25rem;
  line-height: 1.5;
  font-weight: 500;
  margin-bottom: 2.1875rem;
  font-style: italic;
  font-family: var(--font_Lato);
}
@media only screen and (max-width: 1399px) {
  .testimonial1-card__text {
    font-size: 1.125rem;
  }
}
@media only screen and (max-width: 767px) {
  .testimonial1-card__text {
    font-size: 1rem;
    margin-bottom: 1.5625rem;
  }
}
.testimonial1-card__author-meta {
  margin-top: auto;
}
.testimonial1-card__author-name {
  font-size: 1.125rem;
  font-family: var(--font_Playfair);
  font-weight: 700;
  margin-bottom: 0;
  text-transform: capitalize;
}
@media only screen and (max-width: 767px) {
  .testimonial1-card__author-name {
    font-size: 1rem;
  }
}
.testimonial1-card__author-designation {
  font-size: 0.875rem;
  font-family: var(--font_Lato);
  font-weight: 400;
}
.testimonial1-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 15px 40px rgba(0, 0, 0, 0.1);
}/*# sourceMappingURL=style.css.map */


.theme-color-font{
  color: var(--primary-two);
}

/* Partner Auto-scroll Section */
.partners-carousel-section {
  position: relative;
  z-index: 1;
}
.partners-carousel-section .section-heading {
  text-align: center;
  margin-bottom: 2.25rem;
}

.partners-carousel-section__title {
  font-size: clamp(20px, 2vw, 30px);
  line-height: 1.3;
  letter-spacing: 0.02em;
}
.partners-carousel-track {
  position: relative;
  z-index: 1;
  overflow: hidden;
  border-radius: 1.75rem;
  padding: 1.2rem 0;
  background: linear-gradient(135deg, #fff8ef 0%, #ffffff 42%, #fff4e3 100%);
  border: 1px solid rgba(236, 168, 61, 0.22);
  box-shadow: inset 0 0 0 1px rgba(255, 255, 255, 0.5), 0 18px 38px rgba(135, 102, 38, 0.08);
}
.partners-carousel-track::before,
.partners-carousel-track::after {
  content: "";
  position: absolute;
  top: 0;
  height: 100%;
  width: 4.5rem;
  z-index: 1;
  pointer-events: none;
}
.partners-carousel-track::before {
  left: 0;
  background: linear-gradient(to right, #fff9f0, rgba(255, 249, 240, 0));
}
.partners-carousel-track::after {
  right: 0;
  background: linear-gradient(to left, #fff9f0, rgba(255, 249, 240, 0));
}
.partners-carousel-list {
  display: flex;
  align-items: center;
  width: max-content;
  gap: 1.125rem;
  padding: 0 1rem;
  animation: partners-marquee 36s linear infinite;
  will-change: transform;
}
.partners-carousel-track:hover .partners-carousel-list {
  animation-play-state: paused;
}
.partners-carousel-card {
  display: flex;
  align-items: center;
  justify-content: center;
  flex: 0 0 auto;
  width: clamp(9rem, 12vw, 11.5rem);
  height: clamp(4.25rem, 6vw, 5.25rem);
  padding: 0.75rem 1rem;
  border-radius: 0.875rem;
  background-color: #fff;
  border: 1px solid rgba(238, 45, 122, 0.14);
  box-shadow: 0 10px 24px rgba(36, 24, 8, 0.06);
}
.partners-carousel-card img {
  max-width: 100%;
  max-height: 100%;
  width: auto;
  height: auto;
  object-fit: contain;
  filter: grayscale(18%);
  opacity: 0.92;
  transition: transform 0.25s ease, filter 0.25s ease, opacity 0.25s ease;
}
.partners-carousel-card:hover img {
  transform: scale(1.04);
  filter: grayscale(0%);
  opacity: 1;
}
.auto-scroll-section {
  position: relative;
}
.auto-scroll-section .section-heading {
  text-align: center;
  margin-bottom: 2.25rem;
}
.auto-scroll-section--footer {
  width: 100%;
  margin-top: 0;
  margin-bottom: 0;
  padding-bottom: 0 !important;
}
.auto-scroll-section--footer.rr-ov-hidden {
  padding-bottom: 0 !important;
  padding-top: 0 !important;
}
.auto-scroll-wrapper {
  position: relative;
  overflow: hidden;
  width: 100%;
  padding: 1.15rem 0;
  background: transparent;
  border-top: none;
  border-bottom: none;
}
.auto-scroll-wrapper::before,
.auto-scroll-wrapper::after {
  content: "";
  position: absolute;
  top: 0;
  height: 100%;
  width: 4.5rem;
  z-index: 2;
  pointer-events: none;
}
.auto-scroll-wrapper::before {
  left: 0;
  background: linear-gradient(to right, #ffffff, rgba(255, 255, 255, 0));
}
.auto-scroll-wrapper::after {
  right: 0;
  background: linear-gradient(to left, #ffffff, rgba(255, 255, 255, 0));
}
.auto-scroll-content {
  display: flex;
  align-items: center;
  width: max-content;
  gap: 2rem;
  padding: 0 1rem;
  animation: partners-marquee 30s linear infinite;
  will-change: transform;
}
.auto-scroll-item {
  display: flex;
  align-items: center;
  justify-content: flex-start;
  flex: 0 0 auto;
  width: auto;
  height: 2.65rem;
  padding: 0;
  gap: 0.8rem;
  white-space: nowrap;
}
.auto-scroll-item img {
  max-width: none;
  max-height: 100%;
  width: auto;
  height: 100%;
  object-fit: contain;
  filter: none;
  opacity: 1;
  transition: transform 0.25s ease, opacity 0.25s ease;
}
.auto-scroll-label {
  color: #1f1f1f;
  font-size: 0.9rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  line-height: 1;
}
.auto-scroll-item:hover img {
  transform: scale(1.05);
  opacity: 1;
}
.auto-scroll-item:hover .auto-scroll-label {
  color: var(--primary-two);
}

@keyframes partners-marquee {
  0% {
    transform: translateX(0);
  }
  100% {
    transform: translateX(-50%);
  }
}

@media only screen and (max-width: 991px) {
  .partners-carousel-track {
    padding: 0.875rem 0;
  }
  .partners-carousel-list {
    gap: 0.875rem;
    animation-duration: 30s;
  }
  .partners-carousel-card {
    width: 8.5rem;
    height: 4rem;
  }
  .auto-scroll-wrapper {
    padding: 1rem 0;
  }
  .auto-scroll-content {
    gap: 1.5rem;
    animation-duration: 24s;
  }
  .auto-scroll-item {
    height: 2.15rem;
    gap: 0.65rem;
  }
  .auto-scroll-label {
    font-size: 0.78rem;
    letter-spacing: 0.11em;
  }
}

@media only screen and (max-width: 767px) {
  .partners-carousel-section .section-heading {
    margin-bottom: 1.5rem;
  }
  .partners-carousel-track::before,
  .partners-carousel-track::after {
    width: 2.5rem;
  }
  .partners-carousel-list {
    animation-duration: 24s;
  }
  .auto-scroll-section--footer {
    margin-top: 0;
  }
  .auto-scroll-section .section-heading {
    margin-bottom: 1.5rem;
  }
  .auto-scroll-wrapper::before,
  .auto-scroll-wrapper::after {
    width: 2.5rem;
  }
  .auto-scroll-content {
    gap: 1.15rem;
    animation-duration: 20s;
  }
  .auto-scroll-item {
    height: 1.7rem;
    gap: 0.55rem;
  }
  .auto-scroll-label {
    font-size: 0.68rem;
    letter-spacing: 0.08em;
  }
  .partners-carousel-card {
    width: 8rem;
    height: 3.75rem;
  }
}

@media (prefers-reduced-motion: reduce) {
  .partners-carousel-list,
  .auto-scroll-content {
    animation: none;
  }
}

/* Milestone Highlight Section */
.milestone-highlight {
  position: relative;
  isolation: isolate;
  overflow: hidden;
  background:
    radial-gradient(circle at 14% 18%, rgba(255, 135, 184, 0.14), transparent 26%),
    radial-gradient(circle at 84% 16%, rgba(255, 196, 97, 0.12), transparent 24%),
    radial-gradient(circle at 50% 100%, rgba(94, 194, 255, 0.10), transparent 30%),
    linear-gradient(145deg, #fff8fb 0%, #fffdfb 48%, #fff7f0 100%);
}
.milestone-highlight__overlay {
  position: absolute;
  inset: 0;
  z-index: -1;
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.35), rgba(255, 255, 255, 0.72));
}
.milestone-highlight__intro {
  max-width: 760px;
  margin: 0 auto 2.4rem;
  text-align: center;
}
.milestone-highlight__eyebrow {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 0.85rem;
  padding: 0.5rem 0.95rem;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.74);
  border: 1px solid rgba(224, 93, 145, 0.16);
  color: #dc4e87;
  font-family: var(--font_Lato);
  font-size: 0.78rem;
  font-weight: 800;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  box-shadow: 0 12px 24px rgba(42, 24, 29, 0.05);
}
.milestone-highlight__title {
  margin: 0 0 0.85rem;
  color: #211619;
  font-family: var(--font_Playfair);
  font-size: 40px;
  line-height: 48px;
  letter-spacing: -0.5px;
}
.milestone-highlight__lead {
  margin: 0 auto;
  max-width: 620px;
  color: #6d555f;
  font-family: var(--font_Lato);
  font-size: 1rem;
  line-height: 1.75;
}
.milestone-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 1.2rem;
}
.milestone-card {
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: center;
  min-height: 100%;
  padding: 1.45rem 1.35rem 1.45rem;
  border-radius: 1.75rem;
  text-align: center;
  background: rgba(255, 255, 255, 0.82);
  border: 1px solid rgba(49, 24, 31, 0.08);
  box-shadow: 0 16px 36px rgba(42, 24, 29, 0.07);
  backdrop-filter: blur(16px);
  transition: transform 0.35s ease, box-shadow 0.35s ease, border-color 0.35s ease;
}
.milestone-card::before {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: inherit;
  background: linear-gradient(145deg, rgba(255, 255, 255, 0.28), transparent 52%);
  pointer-events: none;
}
.milestone-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 30px 56px rgba(42, 24, 29, 0.14);
  border-color: rgba(224, 93, 145, 0.20);
}
.milestone-card__icon-wrap {
  width: 5.35rem;
  height: 5.35rem;
  margin: 0 auto 1.15rem;
  border-radius: 1.35rem;
  display: flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(145deg, #fff1f6 0%, #ffe5ee 100%);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.75), 0 14px 24px rgba(243, 83, 143, 0.14);
}
.milestone-card__icon-wrap img {
  width: 3.15rem;
  height: 3.15rem;
  object-fit: contain;
}
.milestone-card__kicker {
  display: inline-block;
  width: 100%;
  margin-bottom: 0.7rem;
  color: #9a7382;
  font-family: var(--font_Lato);
  font-size: 0.76rem;
  font-weight: 800;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}
.milestone-card__number {
  width: 100%;
  margin-bottom: 0.8rem;
  color: #1f1719;
  font-size: clamp(2.15rem, 3vw, 3rem);
  line-height: 0.92;
  font-weight: 700;
}
.milestone-card__text {
  margin: 0;
  width: 100%;
  color: #302226;
  font-size: 1.05rem;
  line-height: 1.42;
  font-family: var(--font_Playfair);
  font-weight: 700;
}
.milestone-card:nth-child(1) .milestone-card__number {
  color: #f04d8a;
}
.milestone-card:nth-child(2) .milestone-card__icon-wrap {
  background: linear-gradient(145deg, #ebfff0 0%, #d9ffe4 100%);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.75), 0 14px 24px rgba(71, 202, 104, 0.16);
}
.milestone-card:nth-child(2) .milestone-card__number {
  color: #39c965;
}
.milestone-card:nth-child(3) .milestone-card__icon-wrap {
  background: linear-gradient(145deg, #fff0f6 0%, #ffe4ed 100%);
}
.milestone-card:nth-child(3) .milestone-card__number {
  color: #212121;
}
.milestone-card:nth-child(4) .milestone-card__icon-wrap {
  background: linear-gradient(145deg, #fff8df 0%, #ffefae 100%);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.75), 0 14px 24px rgba(241, 194, 35, 0.18);
}
.milestone-card:nth-child(4) .milestone-card__number {
  color: #d3a619;
}

@media only screen and (max-width: 1199px) {
  .milestone-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
  .milestone-highlight__title {
    font-size: 34px;
  }
}

@media only screen and (max-width: 767px) {
  .milestone-highlight__intro {
    margin-bottom: 1.7rem;
  }
  .milestone-highlight__title {
    font-size: 27px;
    line-height: 1.25;
  }
  .milestone-highlight__lead {
    font-size: 0.95rem;
    line-height: 1.65;
  }
  .milestone-grid {
    grid-template-columns: 1fr;
    gap: 1rem;
  }
  .milestone-card {
    padding: 1.2rem 1.05rem 1.25rem;
    border-radius: 1.35rem;
  }
  .milestone-card__text {
    font-size: 0.98rem;
  }
}

/* Office Showcase Section */
.office-showcase {
  background:
    radial-gradient(circle at 18% 12%, rgba(238, 45, 122, 0.11), transparent 30%),
    radial-gradient(circle at 86% 18%, rgba(255, 196, 97, 0.14), transparent 28%),
    linear-gradient(180deg, #fff8fb 0%, #fffefc 100%);
}
.office-showcase__intro {
  max-width: 720px;
  margin: 0 auto 2rem;
  text-align: center;
}
.office-showcase__eyebrow {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 0.85rem;
  padding: 0.5rem 0.95rem;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.74);
  border: 1px solid rgba(238, 45, 122, 0.14);
  color: var(--primary-two);
  font-family: var(--font_Lato);
  font-size: 0.78rem;
  font-weight: 800;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  box-shadow: 0 10px 24px rgba(60, 35, 44, 0.06);
}
.office-showcase__title {
  margin: 0 0 0.85rem;
  color: #2a1b1f;
  font-family: var(--font_Playfair);
  font-size: clamp(2rem, 3vw, 3rem);
  line-height: 1.1;
}
.office-showcase__lead {
  margin: 0 auto;
  max-width: 600px;
  color: #6e5a62;
  font-family: var(--font_Lato);
  font-size: 0.95rem;
  line-height: 1.65;
}
.office-showcase .container {
  max-width: 1680px;
}
.office-grid {
  display: grid;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  gap: 0.9rem;
  align-items: stretch;
}
.office-card {
  position: relative;
  height: 100%;
  display: flex;
  flex-direction: column;
  overflow: hidden;
  background: rgba(255, 255, 255, 0.92);
  border: 1px solid rgba(238, 45, 122, 0.12);
  border-radius: 1.1rem;
  box-shadow: 0 14px 30px rgba(47, 28, 34, 0.08);
  transition: transform 0.28s ease, box-shadow 0.28s ease, border-color 0.28s ease;
}
.office-card:hover {
  transform: translateY(-6px);
  border-color: rgba(238, 45, 122, 0.24);
  box-shadow: 0 18px 34px rgba(47, 28, 34, 0.12);
}
.office-card__topline {
  height: 3px;
  background: linear-gradient(90deg, #ff5f99, #ff8a4e);
}
.office-card__flag {
  width: 4.5rem;
  height: 4.5rem;
  margin: 0.95rem auto 0;
  border-radius: 50%;
  overflow: hidden;
  border: 3px solid rgba(255, 255, 255, 0.9);
  box-shadow: 0 10px 20px rgba(38, 20, 27, 0.14);
  position: relative;
  z-index: 1;
}
.office-card__flag img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.office-card__body {
  display: flex;
  flex: 1 1 auto;
  flex-direction: column;
  padding: 0.8rem 0.8rem 0.9rem;
  text-align: center;
}
.office-card__eyebrow {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.45rem;
  margin: 0 auto 0.45rem;
  color: var(--primary-two);
  font-family: var(--font_Lato);
  font-size: 0.66rem;
  font-weight: 800;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}
.office-card__title {
  margin-bottom: 0.45rem;
  font-weight: 700;
  font-family: var(--font_Playfair);
  color: #281a1e;
  text-transform: capitalize;
  font-size: 1.5rem;
  line-height: 1.1;
}
.office-card__address {
  margin: 0 0 0.75rem;
  min-height: 3.8rem;
  font-size: 0.84rem;
  line-height: 1.45;
  color: #62525a;
}
.office-card__address::before {
  content: "";
  display: block;
  width: 2.2rem;
  height: 2px;
  margin: 0 auto 0.65rem;
  background: linear-gradient(90deg, rgba(238, 45, 122, 0.85), rgba(231, 170, 74, 0.85));
}
.office-card__meta-list {
  display: grid;
  gap: 0.5rem;
  margin-top: auto;
}
.office-card__meta {
  display: flex;
  align-items: center;
  gap: 0.55rem;
  padding: 0.58rem 0.65rem;
  border-radius: 0.75rem;
  background: #fff7fa;
  border: 1px solid rgba(238, 45, 122, 0.08);
  color: #46363d;
  font-size: 0.8rem;
  line-height: 1.35;
  text-align: left;
  word-break: break-word;
  transition: background 0.22s ease, border-color 0.22s ease, transform 0.22s ease;
}
.office-card__meta:hover {
  background: #fff0f6;
  border-color: rgba(238, 45, 122, 0.18);
  transform: translateY(-2px);
}
.office-card__meta-icon {
  width: 1.6rem;
  height: 1.6rem;
  flex: 0 0 1.6rem;
  border-radius: 50%;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(135deg, rgba(255, 87, 145, 0.16), rgba(255, 189, 99, 0.2));
  color: var(--primary-two);
  font-size: 0.72rem;
}

@media only screen and (max-width: 1199px) {
  .office-grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }
}

@media only screen and (max-width: 991px) {
  .office-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media only screen and (max-width: 767px) {
  .office-showcase__intro {
    margin-bottom: 1.75rem;
  }
  .office-showcase__lead {
    font-size: 0.94rem;
    line-height: 1.65;
  }
  .office-grid {
    grid-template-columns: 1fr;
    gap: 1rem;
  }
  .office-card {
    grid-column: auto;
  }
  .office-card__flag {
    width: 5rem;
    height: 5rem;
    margin-top: 1rem;
  }
  .office-card__body {
    padding: 0.95rem 1rem 1.05rem;
  }
  .office-card__title {
    font-size: 1.45rem;
  }
  .office-card__address,
  .office-card__meta {
    font-size: 0.88rem;
  }
}

/* Team Experts Section */
.team-experts {
  background: #f4f4f5;
}
.team-experts .section-heading {
  text-align: center;
  margin-bottom: 2.4rem;
}
.team-experts .section-heading__title {
  color: var(--primary-two);
}
.team-experts__grid {
  margin-top: 0.25rem;
}
.team-experts__card {
  position: relative;
  border-radius: 0.9rem;
  overflow: hidden;
  min-height: 31rem;
  background: #e8e8ea;
  box-shadow: 0 12px 30px rgba(0, 0, 0, 0.09);
  transition: transform 0.28s ease, box-shadow 0.28s ease;
}
.team-experts__card:hover {
  transform: translateY(-10px);
  box-shadow: 0 20px 38px rgba(0, 0, 0, 0.15);
}
.team-experts__photo {
  width: 100%;
  height: 100%;
  min-height: 31rem;
}
.team-experts__photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.4s ease;
}
.team-experts__card:hover .team-experts__photo img {
  transform: scale(1.05);
}
.team-experts__content {
  position: absolute;
  left: 1rem;
  right: 1rem;
  bottom: 0.95rem;
  background: rgba(255, 255, 255, 0.9);
  backdrop-filter: blur(8px);
  border-radius: 0.75rem;
  padding: 0.9rem 0.9rem 0.75rem;
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.08);
}
.team-experts__name {
  margin: 0 0 0.15rem;
  font-size: 1.35rem;
  font-family: var(--font_Lato);
  font-weight: 700;
  color: #27272a;
}
.team-experts__role {
  margin: 0 0 0.45rem;
  font-size: 0.86rem;
  line-height: 1.3;
  color: #6b5cff;
  font-weight: 700;
}
.team-experts__desc {
  margin: 0 0 0.5rem;
  font-size: 0.92rem;
  line-height: 1.45;
  color: #767680;
  min-height: 2.6rem;
}
.team-experts__social {
  display: flex;
  align-items: center;
  gap: 0.55rem;
}
.team-experts__social a {
  width: 1.55rem;
  height: 1.55rem;
  border-radius: 50%;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: #efeff2;
  color: #8b8b95;
  font-size: 0.72rem;
  transition: all 0.22s ease;
}
.team-experts__social a:hover {
  background: var(--primary-two);
  color: #fff;
  transform: translateY(-2px);
}

@media only screen and (max-width: 991px) {
  .team-experts__card,
  .team-experts__photo {
    min-height: 27rem;
  }
}

@media only screen and (max-width: 767px) {
  .team-experts .section-heading {
    margin-bottom: 1.7rem;
  }
  .team-experts__card,
  .team-experts__photo {
    min-height: 25rem;
  }
  .team-experts__content {
    left: 0.75rem;
    right: 0.75rem;
    bottom: 0.75rem;
    padding: 0.8rem;
  }
  .team-experts__name {
    font-size: 1.2rem;
  }
  .team-experts__role {
    font-size: 0.8rem;
  }
}

/* Global Presence Map */

.global-presence .section-heading {
  text-align: center;
  margin-bottom: 2.2rem;
}
.global-presence .section-heading__title {
  color: var(--primary-two);
  font-size: 40px;
  line-height: 48px;
  letter-spacing: -0.5px;
}

@media only screen and (max-width: 1399px) {
  .milestone-highlight__title,
  .global-presence .section-heading__title {
    font-size: 36px;
  }
}

@media only screen and (max-width: 991px) {
  .milestone-highlight__title,
  .global-presence .section-heading__title {
    font-size: 30px;
    line-height: 50px;
  }
}

@media (max-width: 575px) {
  .milestone-highlight__title,
  .global-presence .section-heading__title {
    font-size: 25px;
    line-height: 34px;
  }
}
.global-map-stage {
  position: relative;
  width: 100%;
  max-width: 1920px;
  margin-inline: auto;
  border-radius: 1.25rem;
  overflow: hidden;
}
.global-map-image {
  width: 100%;
  height: auto;
  display: block;
  opacity: 1;
}

.map-marker {
  position: absolute;
  width: 1.7rem;
  height: 1.7rem;
  border: 0;
  background: transparent;
  cursor: pointer;
  z-index: 2;
  --marker-line-height: 6.2rem;
  --marker-dot-left: 50%;
  --marker-dot-top: 50%;
  --marker-popup-gap: 0.7rem;
}
.map-marker::before {
  content: "";
  position: absolute;
  left: var(--marker-dot-left);
  top: calc(var(--marker-dot-top) - var(--marker-line-height));
  transform: translateX(-50%) scaleY(0);
  transform-origin: bottom center;
  width: 2px;
  height: var(--marker-line-height);
  background: #1f1f1f;
  opacity: 0;
  transition: transform .28s ease, opacity .28s ease;
}
.map-marker__dot {
  position: absolute;
  width: 0.95rem;
  height: 0.95rem;
  left: var(--marker-dot-left);
  top: var(--marker-dot-top);
  transform: translate(-50%, -50%);
  border-radius: 50%;
  background: var(--primary-two);
  box-shadow: 0 0 0 0 rgba(238, 45, 122, 0.45);
  animation: map-pulse 2.2s infinite;
  z-index: 1;
}
.map-marker__popup {
  position: absolute;
  left: var(--marker-dot-left);
  bottom: calc(100% - var(--marker-dot-top) + var(--marker-line-height) + var(--marker-popup-gap));
  transform: translate(-50%, 8px) scale(0.96);
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0;
  padding: 0.55rem 0.9rem;
  border-radius: 999px;
  background: #111;
  color: #fff;
  opacity: 0;
  visibility: hidden;
  transition: opacity .26s ease, transform .26s ease, visibility .26s ease;
  min-width: max-content;
  pointer-events: none;
}
.map-marker__popup strong {
  font-size: 0.95rem;
  font-family: var(--font_Lato);
  font-weight: 700;
  letter-spacing: 0.01em;
}
.map-marker--north-america {
  left: 20%;
  top: 35%;
  --marker-line-height: 80px;
  --marker-dot-left: 50%;
  --marker-dot-top: 50%;
  --marker-popup-gap: 0.7rem;
}
.map-marker--united-kingdom {
  left: 45%;
  top: 32%;
  --marker-line-height: 100px;
  --marker-dot-left: 50%;
  --marker-dot-top: 50%;
  --marker-popup-gap: 0.7rem;
}
.map-marker--canada {
  left: 15%;
  top: 45%;
  --marker-line-height: 20px;
  --marker-dot-left: 15%;
  --marker-dot-top: -38%;
  --marker-popup-gap: 0.55rem;
}
.map-marker--africa {
  left: 52%;
  top: 52%;
  --marker-line-height: 80px;
  --marker-dot-left: 50%;
  --marker-dot-top: 50%;
  --marker-popup-gap: 0.7rem;
}
.map-marker--europe {
  left: 50%;
  top: 36%;
  --marker-line-height: 45px;
  --marker-dot-left: 50%;
  --marker-dot-top: 50%;
  --marker-popup-gap: 0.6rem;
}
.map-marker--asia {
  left: 69%;
  top: 40%;
  --marker-line-height: 80px;
  --marker-dot-left: 50%;
  --marker-dot-top: 50%;
  --marker-popup-gap: 0.7rem;
}
.map-marker--australia {
  left: 89%;
  top: 82%;
  --marker-line-height: 60px;
  --marker-dot-left: 15%;
  --marker-dot-top: -38%;
  --marker-popup-gap: 0.6rem;
}
.map-marker--south-america {
  left: 27%;
  top: 68%;
  --marker-line-height: 90px;
  --marker-dot-left: 15%;
  --marker-dot-top: -38%;
  --marker-popup-gap: 0.65rem;
}

.global-presence .map-marker:focus-visible .map-marker__popup,
.global-presence .map-marker:hover .map-marker__popup {
  opacity: 1;
  visibility: visible;
}

@keyframes map-pulse {
  0% {
    box-shadow: 0 0 0 0 rgba(238, 45, 122, 0.44);
  }
  70% {
    box-shadow: 0 0 0 12px rgba(238, 45, 122, 0);
  }
  100% {
    box-shadow: 0 0 0 0 rgba(238, 45, 122, 0);
  }
}

@media only screen and (max-width: 991px) {
  .global-map-stage {
    min-height: auto;
    height: auto;
    padding: 1rem;
  }
  .global-map-image {
    display: none;
  }
  .map-marker {
    position: relative;
    width: 100%;
    height: auto;
    display: flex;
    align-items: center;
    justify-content: flex-start;
    gap: 0.75rem;
    padding: 0.75rem 0.85rem;
    margin-bottom: 0.7rem;
    border-radius: 0.8rem;
    background: #fff;
    border: 1px solid rgba(238, 45, 122, 0.16);
    left: auto;
    top: auto;
  }
  .map-marker::before {
    display: none;
  }
  .map-marker:last-child {
    margin-bottom: 0;
  }
  .map-marker__dot {
    position: relative;
    left: auto;
    top: auto;
    transform: none;
    width: 0.75rem;
    height: 0.75rem;
    animation: none;
    flex-shrink: 0;
  }
  .map-marker__popup {
    position: static;
    opacity: 1;
    visibility: visible;
    transform: none;
    background: transparent;
    color: #2f2f2f;
    padding: 0;
    gap: 0;
    justify-content: flex-start;
  }
  .map-marker__popup strong {
    font-size: 1rem;
    color: var(--primary-two);
  }
}

/* Launch Flow (before testimonial) */
.pl-launch-flow {
  background:
    radial-gradient(circle at 15% 20%, rgba(238, 45, 122, 0.13), transparent 36%),
    radial-gradient(circle at 84% 15%, rgba(195, 151, 57, 0.16), transparent 35%),
    linear-gradient(180deg, #f7fcff 0%, #eef8fc 100%);
}
.pl-launch-flow__board {
  position: relative;
  padding: 2rem;
  border-radius: 1.2rem;
  overflow: hidden;
  border: 1px solid rgba(238, 45, 122, 0.16);
  background: rgba(255, 255, 255, 0.8);
  backdrop-filter: blur(4px);
}
.pl-launch-flow__board::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: -1;
  opacity: 0.13;
  background-image: url("../imgs/about/How-do-we-Formulate-min-2048x1241.jpg");
  background-size: cover;
  background-position: center;
}
.pl-launch-step {
  position: relative;
  height: 100%;
  text-align: center;
  background: #fff;
  border-radius: 1rem;
  padding: 1.3rem 1rem 1.1rem;
  border: 1px solid rgba(0, 0, 0, 0.06);
  box-shadow: 0 14px 26px rgba(17, 13, 9, 0.08);
  transition: transform 0.28s ease, box-shadow 0.28s ease, border-color 0.28s ease;
}
.pl-launch-step:hover {
  transform: translateY(-8px);
  border-color: rgba(238, 45, 122, 0.28);
  box-shadow: 0 20px 34px rgba(17, 13, 9, 0.14);
}
.pl-launch-step__icon {
  width: 4rem;
  height: 4rem;
  margin: 0 auto 0.8rem;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(145deg, #ff4b99 0%, #d23679 100%);
  color: #fff;
  font-size: 1.25rem;
  box-shadow: 0 12px 24px rgba(238, 45, 122, 0.3);
}
.pl-launch-step h3 {
  font-size: 1.6rem;
  margin-bottom: 0.45rem;
  font-family: var(--font_Playfair);
}
.pl-launch-step p {
  font-size: 1rem;
  line-height: 1.5;
  color: #4b4b4b;
  margin-bottom: 0;
}

@media only screen and (max-width: 991px) {
  .pl-launch-flow__board {
    padding: 1.25rem;
  }
}

@media only screen and (max-width: 767px) {
  .pl-launch-step {
    padding: 1rem 0.85rem;
  }
  .pl-launch-step__icon {
    width: 3.4rem;
    height: 3.4rem;
    font-size: 1.08rem;
  }
  .pl-launch-step h3 {
    font-size: 1.4rem;
  }
  .pl-launch-step p {
    font-size: 0.95rem;
  }
}

/* Intro1 slider animation without UI redesign */
.intro1-slider .swiper-slide {
  opacity: 0 !important;
}
.intro1-slider .swiper-slide-active {
  opacity: 1 !important;
}
.intro1-slider .swiper-slide-active .intro1__content > * {
  animation: intro1SlideUp 0.55s ease both;
}
.intro1-slider .swiper-slide-active .intro1__content > *:nth-child(2) {
  animation-delay: 0.1s;
}
.intro1-slider .swiper-slide-active .intro1__content > *:nth-child(3) {
  animation-delay: 0.18s;
}
.intro1-slider .swiper-slide-active .intro1__content > *:nth-child(4) {
  animation-delay: 0.25s;
}
.intro1-slider .swiper-slide-active .intro1__thumb {
  animation: intro1FadeIn 0.65s ease both;
}

@keyframes intro1SlideUp {
  from {
    opacity: 0;
    transform: translateY(18px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes intro1FadeIn {
  from {
    opacity: 0;
    transform: scale(0.98);
  }
  to {
    opacity: 1;
    transform: scale(1);
  }
}

.intro1-slider__arrow {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  z-index: 5;
  width: 2.65rem;
  height: 2.65rem;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.92);
  border: 1px solid rgba(238, 45, 122, 0.2);
  display: flex;
  align-items: center;
  justify-content: center;
  color: #1f1f1f;
  cursor: pointer;
  transition: all 0.22s ease;
}
.intro1-slider__arrow:hover {
  background: var(--primary-two);
  color: #fff;
}
.intro1-slider__arrow--prev {
  left: 0.85rem;
}
.intro1-slider__arrow--next {
  right: 0.85rem;
}
.intro1-slider__dots {
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0.6rem;
  text-align: center;
  z-index: 4;
}
.intro1-slider__dots .swiper-pagination-bullet {
  width: 0.62rem;
  height: 0.62rem;
  background: rgba(0, 0, 0, 0.24);
  opacity: 1;
  margin: 0 0.22rem !important;
}
.intro1-slider__dots .swiper-pagination-bullet-active {
  width: 1.38rem;
  border-radius: 999px;
  background: var(--primary-two);
}

@media only screen and (max-width: 767px) {
  .intro1-slider__arrow {
    width: 2.2rem;
    height: 2.2rem;
  }
  .intro1-slider__arrow--prev {
    left: 0.45rem;
  }
  .intro1-slider__arrow--next {
    right: 0.45rem;
  }
}

/* Modern Bootstrap Footer */
.pl-footer {
  position: relative;
  background:
    radial-gradient(circle at 12% 18%, rgba(238, 45, 122, 0.18), transparent 36%),
    radial-gradient(circle at 88% 15%, rgba(197, 152, 58, 0.16), transparent 34%),
    linear-gradient(135deg, #121018 0%, #1a1422 42%, #17121c 100%);
  color: #fff;
  padding-top: 3.4rem;
}
.pl-footer__top {
  padding-bottom: 2rem;
  border-bottom: 1px solid rgba(255, 255, 255, 0.14);
}
.pl-footer__logo img {
  max-width: 11.5rem;
}
.pl-footer__brand p {
  margin-top: 1rem;
  margin-bottom: 1rem;
  color: rgba(255, 255, 255, 0.82);
  line-height: 1.7;
}
.pl-footer__social {
  display: flex;
  align-items: center;
  gap: 0.55rem;
}
.pl-footer__social a {
  width: 2rem;
  height: 2rem;
  border-radius: 50%;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: rgba(255, 255, 255, 0.12);
  color: #fff;
  transition: all 0.2s ease;
}
.pl-footer__social a:hover {
  background: var(--primary-two);
  transform: translateY(-2px);
}
.pl-footer__title {
  font-size: 1.25rem;
  margin-bottom: 0.9rem;
  font-family: var(--font_Playfair);
}
.pl-footer__links li + li {
  margin-top: 0.45rem;
}
.pl-footer__links a {
  color: rgba(255, 255, 255, 0.78);
  transition: color 0.2s ease, transform 0.2s ease;
  display: inline-block;
}
.pl-footer__links a:hover {
  color: #fff;
  transform: translateX(3px);
}
.pl-footer__contact li {
  display: flex;
  align-items: flex-start;
  gap: 0.55rem;
  margin-bottom: 0.7rem;
  color: rgba(255, 255, 255, 0.82);
}
.pl-footer__contact i {
  color: var(--primary-two);
  margin-top: 0.2rem;
}
.pl-footer__contact a {
  color: rgba(255, 255, 255, 0.9);
}
.pl-footer__contact a:hover {
  color: #fff;
}
.pl-footer__newsletter {
  margin-top: 1.6rem;
  padding: 1.2rem;
  border-radius: 0.9rem;
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.12);
}
.pl-footer__newsletter h6 {
  margin: 0;
  color: #fff;
  font-size: 1.1rem;
}
.pl-footer__form {
  display: flex;
  align-items: center;
  gap: 0.55rem;
}
.pl-footer__form input {
  flex: 1;
  height: 2.8rem;
  border-radius: 0.6rem;
  border: 1px solid rgba(255, 255, 255, 0.2);
  background: rgba(255, 255, 255, 0.12);
  color: #fff;
  padding: 0 0.85rem;
}
.pl-footer__form input::placeholder {
  color: rgba(255, 255, 255, 0.62);
}
.pl-footer__form button {
  height: 2.8rem;
  border: none;
  border-radius: 0.6rem;
  padding: 0 1rem;
  background: var(--primary-two);
  color: #fff;
  font-weight: 600;
}
.pl-footer__bottom {
  margin-top: 1.4rem;
  padding: 1rem 0 1.4rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 0.8rem;
  border-top: 1px solid rgba(255, 255, 255, 0.12);
}
.pl-footer__bottom p {
  margin: 0;
  color: rgba(255, 255, 255, 0.8);
}
.pl-footer__bottom p a {
  color: #fff;
}
.pl-footer__legal {
  display: flex;
  align-items: center;
  gap: 0.9rem;
}
.pl-footer__legal a {
  color: rgba(255, 255, 255, 0.82);
}
.pl-footer__legal a:hover {
  color: #fff;
}

@media only screen and (max-width: 991px) {
  .pl-footer {
    padding-top: 2.8rem;
  }
  .pl-footer__bottom {
    flex-direction: column;
    align-items: flex-start;
  }
}

@media only screen and (max-width: 767px) {
  .pl-footer__newsletter {
    padding: 0.95rem;
  }
  .pl-footer__form {
    flex-direction: column;
    align-items: stretch;
  }
  .pl-footer__form button {
    width: 100%;
  }
}

/* Footer v2 (reference-inspired, Bootstrap responsive) */
.pl-footer--v2 {
  background: #050505;
  color: #fff;
  padding: 3.8rem 0 1.4rem;
}
.pl-footer--v2 .plf-logo img {
  max-width: 18rem;
  width: 100%;
}
.pl-footer--v2 .plf-lead {
  color: rgba(255, 255, 255, 0.86);
  font-size: 1.18rem;
  margin-bottom: 0.8rem;
}
.pl-footer--v2 p.plf-contact {
  margin-bottom: 0.35rem;
  color: rgba(255, 255, 255, 0.86);
  font-size: 1.18rem;
  font-weight: 400;
  line-height: 1.5;
}
.pl-footer--v2 p.plf-contact:last-of-type {
  margin-bottom: 0.8rem;
}
.pl-footer--v2 .plf-contact span {
  color: var(--primary-two);
}
.pl-footer--v2 .plf-follow-btn {
  display: inline-flex;
  align-items: center;
  gap: 0.55rem;
  background: linear-gradient(130deg, #ffd12c 0%, #ffb900 100%);
  color: #111;
  padding: 0.2rem 0.6rem;
  font-size: 13px;
  border-radius: 0.55rem;
  font-weight: 800;
}
.pl-footer--v2 .plf-follow-btn:hover {
  color: #111;
}
.pl-footer--v2 .plf-social {
  display: flex;
  flex-wrap: wrap;
  gap: 0.45rem;
}
.pl-footer--v2 .plf-social a {
  width: 2rem;
  height: 2rem;
  border-radius: 50%;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border: 1px solid rgba(255, 255, 255, 0.3);
  color: #fff;
  transition: all 0.2s ease;
}
.pl-footer--v2 .plf-social a:hover {
  background: var(--primary-two);
  border-color: var(--primary-two);
}
.pl-footer--v2 .plf-review {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 0.6rem;
  max-width: 22rem;
}
.pl-footer--v2 .plf-review img {
  width: 100%;
}
.pl-footer--v2 .plf-title {
  font-size: 1.4rem;
  color: #fff;
  margin-bottom: 0.95rem;
  font-family: var(--font_Playfair);
  font-weight: 700;
}
.pl-footer--v2 .plf-list li {
  margin-bottom: 0.42rem;
  position: relative;
  padding-left: 1.15rem;
}
.pl-footer--v2 .plf-list li::before {
  content: "-";
  position: absolute;
  left: 0;
  top: 0;
  color: rgba(255, 255, 255, 0.8);
}
.pl-footer--v2 .plf-list a,
.pl-footer--v2 .plf-list span {
  color: rgba(255, 255, 255, 0.92);
  font-size: 1.02rem;
}
.pl-footer--v2 .plf-list a:hover {
  color: var(--primary-two);
}
.pl-footer--v2 .plf-badges {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 0.55rem;
  align-items: center;
}
.pl-footer--v2 .plf-badges img {
  width: 100%;
}
.pl-footer--v2 .plf-pay p {
  color: rgba(255, 255, 255, 0.85);
}
.pl-footer--v2 .plf-pay__img {
  width: 70%;
  height: auto;
}
.pl-footer--v2 .plf-pay__chips {
  display: flex;
  gap: 0.45rem;
  flex-wrap: wrap;
}
.pl-footer--v2 .plf-pay__chips span {
  border: 1px solid rgba(255, 255, 255, 0.28);
  border-radius: 0.4rem;
  padding: 0.32rem 0.6rem;
  color: #fff;
  font-size: 0.85rem;
}
.pl-footer--v2 .plf-bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.3);
  padding-top: 1rem;
  color: #ffffffeb;
  font-size: 0.95rem;
}
.pl-footer--v2 .plf-bottom p,
.pl-footer--v2 .plf-bottom p font,
.pl-footer--v2 .plf-bottom p span,
.pl-footer--v2 .plf-bottom font {
  color: #ffffffeb !important;
}

@media only screen and (max-width: 991px) {
  .pl-footer--v2 .plf-title {
    font-size: 1.2rem;
  }
}

@media only screen and (max-width: 767px) {
  .pl-footer--v2 {
    padding-top: 2.8rem;
  }
  .pl-footer--v2 .plf-logo img {
    max-width: 17rem;
  }
  .pl-footer--v2 .plf-review {
    max-width: 100%;
  }
  .pl-footer--v2 .plf-review img {
    height: 3.1rem;
  }
  .pl-footer--v2 .plf-lead,
  .pl-footer--v2 .plf-contact {
    font-size: 1rem;
  }
  .pl-footer--v2 .plf-title {
    font-size: 1rem;
    margin-top: 0.5rem;
  }
  .pl-footer--v2 .plf-bottom {
    font-size: 0.86rem;
  }
}

/* About certifications */
.certifications {
  background: linear-gradient(180deg, #f5f6fb 0%, #eff1f8 100%);
  position: relative;
  overflow: hidden;
}
.certifications::before {
  content: "";
  position: absolute;
  width: 360px;
  height: 360px;
  right: -140px;
  top: -180px;
  border-radius: 999px;
  background: radial-gradient(circle, rgba(238, 45, 122, 0.12) 0%, rgba(238, 45, 122, 0) 72%);
  pointer-events: none;
}
.certifications .container {
  position: relative;
  z-index: 2;
}
.certifications .cert-divider {
  height: 4px;
  width: 84px;
  border-radius: 999px;
  background: linear-gradient(90deg, #ee2d7a 0%, #ff6a5c 100%);
  margin: 0 auto;
}
.certifications .cert-card {
  background: rgba(255, 255, 255, 0.96);
  border: 0;
  border-radius: 20px;
  padding: 26px 20px 24px;
  transition: transform 0.25s ease;
  box-shadow: none;
  height: 100%;
}
.certifications .cert-card:hover {
  transform: translateY(-6px);
  box-shadow: none;
}
.certifications .cert-icon {
  width: 132px;
  height: 132px;
  object-fit: contain;
  margin: 0 auto 18px;
  display: block;
  filter: none;
}
.certifications .cert-title {
  font-size: 24px;
  line-height: 1.25;
  font-weight: 700;
  margin-bottom: 10px;
  letter-spacing: 0.01em;
}
.certifications .cert-text {
  color: #4b5167;
  font-size: 19px;
  line-height: 1.55;
  margin: 0 auto;
  max-width: 330px;
}

@media only screen and (max-width: 1399px) {
  .certifications .cert-title {
    font-size: 22px;
  }
  .certifications .cert-text {
    font-size: 17px;
  }
}

@media only screen and (max-width: 991px) {
  .certifications .cert-card {
    border-radius: 16px;
    padding: 22px 16px 20px;
  }
  .certifications .cert-icon {
    width: 118px;
    height: 118px;
  }
  .certifications .cert-title {
    font-size: 20px;
  }
  .certifications .cert-text {
    font-size: 16px;
    max-width: 280px;
  }
}

@media only screen and (max-width: 767px) {
  .certifications {
    background: #f3f4f8;
  }
  .certifications .cert-card {
    padding: 20px 14px 18px;
    border-radius: 14px;
    box-shadow: none;
  }
  .certifications .cert-icon {
    width: 104px;
    height: 104px;
    margin-bottom: 14px;
  }
  .certifications .cert-title {
    font-size: 18px;
    margin-bottom: 8px;
  }
  .certifications .cert-text {
    font-size: 15px;
    line-height: 1.5;
    max-width: 100%;
  }
}

/* About formulation section */
.about-scroll-reveal {
  opacity: 0;
  transform: translateY(34px) scale(0.98);
  transition: opacity 0.72s ease, transform 0.72s cubic-bezier(0.22, 1, 0.36, 1);
  transition-delay: var(--about-reveal-delay, 0ms);
  will-change: opacity, transform;
}
.about-scroll-reveal.is-visible {
  opacity: 1;
  transform: translateY(0) scale(1);
}
.about-scroll-reveal img {
  transform: scale(1.025);
  transition: transform 0.9s cubic-bezier(0.22, 1, 0.36, 1);
}
.about-scroll-reveal.is-visible img {
  transform: scale(1);
}

@media (prefers-reduced-motion: reduce) {
  .about-scroll-reveal,
  .about-scroll-reveal img {
    opacity: 1;
    transform: none;
    transition: none;
  }
}

/* Private label section */

.private-label .private-label__heading {
  max-width: 1240px;
  margin: 0 auto 26px;
}
.private-label .private-label__heading h3 {
  font-size: 54px;
  line-height: 1.2;
}
.private-label .private-label__intro {
  max-width: 1280px;
  margin: 0 auto;
}
.private-label .private-label__image-wrap {
  border-radius: 22px;
  overflow: hidden;
  box-shadow: none;
  border: 0;
}
.private-label .private-label__image-wrap img {
  width: 100%;
  display: block;
}
.private-label .private-label__content h4 {
  font-size: 52px;
  line-height: 1.2;
}
.private-label .private-label__content p {
  margin-bottom: 18px;
}
.private-label .private-label__content p strong {
  font-weight: 700;
}

@media only screen and (max-width: 1399px) {
  .private-label .private-label__heading h3 {
    font-size: 46px;
  }
  .private-label .private-label__content h4 {
    font-size: 42px;
  }
}

@media only screen and (max-width: 991px) {
  .private-label .private-label__heading h3 {
    font-size: 38px;
  }
  .private-label .private-label__content h4 {
    font-size: 34px;
  }
  .private-label .private-label__image-wrap {
    border-radius: 18px;
  }
}

@media only screen and (max-width: 767px) {
  .private-label .private-label__heading {
    margin-bottom: 16px;
  }
  .private-label .private-label__heading h3 {
    font-size: 30px;
  }
  .private-label .private-label__content h4 {
    font-size: 27px;
    margin-bottom: 12px !important;
  }
  .private-label .private-label__content p {
    margin-bottom: 12px;
  }
}

/* Accreditations section */
.accreditations {
  background: linear-gradient(180deg, #f7f8fb 0%, #f1f3f8 100%);
}
.accreditations .accreditations-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 20px;
}
.accreditations .accreditation-card {
  background: rgba(255, 255, 255, 0.94);
  border: 0;
  border-radius: 18px;
  min-height: 210px;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 18px;
  box-shadow: none;
  transition: transform 0.25s ease;
}
.accreditations .accreditation-card:hover {
  transform: translateY(-5px);
  box-shadow: none;
}
.accreditations .accreditation-card img {
  width: 100%;
  max-width: 230px;
  max-height: 165px;
  object-fit: contain;
  display: block;
}

@media only screen and (max-width: 1199px) {
  .accreditations .accreditations-grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }
}

@media only screen and (max-width: 991px) {
  .accreditations .accreditations-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 16px;
  }
  .accreditations .accreditation-card {
    min-height: 190px;
    border-radius: 14px;
    padding: 14px;
  }
}

@media only screen and (max-width: 575px) {
  .accreditations .accreditations-grid {
    grid-template-columns: 1fr;
  }
  .accreditations .accreditation-card {
    min-height: 170px;
  }
}

/* How it works page */
.how-works-page .how-works-hero {
  background: linear-gradient(180deg, #f8f8fa 0%, #f3f4f8 100%);
}
.how-works-page .how-works-hero__head {
  max-width: 1260px;
  margin: 0 auto 38px;
}
.how-works-page .how-works-hero__head h2 {
  font-size: 30px;
  line-height: 1.28;
  margin-bottom: 12px;
}
.how-works-page .how-works-hero__line {
  width: 82%;
  height: 3px;
  margin: 0 auto 26px;
  background: linear-gradient(90deg, rgba(240, 47, 123, 0) 0%, rgba(240, 47, 123, 0.75) 48%, rgba(240, 47, 123, 0) 100%);
}
.how-works-page .how-works-hero__head p {
  max-width: 1220px;
  margin: 0 auto 6px;
}
.how-works-page .how-works-hero__subhead {
  margin-bottom: 42px;
}
.how-works-page .how-works-hero__subhead h3 {
  font-size: 24px;
  line-height: 1.3;
  color: #1c2438;
}
.how-works-page .how-works-hero__subline {
  width: 52%;
  height: 3px;
  margin: 8px auto 0;
  background: linear-gradient(90deg, rgba(232, 177, 77, 0) 0%, rgba(232, 177, 77, 0.95) 50%, rgba(232, 177, 77, 0) 100%);
}
.how-works-page .how-works-hero__image-wrap {
  border-radius: 28px;
  overflow: hidden;
  border: 1px solid #e2e5ee;
  box-shadow: 0 20px 36px rgba(18, 25, 41, 0.12);
  background: #fff;
}
.how-works-page .how-works-hero__image-wrap img {
  width: 100%;
  height: 100%;
  min-height: 460px;
  object-fit: cover;
}
.how-works-page .how-works-hero__content {
  background: rgba(255, 255, 255, 0.85);
  border: 1px solid #e4e8f2;
  border-radius: 20px;
  padding: 24px 22px;
  box-shadow: 0 12px 24px rgba(20, 27, 44, 0.08);
}
.how-works-page .how-works-hero__content h4 {
  font-size: 18px;
  line-height: 1.35;
  margin-bottom: 10px;
}

@media only screen and (max-width: 1399px) {
  .how-works-page .how-works-hero__head h2 {
    font-size: 28px;
  }
  .how-works-page .how-works-hero__subhead h3 {
    font-size: 22px;
  }
}

@media only screen and (max-width: 991px) {
  .how-works-page .how-works-hero__head h2 {
    font-size: 26px;
  }
  .how-works-page .how-works-hero__subhead h3 {
    font-size: 21px;
  }
  .how-works-page .how-works-hero__image-wrap {
    border-radius: 20px;
  }
  .how-works-page .how-works-hero__image-wrap img {
    min-height: 360px;
  }
  .how-works-page .how-works-hero__content h4 {
    font-size: 18px;
  }
}

@media only screen and (max-width: 767px) {
  .how-works-page .how-works-hero__head {
    margin-bottom: 26px;
  }
  .how-works-page .how-works-hero__head h2 {
    font-size: 22px;
  }
  .how-works-page .how-works-hero__line {
    width: 100%;
    margin-bottom: 18px;
  }
  .how-works-page .how-works-hero__subhead {
    margin-bottom: 24px;
  }
  .how-works-page .how-works-hero__subhead h3 {
    font-size: 19px;
  }
  .how-works-page .how-works-hero__subline {
    width: 86%;
  }
  .how-works-page .how-works-hero__image-wrap img {
    min-height: 250px;
  }
  .how-works-page .how-works-hero__content {
    border-radius: 14px;
    padding: 14px 12px;
  }
  .how-works-page .how-works-hero__content h4 {
    font-size: 17px;
    margin-bottom: 10px;
  }
}

/* How works feature card override */
.how-works-page .how-works-hero__feature-card {
  background: linear-gradient(145deg, #ffffff 0%, #f7f8fc 100%);
  border: 1px solid #e4e9f4;
  border-radius: 26px;
  overflow: hidden;
  box-shadow: 0 20px 38px rgba(18, 25, 41, 0.14);
  transition: transform 0.35s ease, box-shadow 0.35s ease;
  animation: howWorksCardIn 0.7s ease-out both;
}
.how-works-page .how-works-hero__feature-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 26px 46px rgba(18, 25, 41, 0.2);
}
.how-works-page .how-works-hero__feature-card .how-works-hero__image-wrap {
  border: none;
  box-shadow: none;
  border-radius: 0;
  height: 100%;
}
.how-works-page .how-works-hero__feature-card .how-works-hero__image-wrap img {
  min-height: 100%;
  height: 100%;
  transition: transform 0.6s ease;
}
.how-works-page .how-works-hero__feature-card:hover .how-works-hero__image-wrap img {
  transform: scale(1.04);
}
.how-works-page .how-works-hero__feature-card .how-works-hero__content {
  border: none;
  box-shadow: none;
  background: transparent;
  padding: 26px 24px;
}
.how-works-page .how-works-hero__feature-card .how-works-hero__content p {
  margin-bottom: 14px;
}
.how-works-page .how-works-steps {
  margin-top: 30px;
  display: grid;
  gap: 28px;
}
.how-works-page .how-works-hero__feature-card--reverse .row {
  flex-direction: row-reverse;
}

@keyframes howWorksCardIn {
  from {
    opacity: 0;
    transform: translateY(24px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@media only screen and (max-width: 991px) {
  .how-works-page .how-works-hero__feature-card {
    border-radius: 18px;
  }
  .how-works-page .how-works-hero__feature-card .how-works-hero__image-wrap img {
    min-height: 320px;
  }
  .how-works-page .how-works-hero__feature-card--reverse .row {
    flex-direction: column;
  }
}

@media only screen and (max-width: 767px) {
  .how-works-page .how-works-hero__feature-card {
    border-radius: 14px;
  }
  .how-works-page .how-works-hero__feature-card .how-works-hero__content {
    padding: 14px 12px;
  }
  .how-works-page .how-works-hero__feature-card .how-works-hero__image-wrap img {
    min-height: 220px;
  }
}

/* Order process accordion */
.how-works-page .order-process {
  margin-top: 8px;
}
.how-works-page .order-process__head {
  max-width: 1180px;
  margin: 0 auto 26px;
}
.how-works-page .order-process__head h3 {
  font-size: 36px;
  line-height: 1.25;
  color: #2c3142;
}

.how-works-page .order-accordion {
  background: linear-gradient(180deg, #ffffff 0%, #f6f7fb 100%);
  border: 1px solid #e3e8f3;
  border-radius: 20px;
  padding: 18px;
  box-shadow: 0 16px 32px rgba(19, 26, 43, 0.08);
}
.how-works-page .order-accordion__item {
  border: 1px solid #e6ebf5;
  border-radius: 14px;
  background: #fff;
  overflow: hidden;
  transition: box-shadow 0.28s ease, border-color 0.28s ease;
}
.how-works-page .order-accordion__item:not(:last-child) {
  margin-bottom: 12px;
}
.how-works-page .order-accordion__item.is-open {
  border-color: #f2bfd5;
  box-shadow: 0 12px 24px rgba(240, 47, 123, 0.1);
}
.how-works-page .order-accordion__btn {
  width: 100%;
  text-align: left;
  display: grid;
  grid-template-columns: 52px 1fr;
  gap: 14px;
  align-items: center;
  padding: 16px 18px;
}
.how-works-page .order-accordion__icon {
  width: 44px;
  height: 44px;
  border-radius: 10px;
  background: #f2f4f8;
  border: 1px solid #e3e7f0;
  position: relative;
}
.how-works-page .order-accordion__icon::before,
.how-works-page .order-accordion__icon::after {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  width: 16px;
  height: 2px;
  background: #8e95aa;
  transform: translate(-50%, -50%);
  transition: transform 0.25s ease, opacity 0.25s ease, background 0.25s ease;
}
.how-works-page .order-accordion__icon::after {
  transform: translate(-50%, -50%) rotate(90deg);
}
.how-works-page .order-accordion__item.is-open .order-accordion__icon {
  background: #fff2f8;
  border-color: #f4c6da;
}
.how-works-page .order-accordion__item.is-open .order-accordion__icon::before,
.how-works-page .order-accordion__item.is-open .order-accordion__icon::after {
  background: #f0327e;
}
.how-works-page .order-accordion__item.is-open .order-accordion__icon::after {
  transform: translate(-50%, -50%) rotate(90deg) scaleX(0);
  opacity: 0;
}
.how-works-page .order-accordion__title {
  font-size: 19px;
  font-weight: 700;
  line-height: 1.35;
  color: #2e3346;
}
.how-works-page .order-accordion__item.is-open .order-accordion__title {
  color: #f0327e;
}
.how-works-page .order-accordion__panel {
  display: grid;
  grid-template-rows: 0fr;
  transition: grid-template-rows 0.3s ease;
}
.how-works-page .order-accordion__item.is-open .order-accordion__panel {
  grid-template-rows: 1fr;
}
.how-works-page .order-accordion__body {
  overflow: hidden;
  padding: 0 18px 0 84px;
}
.how-works-page .order-accordion__item.is-open .order-accordion__body {
  padding-bottom: 18px;
}
.how-works-page .order-accordion__list {
  margin: 10px 0 0;
  padding: 0;
  list-style: none;
}
.how-works-page .order-accordion__list li {
  font-size: 17px;
  line-height: 1.5;
  color: #4b5061;
}
.how-works-page .order-accordion__list li:not(:last-child) {
  margin-bottom: 8px;
}
.how-works-page .order-accordion__list strong {
  color: #f0327e;
  font-weight: 700;
}

@media only screen and (max-width: 991px) {
  .how-works-page .order-process__head h3 {
    font-size: 30px;
  }
  .how-works-page .order-accordion__btn {
    grid-template-columns: 46px 1fr;
    gap: 12px;
    padding: 14px;
  }
  .how-works-page .order-accordion__icon {
    width: 38px;
    height: 38px;
  }
  .how-works-page .order-accordion__title {
    font-size: 17px;
  }
  .how-works-page .order-accordion__body {
    padding-left: 60px;
  }
}

@media only screen and (max-width: 767px) {
  .how-works-page .order-process__head h3 {
    font-size: 24px;
  }
  .how-works-page .order-accordion {
    border-radius: 14px;
    padding: 10px;
  }
  .how-works-page .order-accordion__item {
    border-radius: 10px;
  }
  .how-works-page .order-accordion__title {
    font-size: 16px;
  }
  .how-works-page .order-accordion__body {
    padding: 0 12px 0 12px;
  }
  .how-works-page .order-accordion__item.is-open .order-accordion__body {
    padding-bottom: 14px;
  }
  .how-works-page .order-accordion__list li {
    font-size: 15px;
  }
}

/* Product showcase page */
.product-showcase-page {
  background: linear-gradient(180deg, #f8f8fb 0%, #f2f3f8 100%);
}
.product-showcase-page .product-showcase-head {
  max-width: 1280px;
  margin: 0 auto 34px;
}
.product-showcase-page .product-showcase-head h2 {
  font-size: 42px;
  line-height: 1.24;
}
.product-showcase-page .product-showcase-line {
  width: 72%;
  height: 3px;
  margin: 14px auto 22px;
  background: linear-gradient(90deg, rgba(240, 47, 123, 0) 0%, rgba(240, 47, 123, 0.8) 50%, rgba(240, 47, 123, 0) 100%);
}
.product-showcase-page .product-showcase-head h3 {
  margin-top: 24px;
  font-size: 36px;
  color: #ef2f7b;
}
.product-showcase-page .product-showcase-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 24px;
}
.product-showcase-page .product-showcase-card {
  position: relative;
  display: block;
  border-radius: 18px;
  overflow: hidden;
  min-height: 320px;
  background: #fff;
  border: 1px solid #dfe4f1;
  box-shadow: 0 14px 30px rgba(18, 24, 39, 0.12);
}
.product-showcase-page .product-showcase-card img {
  width: 100%;
  height: 100%;
  min-height: 320px;
  object-fit: cover;
  transition: transform 0.55s ease;
}
.product-showcase-page .product-showcase-card::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(14, 18, 30, 0) 34%, rgba(14, 18, 30, 0.8) 100%);
  z-index: 1;
}
.product-showcase-page .product-showcase-overlay {
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 2;
  display: flex;
  flex-direction: column;
  gap: 6px;
  padding: 18px 18px 16px;
  color: #fff;
  transform: translateY(56%);
  transition: transform 0.35s ease;
}
.product-showcase-page .product-showcase-overlay strong {
  font-size: 32px;
  font-family: var(--font_Playfair);
  line-height: 1.2;
}
.product-showcase-page .product-showcase-overlay small {
  font-size: 15px;
  line-height: 1.4;
  opacity: 0;
  transform: translateY(8px);
  transition: all 0.28s ease;
}
.product-showcase-page .product-showcase-cta {
  margin-top: 6px;
  font-size: 14px;
  font-weight: 700;
  width: fit-content;
  padding: 8px 12px;
  border-radius: 999px;
  background: linear-gradient(120deg, #ef2f7b 0%, #ff7a5f 100%);
  opacity: 0;
  transform: translateY(8px);
  transition: all 0.28s ease;
}
.product-showcase-page .product-showcase-card:hover img {
  transform: scale(1.06);
}
.product-showcase-page .product-showcase-card:hover .product-showcase-overlay {
  transform: translateY(0);
}
.product-showcase-page .product-showcase-card:hover .product-showcase-overlay small,
.product-showcase-page .product-showcase-card:hover .product-showcase-cta {
  opacity: 1;
  transform: translateY(0);
}

@media only screen and (max-width: 991px) {
  .product-showcase-page .product-showcase-head h2 {
    font-size: 34px;
  }
  .product-showcase-page .product-showcase-head h3 {
    font-size: 30px;
  }
  .product-showcase-page .product-showcase-grid {
    gap: 18px;
  }
  .product-showcase-page .product-showcase-card,
  .product-showcase-page .product-showcase-card img {
    min-height: 280px;
  }
}

@media only screen and (max-width: 767px) {
  .product-showcase-page .product-showcase-head h2 {
    font-size: 28px;
  }
  .product-showcase-page .product-showcase-head h3 {
    font-size: 24px;
  }
  .product-showcase-page .product-showcase-grid {
    grid-template-columns: 1fr;
  }
  .product-showcase-page .product-showcase-overlay {
    transform: translateY(0);
  }
  .product-showcase-page .product-showcase-overlay small,
  .product-showcase-page .product-showcase-cta {
    opacity: 1;
    transform: translateY(0);
  }
}

/* Shop sidebar category dropdown */
.shop-sidebar__categories--dropdown .shop-sidebar__categories-item {
  border-bottom: 1px solid #eceff6;
  margin-bottom: 2px;
  background: transparent;
}
.shop-sidebar__categories--dropdown .shop-sidebar__category-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 8px;
}
.shop-sidebar__categories--dropdown .shop-sidebar__category-parent {
  flex: 1;
  padding: 11px 0;
  font-size: 16px;
  font-weight: 600;
  color: #21263b;
}
.shop-sidebar__categories--dropdown .shop-sidebar__categories-item.is-open .shop-sidebar__category-parent,
.shop-sidebar__categories--dropdown .shop-sidebar__category-parent:hover {
  color: #ef2f7b;
}
.shop-sidebar__categories--dropdown .shop-sidebar__category-toggle {
  width: 28px;
  height: 28px;
  padding: 0;
  display: flex;
  align-items: center;
  justify-content: space-between;
  justify-content: center;
  background: transparent;
}
.shop-sidebar__categories--dropdown .shop-sidebar__category-toggle i {
  font-size: 12px;
  color: #8a90a4;
  transition: transform 0.25s ease, color 0.25s ease;
}
.shop-sidebar__categories--dropdown .shop-sidebar__categories-item.is-open .shop-sidebar__category-toggle {
  color: #ef2f7b;
}
.shop-sidebar__categories--dropdown .shop-sidebar__categories-item.is-open .shop-sidebar__category-toggle i {
  transform: rotate(180deg);
  color: #ef2f7b;
}
.shop-sidebar__categories--dropdown .shop-sidebar__subcategory-list {
  list-style: none;
  margin: 0;
  padding: 0 0 0 12px;
  max-height: 0;
  opacity: 0;
  overflow: hidden;
  transition: max-height 0.24s ease, opacity 0.2s ease, padding 0.24s ease;
}
.shop-sidebar__categories--dropdown .shop-sidebar__categories-item.is-open .shop-sidebar__subcategory-list {
  max-height: 320px;
  opacity: 1;
  padding: 2px 0 10px 12px;
}
.shop-sidebar__categories--dropdown .shop-sidebar__subcategory-list li:not(:last-child) {
  margin-bottom: 2px;
}
.shop-sidebar__categories--dropdown .shop-sidebar__subcategory-list .shop-sidebar__categories-link {
  display: inline-flex;
  padding: 6px 0;
  font-size: 14px;
  font-weight: 500;
  color: #5a6176;
  background: transparent;
  position: relative;
}
.shop-sidebar__categories--dropdown .shop-sidebar__subcategory-list .shop-sidebar__categories-link:hover {
  color: #ef2f7b;
}

.shop-sidebar__categories--dropdown .shop-sidebar__subcategory-list .shop-sidebar__categories-link:hover::before {
  color: #ef2f7b;
}





/* Private label skin care manufacturer page */
.private-label-page .private-label-content {
  background:
    radial-gradient(circle at 100% 0%, rgba(239, 47, 123, 0.08) 0%, rgba(239, 47, 123, 0) 42%),
    linear-gradient(180deg, #f8fafc 0%, #f3f5f9 100%);
}
.private-label-page .private-label-page-head {
  max-width: 980px;
  margin: 0 auto 38px;
}
.private-label-page .private-label-page-head__eyebrow {
  display: inline-block;
  margin-bottom: 10px;
  padding: 7px 14px;
  border-radius: 999px;
  border: 1px solid #f3bfd8;
  background: #fff2f8;
  color: #ef2f7b;
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}
.private-label-page .private-label-page-head h2 {
  margin: 0;
  font-family: "Marcellus", serif;
  font-size: 42px;
  line-height: 1.2;
  color: #1e2a44;
}
.private-label-page .private-label-page-head__lead {
  margin: 14px auto 0;
  max-width: 900px;
  font-size: 18px;
  line-height: 1.72;
}
.private-label-page .private-label-intro-accordion {
  background: #fff;
  border: 1px solid #e5e9f2;
  border-radius: 20px;
  padding: 16px;
  box-shadow: 0 16px 30px rgba(16, 24, 40, 0.08);
}
.private-label-page .private-label-intro-accordion__item {
  border: 1px solid #e8edf6;
  border-radius: 12px;
  background: #fff;
  overflow: hidden;
  opacity: 0;
  transform: translateY(16px);
  animation: privateLabelAccordionIn 0.55s cubic-bezier(0.22, 1, 0.36, 1) forwards;
  transition: border-color 0.28s ease, box-shadow 0.28s ease, transform 0.28s ease;
}
.private-label-page .private-label-intro-accordion__item:not(:last-child) {
  margin-bottom: 10px;
}
.private-label-page .private-label-intro-accordion__item:nth-child(2) {
  animation-delay: 0.06s;
}
.private-label-page .private-label-intro-accordion__item:nth-child(3) {
  animation-delay: 0.12s;
}
.private-label-page .private-label-intro-accordion__item:nth-child(4) {
  animation-delay: 0.18s;
}
.private-label-page .private-label-intro-accordion__item:nth-child(5) {
  animation-delay: 0.24s;
}
.private-label-page .private-label-intro-accordion__item:nth-child(6) {
  animation-delay: 0.3s;
}
.private-label-page .private-label-intro-accordion__item:nth-child(7) {
  animation-delay: 0.36s;
}
.private-label-page .private-label-intro-accordion__item.is-open {
  border-color: #f2bfd6;
  box-shadow: 0 10px 20px rgba(239, 47, 123, 0.12);
}
.private-label-page .private-label-intro-accordion__btn {
  width: 100%;
  text-align: left;
  display: grid;
  grid-template-columns: 44px 1fr;
  gap: 12px;
  align-items: center;
  padding: 14px;
}
.private-label-page .private-label-intro-accordion__icon {
  width: 34px;
  height: 34px;
  border-radius: 8px;
  border: 1px solid #dfe5f2;
  background: #f5f7fb;
  position: relative;
}
.private-label-page .private-label-intro-accordion__icon::before,
.private-label-page .private-label-intro-accordion__icon::after {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  width: 12px;
  height: 2px;
  background: #6d7690;
  transform: translate(-50%, -50%);
  transition: transform 0.24s ease, opacity 0.24s ease, background 0.24s ease;
}
.private-label-page .private-label-intro-accordion__icon::after {
  transform: translate(-50%, -50%) rotate(90deg);
}
.private-label-page .private-label-intro-accordion__item.is-open .private-label-intro-accordion__icon {
  background: #fff2f8;
  border-color: #f4c6da;
}
.private-label-page .private-label-intro-accordion__item.is-open .private-label-intro-accordion__icon::before,
.private-label-page .private-label-intro-accordion__item.is-open .private-label-intro-accordion__icon::after {
  background: #f0327e;
}
.private-label-page .private-label-intro-accordion__item.is-open .private-label-intro-accordion__icon::after {
  transform: translate(-50%, -50%) rotate(90deg) scaleX(0);
  opacity: 0;
}
.private-label-page .private-label-intro-accordion__title {
  font-size: 16px;
  line-height: 1.45;
  font-weight: 700;
  color: #26314c;
  font-family: "Marcellus", serif;
  transition: color 0.24s ease, transform 0.24s ease;
}
.private-label-page .private-label-intro-accordion__item.is-open .private-label-intro-accordion__title {
  color: #ef2f7b;
  transform: translateX(2px);
}
.private-label-page .private-label-intro-accordion__panel {
  display: grid;
  grid-template-rows: 0fr;
  transition: grid-template-rows 0.38s cubic-bezier(0.22, 1, 0.36, 1);
}
.private-label-page .private-label-intro-accordion__item.is-open .private-label-intro-accordion__panel {
  grid-template-rows: 1fr;
}
.private-label-page .private-label-intro-accordion__body {
  overflow: hidden;
  padding: 0 16px 0 56px;
  opacity: 0;
  transform: translateY(-6px) scale(0.96);
  transform-origin: top center;
  transition: opacity 0.26s ease, transform 0.32s ease;
}
.private-label-page .private-label-intro-accordion__item.is-open .private-label-intro-accordion__body {
  padding-bottom: 16px;
  opacity: 1;
  transform: translateY(0) scale(1);
  animation: privateLabelAccordionZoomIn 0.34s cubic-bezier(0.22, 1, 0.36, 1);
}
.private-label-page .private-label-intro-accordion__body p {
  margin-bottom: 10px;
  font-size: 15px;
  line-height: 1.8;
  color: #4c556b;
}
.private-label-page .private-label-intro-accordion__body h5 {
  margin: 0 0 10px;
  font-size: 20px;
  line-height: 1.4;
  color: #20304b;
  font-family: "Marcellus", serif;
}
.private-label-page .private-label-intro-accordion__heading {
  margin: 20px 0 12px;
  color: #ef2f7b;
  font-size: 28px;
  font-family: "Marcellus", serif;
  line-height: 1.25;
}
.private-label-page .private-label-intro-accordion__subheading {
  margin: 16px 0 8px;
  color: #1f2a44;
  font-size: 23px;
  font-family: "Marcellus", serif;
  line-height: 1.3;
}
.private-label-page .private-label-sidebar {
  background: linear-gradient(180deg, #ffffff 0%, #f8f9fc 100%);
  border: 1px solid #e5e9f3;
  border-radius: 16px;
  padding: 24px 20px;
  box-shadow: 0 14px 26px rgba(16, 24, 40, 0.09);
  position: sticky;
  top: 110px;
}
.private-label-page .private-label-sidebar__social {
  margin-bottom: 26px;
}
.private-label-page .private-label-sidebar h3 {
  font-family: "Marcellus", serif;
  font-size: 28px;
  line-height: 1.25;
  margin: 0;
  color: #25304a;
}
.private-label-page .private-label-sidebar__social h3 {
  color: #ef2f7b;
}
.private-label-page .private-label-sidebar__social-list {
  list-style: none;
  margin: 16px 0 0;
  padding: 0;
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
}
.private-label-page .private-label-sidebar__social-list a {
  width: auto;
  height: auto;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  color: #ef2f7b;
  border: 0;
  background: transparent;
  font-size: 20px;
  transition: transform 0.24s ease, color 0.24s ease;
}
.private-label-page .private-label-sidebar__social-list a:hover {
  transform: translateY(-2px);
  color: #c71f68;
}
.private-label-page .private-label-sidebar__links h3 {
  margin-bottom: 10px;
}
.private-label-page .private-label-sidebar__links ul {
  margin: 0;
  padding: 0;
  list-style: none;
}
.private-label-page .private-label-sidebar__links li {
  border-bottom: 1px dashed #d8deeb;
}
.private-label-page .private-label-sidebar__links a {
  display: block;
  padding: 11px 0;
  font-size: 15px;
  color: #4e5870;
  transition: color 0.24s ease, padding-left 0.24s ease;
}
.private-label-page .private-label-sidebar__links a::before {
  content: "-";
  display: inline-block;
  margin-right: 10px;
  color: #1f2a44;
  font-weight: 700;
}
.private-label-page .private-label-sidebar__links a:hover {
  color: #ef2f7b;
  padding-left: 4px;
}

@keyframes privateLabelAccordionIn {
  from {
    opacity: 0;
    transform: translateY(16px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes privateLabelAccordionZoomIn {
  0% {
    opacity: 0;
    transform: translateY(-8px) scale(0.94);
  }
  60% {
    opacity: 1;
    transform: translateY(0) scale(1.015);
  }
  100% {
    opacity: 1;
    transform: translateY(0) scale(1);
  }
}

@media only screen and (max-width: 1399px) {
  .private-label-page .private-label-page-head h2 {
    font-size: 36px;
  }
  .private-label-page .private-label-intro-accordion__title {
    font-size: 16px;
  }
  .private-label-page .private-label-intro-accordion__subheading {
    font-size: 22px;
  }
  .private-label-page .private-label-sidebar h3 {
    font-size: 26px;
  }
}

@media only screen and (max-width: 1199px) {
  .private-label-page .private-label-page-head h2 {
    font-size: 32px;
  }
  .private-label-page .private-label-page-head__lead {
    font-size: 17px;
  }
  .private-label-page .private-label-intro-accordion__title {
    font-size: 15px;
  }
  .private-label-page .private-label-intro-accordion__subheading {
    font-size: 21px;
  }
  .private-label-page .private-label-sidebar h3 {
    font-size: 24px;
  }
}

@media only screen and (max-width: 991px) {
  .private-label-page .private-label-page-head {
    margin-bottom: 30px;
  }
  .private-label-page .private-label-page-head h2 {
    font-size: 30px;
  }
  .private-label-page .private-label-sidebar {
    position: static;
    top: auto;
    margin-top: 4px;
  }
  .private-label-page .private-label-intro-accordion__btn {
    grid-template-columns: 40px 1fr;
    gap: 10px;
    padding: 14px;
  }
  .private-label-page .private-label-intro-accordion__icon {
    width: 30px;
    height: 30px;
  }
  .private-label-page .private-label-intro-accordion__title {
    font-size: 15px;
  }
  .private-label-page .private-label-intro-accordion__subheading {
    font-size: 20px;
  }
  .private-label-page .private-label-intro-accordion__body {
    padding-left: 48px;
  }
  .private-label-page .private-label-intro-accordion__body h5 {
    font-size: 18px;
  }
  .private-label-page .private-label-sidebar h3 {
    font-size: 22px;
  }
}

@media only screen and (max-width: 767px) {
  .private-label-page .private-label-page-head {
    text-align: left !important;
  }
  .private-label-page .private-label-page-head h2 {
    font-size: 25px;
  }
  .private-label-page .private-label-page-head__lead {
    font-size: 16px;
    line-height: 1.68;
  }
  .private-label-page .private-label-intro-accordion {
    border-radius: 14px;
    padding: 10px;
  }
  .private-label-page .private-label-intro-accordion__item {
    border-radius: 10px;
  }
  .private-label-page .private-label-intro-accordion__title {
    font-size: 14px;
  }
  .private-label-page .private-label-intro-accordion__heading {
    font-size: 22px;
  }
  .private-label-page .private-label-intro-accordion__subheading {
    font-size: 19px;
  }
  .private-label-page .private-label-intro-accordion__body {
    padding: 0 12px 0 12px;
  }
  .private-label-page .private-label-intro-accordion__item.is-open .private-label-intro-accordion__body {
    padding-bottom: 14px;
  }
  .private-label-page .private-label-intro-accordion__body p {
    font-size: 14px;
    line-height: 1.75;
  }
  .private-label-page .private-label-intro-accordion__body h5 {
    font-size: 16px;
  }
  .private-label-page .private-label-sidebar {
    border-radius: 14px;
    padding: 18px 14px;
  }
  .private-label-page .private-label-sidebar h3 {
    font-size: 20px;
  }
.private-label-page .private-label-sidebar__links a {
    font-size: 16px;
}
  .private-label-page .private-label-sidebar__social-list {
    gap: 14px;
  }
  .private-label-page .private-label-sidebar__social-list a {
    font-size: 18px;
  }
}

/* Global Nice Select readability fix */
.nice-select,
.nice-select .current {
  color: var(--text-color-one) !important;
}

.nice-select .list {
  background-color: #ffffff !important;
  border: 1px solid #e7e7e7;
  box-shadow: 0 10px 30px rgba(12, 12, 12, 0.08);
  z-index: 9999;
}

.nice-select .option {
  color: var(--text-color-one) !important;
  background: #ffffff;
}

.nice-select .option:hover,
.nice-select .option.focus,
.nice-select .option.selected.focus {
  color: var(--text-color-one) !important;
  background-color: #ffeef4 !important;
}

.nice-select .option.selected {
  color: var(--primary-two) !important;
  font-weight: 700;
}

.nice-select .option.disabled {
  color: #9aa0a6 !important;
}

/* Home Category Tabs + Grid (moved from index.php inline styles) */
.category-section {
  position: relative;
  padding-top: 0;
  overflow: hidden;
  background:
    radial-gradient(circle at 12% 18%, rgba(255, 120, 165, 0.11), transparent 24%),
    radial-gradient(circle at 88% 12%, rgba(255, 196, 96, 0.10), transparent 22%),
    linear-gradient(180deg, #ffffff 0%, #fff9fb 52%, #ffffff 100%);
}
.category-section::before,
.category-section::after {
  content: "";
  position: absolute;
  border-radius: 999px;
  filter: blur(22px);
  pointer-events: none;
  opacity: 0.65;
}
.category-section::before {
  width: 220px;
  height: 220px;
  top: 90px;
  left: -70px;
  background: radial-gradient(circle, rgba(255, 111, 156, 0.18), transparent 70%);
}
.category-section::after {
  width: 260px;
  height: 260px;
  right: -120px;
  bottom: 70px;
  background: radial-gradient(circle, rgba(120, 218, 255, 0.14), transparent 72%);
}
.category-section__heading {
  position: relative;
  text-align: center;
  margin-bottom: 30px;
  opacity: 0;
  transform: translateY(26px);
  transition: opacity .75s ease, transform .75s cubic-bezier(.22, 1, .36, 1);
}
.category-section__heading .section-heading__title {
  color: transparent;
  background: linear-gradient(135deg, #f33f86 0%, #ff7aa9 52%, #ef3b84 100%);
  -webkit-background-clip: text;
  background-clip: text;
  text-shadow: 0 12px 28px rgba(243, 63, 134, 0.12);
  margin-bottom: 0;
}
.category-section .rr-container-1350 {
  position: relative;
  z-index: 1;
  max-width: 1320px;
}
.nav-tabs-modern {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  width: fit-content;
  max-width: 100%;
  margin: 0 auto 50px;
  overflow-x: auto;
  padding: 12px;
  border-radius: 999px;
  background: linear-gradient(180deg, #fcfcfc 0%, #f1f2f4 100%);
  border: 1px solid rgba(236, 97, 145, 0.12);
  box-shadow: 0 16px 40px rgba(32, 37, 43, 0.08);
  scrollbar-width: none;
  opacity: 0;
  transform: translateY(18px) scale(.98);
  transition: opacity .75s ease .08s, transform .75s cubic-bezier(.22, 1, .36, 1) .08s;
}
.nav-tabs-modern::-webkit-scrollbar {
  display: none;
}
.nav-tabs-modern__indicator {
  position: absolute;
  top: 0;
  left: 0;
  border-radius: 999px;
  background: linear-gradient(135deg, rgba(255, 255, 255, 0.96), rgba(255, 255, 255, 0.74));
  box-shadow: 0 16px 28px rgba(241, 79, 135, 0.14);
  transition: transform .42s cubic-bezier(.22, 1, .36, 1), width .42s cubic-bezier(.22, 1, .36, 1), height .42s cubic-bezier(.22, 1, .36, 1), opacity .2s ease;
  opacity: 0;
  z-index: 0;
}
.nav-tab-item {
  position: relative;
  min-width: 170px;
  padding: 18px 28px;
  border-radius: 999px;
  background: transparent;
  color: #7b8288;
  font-weight: 600;
  font-size: 17px;
  text-transform: uppercase;
  letter-spacing: 2px;
  line-height: 1;
  text-align: center;
  text-decoration: none;
  box-shadow: none;
  transition: color .3s ease, background-color .3s ease, box-shadow .3s ease, transform .3s ease;
  white-space: nowrap;
  border: 0;
  outline: 0;
  z-index: 1;
}
.nav-tab-item::before {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: inherit;
  background: linear-gradient(135deg, rgba(255, 255, 255, 0.9), rgba(255, 255, 255, 0.55));
  opacity: 0;
  transition: opacity .3s ease;
  pointer-events: none;
}
.nav-tab-item:hover {
  color: #f14f87;
  transform: translateY(-2px);
}
.nav-tab-item:hover::before,
.nav-tab-item.active::before {
  opacity: .65;
}
.nav-tab-item.active {
  color: #ff5b8f;
  background: transparent;
  box-shadow: none;
  transform: translateY(-1px);
}
.nav-tab-item:focus-visible {
  color: #ff5b8f;
  background: transparent;
  box-shadow: 0 0 0 3px rgba(255, 91, 143, 0.18);
}
.cat-grid {
  display: grid;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  gap: 24px 34px;
  max-width: 1215px;
  margin: 0 auto;
  transition: opacity .28s ease, transform .28s ease;
  opacity: 0;
  transform: translateY(28px);
}
.cat-grid.is-switching {
  opacity: 0;
  transform: translateY(10px);
}
.cat-card {
  position: relative;
  border-radius: 8px;
  aspect-ratio: 216 / 291;
  overflow: hidden;
  cursor: pointer;
  background: #eee;
  box-shadow: 0 18px 44px rgba(23, 27, 32, 0.10);
  display: block;
  transform-style: preserve-3d;
  transition: transform .28s ease, box-shadow .28s ease;
}
.cat-card::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(120deg, transparent 18%, rgba(255, 255, 255, 0.24) 42%, transparent 66%);
  transform: translateX(-130%);
  transition: transform .7s ease;
  pointer-events: none;
}
.cat-grid.is-animating .cat-card {
  opacity: 0;
  transform: scale(0.92);
  animation: catCardZoomIn .45s ease-out forwards;
  will-change: transform, opacity;
}
.cat-image {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform .6s cubic-bezier(.22, 1, .36, 1), filter .4s ease;
  transform: scale(1);
}
.cat-card__flip,
.cat-card__face {
  display: block;
  width: 100%;
  height: 100%;
}
.cat-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(0, 0, 0, .34) 0%, rgba(0, 0, 0, 0) 48%);
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  align-items: center;
  padding: 0 12px 32px;
  opacity: 1;
  transform: none;
  transition: background .25s ease;
}
.cat-title {
  color: #fff;
  font-family: Georgia, "Times New Roman", serif;
  font-size: 17px;
  font-weight: 400;
  line-height: 1.05;
  margin: 0;
  max-width: 130px;
  text-align: center;
  text-shadow: 0 1px 3px rgba(0, 0, 0, .5);
}
.cat-link {
  color: #fff;
  text-decoration: none;
  font-size: 14px;
  font-weight: 600;
  display: flex;
  align-items: center;
  gap: 8px;
  opacity: .8;
}
.cat-card:hover {
  box-shadow: 0 26px 54px rgba(23, 27, 32, 0.18);
}
.cat-card:hover::after {
  transform: translateX(130%);
}
.cat-card:hover .cat-image {
  transform: scale(1.08);
  filter: saturate(1.08) contrast(1.02);
}
.cat-card:hover .cat-overlay {
  opacity: 1;
  transform: translateY(0);
}
.cat-card:hover .cat-link { color: #ff6b9d; }
.category-section.is-visible .category-section__heading,
.category-section.is-visible .nav-tabs-modern,
.category-section.is-visible .cat-grid {
  opacity: 1;
  transform: translateY(0) scale(1);
}
.cat-card.featured {
  background: linear-gradient(135deg, #fdfbfb 0%, #ebedee 100%);
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  border: 2px dashed #ddd;
}
.cat-card.featured .featured-text {
  color: #ff6b9d;
  font-size: 24px;
  font-weight: 800;
  padding: 20px;
  line-height: 1.25;
}
@media (max-width: 768px) {
  .category-section .rr-container-1350 {
    padding-left: 16px;
    padding-right: 16px;
  }
  .nav-tabs-modern {
    justify-content: flex-start;
    width: 100%;
    padding: 10px;
    border-radius: 24px;
    margin-bottom: 30px;
  }
  .nav-tabs-modern__indicator {
    border-radius: 18px;
  }
  .nav-tab-item {
    min-width: max-content;
    padding: 16px 20px;
    font-size: 14px;
    letter-spacing: 1.3px;
  }
  .cat-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 16px;
  }
}

.shop-cat-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(200px, 1fr));
  gap: 25px;
  max-width: 1300px;
  margin: 0 auto;
}
.shop-cat-card {
  position: relative;
  border-radius: 20px;
  aspect-ratio: 4 / 5;
  overflow: hidden;
  cursor: pointer;
  background: #eee;
  box-shadow: 0 10px 30px rgba(0, 0, 0, .05);
  display: block;
}

.shop-cat-card:hover .cat-image { transform: scale(1.15); }
.shop-cat-card:hover .cat-overlay {
  opacity: 1;
  transform: translateY(0);
}
.shop-cat-card:hover .cat-link { color: #ff6b9d; }
.shop-cat-card.featured {
  background: linear-gradient(135deg, #fdfbfb 0%, #ebedee 100%);
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  border: 2px dashed #ddd;
}
.shop-cat-card.featured .featured-text {
  color: #ff6b9d;
  font-size: 24px;
  font-weight: 800;
  padding: 20px;
  line-height: 1.25;
}
@media (max-width: 768px) {
  .shop-cat-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 16px;
  }
}

/* Home section interaction/animation helpers */
.js-why-business .js-why-card {
  will-change: transform, opacity;
}

.global-presence .map-marker__popup {
  opacity: 0;
  visibility: hidden;
  transform: translate(-50%, 0px) scale(0.96);
  transition: opacity .25s ease, transform .25s ease, visibility .25s ease;
  pointer-events: none;
}

.global-presence .map-marker:hover .map-marker__popup,
.global-presence .map-marker:focus-visible .map-marker__popup {
  opacity: 1;
  visibility: visible;
  transform: translate(-50%, 10px) scale(1);
}
.js-global-presence:hover .map-marker__popup {
  opacity: 1;
  visibility: visible;
  transform: translate(-50%, 10px) scale(1);
}
.global-presence .map-marker:hover::before,
.global-presence .map-marker:focus-visible::before {
  opacity: 1;
  transform: translateX(-50%) scaleY(1);
}
.js-global-presence:hover .map-marker::before {
  opacity: 1;
  transform: translateX(-50%) scaleY(1);
}

/* Home social reels strip */
.social-reels {
  position: relative;
  padding: 34px 0 34px;
  background:
    radial-gradient(circle at top left, rgba(238, 45, 122, 0.08), transparent 24%),
    linear-gradient(180deg, #fff8fb 0%, #fff2f7 100%);
  overflow: hidden;
}
.social-reels::before {
  content: "";
  position: absolute;
  top: 0;
  left: 50%;
  width: min(1220px, calc(100% - 48px));
  height: 1px;
  transform: translateX(-50%);
  background: linear-gradient(90deg, transparent, rgba(238, 45, 122, 0.24), transparent);
}
.social-reels__intro {
  max-width: 860px;
  margin: 0 auto 24px;
  padding: 8px 18px 6px;
  text-align: center;
}
.social-reels__eyebrow {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: auto;
  padding: 0;
  color: #EE2D7A;
  font-family: var(--font_Lato);
  font-size: .78rem;
  font-weight: 800;
  letter-spacing: .14em;
  text-transform: uppercase;
}
.social-reels__title {
  margin: 10px 0 10px;
  color: #171113;
  font-family: var(--font_Playfair);
  font-size: clamp(2.2rem, 5vw, 4.25rem);
  font-weight: 600;
  line-height: 1.04;
  text-wrap: balance;
}
.social-reels__lead {
  margin: 0;
  color: #4b2b39;
  font-family: var(--font_Playfair);
  font-size: clamp(1.14rem, 2vw, 1.55rem);
  font-style: italic;
  font-weight: 600;
  line-height: 1.5;
}
.social-reels__tagline {
  max-width: 100%;
  margin: 0;
  padding: 0;
  text-align: center;
  color: #6c4153;
  font-family: var(--font_Lato);
  font-size: 1rem;
  font-weight: 500;
  line-height: 1.8;
}
.social-reels__viewport {
  position: relative;
  padding: 4px 0 10px;
}
.social-reels__outro {
  max-width: 920px;
  margin: 12px auto 0;
  padding: 0 24px 6px;
  text-align: center;
  position: relative;
}
.social-reels__outro::before {
  content: "";
  display: block;
  width: min(180px, 28vw);
  height: 1px;
  margin: 0 auto 14px;
  background: linear-gradient(90deg, transparent, rgba(238, 45, 122, 0.35), transparent);
}
.social-reels__track {
  position: relative;
  overflow: hidden;
  max-width: 1420px;
  margin: 0 auto;
  padding: 14px 10px 20px;
  cursor: default;
  user-select: none;
  touch-action: pan-y pinch-zoom;
}
.social-reels__rail {
  display: flex;
  gap: 18px;
  width: max-content;
  will-change: transform;
}
.social-reels__card {
  position: relative;
  flex: 0 0 260px;
  aspect-ratio: 9 / 16;
  border-radius: 26px;
  overflow: hidden;
  scroll-snap-align: start;
  background:
    radial-gradient(circle at top, rgba(255, 255, 255, 0.45), transparent 42%),
    linear-gradient(180deg, #f4e8ee 0%, #ead8e1 100%);
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.16);
  transition: transform .28s ease, box-shadow .28s ease;
}
.social-reels__card::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(120deg, rgba(255, 255, 255, 0) 30%, rgba(255, 255, 255, 0.4) 45%, rgba(255, 255, 255, 0) 60%);
  animation: socialReelsPlaceholder 1.6s ease-in-out infinite;
  pointer-events: none;
  z-index: 0;
}
.social-reels__card.is-ready::before {
  opacity: 0;
  animation: none;
}
.social-reels__card::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(9, 8, 12, 0.04) 0%, rgba(9, 8, 12, 0.28) 100%);
  opacity: .72;
  pointer-events: none;
  transition: opacity .25s ease;
}
.social-reels__card:hover {
  transform: translateY(-4px);
  box-shadow: 0 14px 32px rgba(0, 0, 0, 0.2);
}
.social-reels__card:hover::after,
.social-reels__card.is-active::after {
  opacity: .24;
}
.social-reels__image {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}
.social-reels__video,
.social-reels__iframe {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  border: 0;
  background: transparent;
  pointer-events: auto;
  opacity: 0;
  transition: opacity .25s ease;
  position: relative;
  z-index: 1;
}
.social-reels__card.is-ready .social-reels__video,
.social-reels__card.is-ready .social-reels__iframe {
  opacity: 1;
}
.social-reels__badge {
  position: absolute;
  right: 12px;
  bottom: 12px;
  width: 34px;
  height: 34px;
  border-radius: 50%;
  background: rgba(0, 0, 0, 0.55);
  color: #fff;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 16px;
  backdrop-filter: blur(3px);
  z-index: 3;
  pointer-events: auto;
}
@keyframes socialReelsPlaceholder {
  0% {
    transform: translateX(-100%);
  }
  100% {
    transform: translateX(100%);
  }
}
.social-reels__volume-btn {
  position: absolute;
  left: 12px;
  bottom: 12px;
  width: 34px;
  height: 34px;
  border: 0;
  border-radius: 50%;
  background: rgba(0, 0, 0, 0.55);
  color: #fff;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 14px;
  cursor: pointer;
  backdrop-filter: blur(3px);
  z-index: 4;
  opacity: 0;
  transition: background .2s ease, transform .2s ease, opacity .2s ease;
  pointer-events: auto;
}
.social-reels__card:hover .social-reels__volume-btn,
.social-reels__card:focus-within .social-reels__volume-btn,
.social-reels__card.is-active .social-reels__volume-btn {
  opacity: 1;
}
.social-reels__volume-btn:hover,
.social-reels__volume-btn:focus-visible {
  background: rgba(238, 45, 122, 0.85);
  color: #fff;
  transform: scale(1.04);
}
.social-reels__volume-btn:focus-visible {
  outline: 2px solid #fff;
  outline-offset: 2px;
}
.social-reels__volume-btn.is-unmuted {
  background: rgba(238, 45, 122, 0.9);
}
.social-reels__badge--link:hover {
  background: rgba(238, 45, 122, 0.85);
  color: #fff;
}
.social-reels__modal {
  position: fixed;
  inset: 0;
  z-index: 12000;
  display: none;
  align-items: center;
  justify-content: center;
  padding: 24px;
  opacity: 0;
}
.social-reels__modal.is-open {
  display: flex;
  opacity: 1;
}
.social-reels__modal-backdrop {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(circle at top, rgba(238, 45, 122, 0.12), transparent 34%),
    linear-gradient(180deg, rgba(255, 249, 252, 0.92), rgba(255, 244, 248, 0.9));
  backdrop-filter: blur(14px);
  animation: socialReelsBackdropIn .28s ease forwards;
}
.social-reels__modal-dialog {
  position: relative;
  z-index: 1;
  width: min(450px, 92vw);
  aspect-ratio: 9 / 16;
  max-height: 88vh;
  border-radius: 32px;
  overflow: hidden;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.98), rgba(255, 246, 250, 0.96)),
    #ffffff;
  border: 1px solid rgba(238, 45, 122, 0.14);
  box-shadow:
    0 28px 80px rgba(75, 34, 52, 0.22),
    0 0 0 1px rgba(255, 255, 255, 0.72) inset;
  display: flex;
  align-items: center;
  justify-content: center;
  transform: translateY(20px) scale(.94);
  opacity: 0;
  animation: socialReelsDialogIn .34s cubic-bezier(.22, 1, .36, 1) forwards;
}
.social-reels__modal-dialog::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(145deg, rgba(255, 255, 255, 0.82), transparent 38%, transparent 70%, rgba(238, 45, 122, 0.08));
  pointer-events: none;
  z-index: 1;
}
.social-reels__modal-shell {
  position: relative;
  width: 100%;
  height: 100%;
  display: flex;
  flex-direction: column;
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.18), rgba(255, 255, 255, 0));
}
.social-reels__modal-bar {
  position: absolute;
  top: 14px;
  left: 14px;
  right: 14px;
  z-index: 2;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  pointer-events: none;
}
.social-reels__modal-pill,
.social-reels__modal-meta {
  display: inline-flex;
  align-items: center;
  min-height: 34px;
  padding: 8px 14px;
  border-radius: 999px;
  border: 1px solid rgba(238, 45, 122, 0.14);
  background: rgba(255, 255, 255, 0.74);
  color: #5f2742;
  backdrop-filter: blur(10px);
  box-shadow: 0 10px 24px rgba(85, 40, 60, 0.12);
}
.social-reels__modal-pill {
  font-family: var(--font_Lato);
  font-size: .78rem;
  font-weight: 800;
  letter-spacing: .08em;
  text-transform: uppercase;
  color: #fff8fb;
  background: linear-gradient(135deg, rgba(238, 45, 122, 0.88), rgba(184, 24, 89, 0.84));
}
.social-reels__modal-meta {
  font-family: var(--font_Lato);
  font-size: .76rem;
  font-weight: 700;
  letter-spacing: .04em;
  color: #6e3951;
}
.social-reels__modal-video {
  position: relative;
  z-index: 0;
  width: 100%;
  height: 100%;
  display: block;
  background: #000;
  object-fit: cover;
}
.social-reels__modal-close {
  position: fixed;
  top: 20px;
  right: 20px;
  width: 54px;
  height: 54px;
  border-radius: 50%;
  border: 1px solid rgba(238, 45, 122, 0.18);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: rgba(255, 255, 255, 0.78);
  color: #7b244a;
  font-size: 32px;
  line-height: 1;
  z-index: 3;
  backdrop-filter: blur(10px);
  box-shadow: 0 10px 28px rgba(92, 47, 67, 0.16);
  transition: background .2s ease, transform .2s ease, border-color .2s ease;
}
.social-reels__modal-close:hover {
  background: rgba(238, 45, 122, 0.88);
  color: #fff;
  border-color: rgba(238, 45, 122, 0.24);
  transform: scale(1.04);
}
@keyframes socialReelsBackdropIn {
  from {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}
@keyframes socialReelsDialogIn {
  from {
    opacity: 0;
    transform: translateY(20px) scale(.94);
  }
  to {
    opacity: 1;
    transform: translateY(0) scale(1);
  }
}
@media (max-width: 767px) {
  .social-reels {
    padding: 26px 0 26px;
  }
  .social-reels__intro {
    margin-bottom: 18px;
    padding: 2px 14px 0;
  }
  .social-reels__title {
    margin-top: 16px;
  }
  .social-reels__lead {
    font-size: 1rem;
  }
  .social-reels__outro {
    margin-top: 14px;
    padding: 0 16px 4px;
  }
  .social-reels__tagline {
    font-size: .92rem;
    line-height: 1.7;
  }
  .social-reels__card {
    flex-basis: 58vw;
    border-radius: 20px;
  }
  .social-reels__modal-bar {
    top: 12px;
    left: 12px;
    right: 12px;
    gap: 8px;
  }
  .social-reels__modal-pill,
  .social-reels__modal-meta {
    min-height: 30px;
    padding: 7px 12px;
    font-size: .68rem;
  }
}

@media (min-width: 768px) and (max-width: 1199px) {
  .social-reels__track {
    max-width: 1100px;
  }
  .social-reels__card {
    flex-basis: 220px;
  }
}

/* Shop top showcase redesign */
.shop-showcase {
  background: #f4f4f6;
}
.shop-showcase__head {
  max-width: 1160px;
  margin: 0 auto 36px;
}
.shop-showcase__title {
  color: #ee4f8a;
  font-size: clamp(24px, 3.8vw, 40px);
  font-weight: 800;
  margin-bottom: 16px;
  font-family: var(--font_rufina);
}
.shop-showcase__divider {
  width: min(700px, 86%);
  height: 2px;
  margin: 0 auto 26px;
  background: linear-gradient(90deg, rgba(238,79,138,0), rgba(238,79,138,.45), rgba(238,79,138,0));
}
.shop-showcase__desc {
  font-size: 17px;
  line-height: 1.75;
  color: #4a4a4a;
  margin: 0 auto 26px;
  max-width: 1120px;
}
.shop-showcase__desc strong {
  color: #ee4f8a;
  font-weight: 800;
}
.shop-showcase__subhead {
  color: #ee4f8a;
  font-size: clamp(18px, 2.5vw, 24px);
  line-height: 1.25;
  font-weight: 800;
  font-family: var(--font_rufina);
}
.shop-showcase__grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 20px 24px;
}

.shop-showcase__card {
  aspect-ratio: 3 / 2.1;
  border-radius: 14px;
}
.shop-showcase__card .cat-overlay {
  opacity: 1;
  transform: translateY(0);
  background: linear-gradient(to top, rgba(0,0,0,.38) 0%, rgba(0,0,0,.08) 48%, rgba(0,0,0,0) 78%);
}
.shop-showcase__card .cat-title {
  font-size: clamp(30px, 2.5vw, 52px);
  margin-bottom: 4px;
}
.shop-showcase__card .cat-link {
  opacity: 0;
  transform: translateY(8px);
  transition: all .3s ease;
}
.shop-showcase__card:hover .cat-link {
  opacity: 1;
  transform: translateY(0);
}
@media (max-width: 991px) {
  .shop-showcase__grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}
@media (max-width: 767px) {
  .shop-showcase {
    padding-top: 72px;
  }
  .shop-showcase__desc {
    font-size: 15px;
    line-height: 1.7;
    text-align: justify;
  }
  .shop-showcase__grid {
    grid-template-columns: 1fr;
  }
}

/* Facials kit rich description spacing */
.product-tab-card__content-dsc h3 {
  margin: 0 0 16px;
  font-family: var(--font_Playfair);
  font-size: 42px;
  line-height: 1.2;
  font-weight: 700;
  color: #0c0c0c;
}
.product-tab-card__content-dsc h4 {
  margin: 20px 0 10px;
  font-family: var(--font_Playfair);
  font-size: 36px;
  line-height: 1.25;
  font-weight: 700;
  color: #0c0c0c;
}
.product-tab-card__content-dsc p {
  margin: 0 0 14px;
  font-size: 16px;
  line-height: 1.8;
  color: #5b5b5b;
}
.product-tab-card__content-dsc p em,
.product-tab-card__content-dsc p strong {
  color: #ee2d7a;
}
.product-tab-card__content-dsc ul {
  margin: 10px 0 18px;
  padding-left: 24px;
}
.product-tab-card__content-dsc li {
  margin: 0 0 10px;
  line-height: 1.75;
  color: #2d2d2d;
}
@media (max-width: 767px) {
  .product-tab-card__content-dsc h3 { font-size: 32px; }
  .product-tab-card__content-dsc h4 { font-size: 28px; }
}

.blog-details-wrapper-items-content .cms-richtext p{
  word-spacing: 4px;
  text-align: justify;
}


/* ======Responsive ======= */

/* Mobile Offcanvas Menu */
.moc-offcanvas {
  display: none;
}

@media (max-width: 1279.98px) {
  .side-info {
    left: 0 !important;
    right: auto !important;
    width: min(85vw, 320px) !important;
    transform: translateX(-100%) !important;
    box-shadow: none !important;
  }

  .side-info.info-open {
    transform: translateX(0) !important;
  }

  .side-info-content {
    background: #fff !important;
    padding: 0 !important;
  }

  .moc-offcanvas {
    display: block !important;
    height: 100%;
  }

  .moc-offcanvas .moc-panel {
    width: 100%;
    height: 100vh;
    background: #fff;
    display: flex;
    flex-direction: column;
  }

  .side-info .offset-header,
  .side-info .offset-widget-box {
    display: none !important;
  }

  .moc-offcanvas .moc-topbar {
    height: 56px;
    border-bottom: 1px solid #f0f0f0;
    display: grid;
    grid-template-columns: 80px 1fr 44px;
    align-items: center;
    padding: 0 8px 0 10px;
    flex-shrink: 0;
  }

  .moc-back,
  .moc-close {
    height: 40px;
    border: 0;
    background: transparent;
    color: #1e1e1e;
    font-size: 14px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
  }

  .moc-back {
    justify-content: flex-start;
    gap: 5px;
    visibility: hidden;
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.2s ease;
  }

  .moc-back.is-visible {
    visibility: visible;
    opacity: 1;
    pointer-events: auto;
  }

  .moc-back__icon {
    font-size: 16px;
    line-height: 1;
  }

  .moc-title {
    text-align: center;
    font-size: 15px;
    font-weight: 600;
    color: #111;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
    padding: 0 6px;
  }

  .moc-close {
    font-size: 24px;
    line-height: 1;
  }

  .moc-track-wrap {
    overflow: hidden;
    flex: 1;
    min-height: 0;
  }

  .moc-track {
    width: 200%;
    height: 100%;
    display: flex;
    transform: translateX(0);
    transition: transform 0.3s ease;
  }

  .moc-track.is-submenu {
    transform: translateX(-50%);
  }

  .moc-menu-panel {
    width: 50%;
    min-width: 50%;
    height: 100%;
    overflow-y: auto;
    -webkit-overflow-scrolling: touch;
    background: #fff;
  }

  .moc-list {
    list-style: none;
    margin: 0;
    padding: 0;
  }

  .moc-link {
    width: 100%;
    height: 52px;
    border: 0;
    border-bottom: 1px solid #f0f0f0;
    background: #fff;
    color: #1c1c1c;
    font-size: 15px;
    line-height: 52px;
    text-align: left;
    padding: 0 16px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    text-decoration: none;
  }

  .moc-link:focus-visible {
    outline: 2px solid #111;
    outline-offset: -2px;
  }

  .moc-chevron {
    font-size: 20px;
    line-height: 1;
    color: #888;
  }

  .moc-subhead {
    font-size: 11px;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    color: #8a8a8a;
    padding: 14px 16px 8px;
    border-bottom: 1px solid #f0f0f0;
  }

  .moc-cta-item {
    padding: 14px 16px;
    border-bottom: 1px solid #f0f0f0;
  }

  .moc-cta-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 100%;
    min-height: 44px;
    background: #ee2d7a;
    color: #fff;
    font-size: 14px;
    font-weight: 600;
    text-decoration: none;
    border-radius: 0;
  }

  .moc-cta-btn:hover,
  .moc-cta-btn:focus-visible {
    color: #fff;
  }

  .header-get-touch-btn {
    display: none !important;
  }
}

/* Home get-started section */
.gs-process {
  --gs-blush: #fbd6e6;
  --gs-rose: #f48ab4;
  --gs-deep: #EE2D7A;
  --gs-deep-strong: #b81859;
  --gs-cream: #fff4f8;
  --gs-muted: #8f3a5d;
  --gs-shadow: 0 12px 42px rgba(238, 45, 122, 0.14);
  --gs-radius: 22px;
  position: relative;
  padding: 110px 32px;
  overflow: hidden;
  background: linear-gradient(180deg, #fff9fc 0%, var(--gs-cream) 100%);
}

.gs-process::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse 80% 55% at 10% 15%, rgba(238, 45, 122, 0.16) 0%, transparent 60%),
    radial-gradient(ellipse 60% 50% at 90% 80%, rgba(244, 138, 180, 0.22) 0%, transparent 55%),
    radial-gradient(ellipse 50% 40% at 50% 50%, rgba(255, 244, 248, 0.92) 0%, transparent 70%);
  z-index: 0;
}

.gs-process .petal {
  position: absolute;
  border-radius: 50% 10% 50% 10%;
  opacity: 0;
  animation: gs-float-petal 16s ease-in-out infinite;
  z-index: 0;
  filter: blur(1px);
}

.gs-process .petal:nth-child(1) {
  width: 240px;
  height: 240px;
  top: -60px;
  right: 6%;
  background: rgba(238, 45, 122, 0.18);
  animation-delay: 0.3s;
}

.gs-process .petal:nth-child(2) {
  width: 170px;
  height: 170px;
  bottom: 40px;
  left: 3%;
  background: rgba(244, 138, 180, 0.18);
  animation-delay: 2s;
  animation-duration: 20s;
}

.gs-process .petal:nth-child(3) {
  width: 110px;
  height: 110px;
  top: 40%;
  right: 2%;
  background: rgba(184, 24, 89, 0.1);
  animation-delay: 4s;
  animation-duration: 22s;
}

.gs-process .petal:nth-child(4) {
  width: 80px;
  height: 80px;
  top: 55%;
  left: 48%;
  background: rgba(251, 214, 230, 0.42);
  animation-delay: 6s;
  animation-duration: 18s;
}

.gs-inner {
  position: relative;
  z-index: 1;
  max-width: 1280px;
  width: 100%;
  margin: 0 auto;
}

.gs-title {
  margin: 0;
  text-align: center;
  font-family: var(--font_Playfair);
  font-size: clamp(2.2rem, 4.5vw, 4.25rem);
  font-weight: 600;
  line-height: 1.08;
  letter-spacing: 0.01em;
  color: #EE2D7A;
  opacity: 0;
  transform: translateY(36px);
  animation: gs-fade-up 0.9s cubic-bezier(.22, 1, .36, 1) 0.2s forwards;
}

.gs-title em {
  font-style: italic;
  font-weight: 600;
}

.gs-subtitle {
  max-width: 760px;
  margin: 18px auto 52px;
  text-align: center;
  font-family: var(--font_Lato);
  font-size: 1.08rem;
  font-weight: 400;
  line-height: 1.75;
  color: #6f4054;
  opacity: 0;
  transform: translateY(24px);
  animation: gs-fade-up 0.9s cubic-bezier(.22, 1, .36, 1) 0.42s forwards;
}

.gs-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 20px;
}

.gs-card {
  position: relative;
  min-height: 340px;
  border-radius: var(--gs-radius);
  perspective: 1200px;
  cursor: default;
  opacity: 0;
  transform: translateY(50px) scale(0.96);
  transition: transform 0.4s ease, box-shadow 0.4s ease;
}

.gs-process__card-inner {
  position: relative;
  width: 100%;
  height: 100%;
  min-height: inherit;
  border-radius: var(--gs-radius);
  box-shadow: var(--gs-shadow);
  transform-style: preserve-3d;
  transition: transform 0.7s cubic-bezier(.22, 1, .36, 1), box-shadow 0.4s ease;
}

.gs-process__card-face {
  position: absolute;
  inset: 0;
  border: 1px solid rgba(255, 255, 255, 0.92);
  border-radius: var(--gs-radius);
  overflow: hidden;
  backface-visibility: hidden;
}

.gs-process__card-front {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 16px;
  padding: 30px 22px 26px;
  background: rgba(255, 255, 255, 0.82);
  backdrop-filter: blur(20px) saturate(1.5);
  transform: rotateY(0deg);
}

.gs-process__card-front > .gs-card-title,
.gs-process__card-front > .gs-card-text,
.gs-process__card-front > .gs-card-link {
  width: 100%;
}

.gs-process__card-front > .gs-card-title,
.gs-process__card-front > .gs-card-text {
  text-align: left;
}

.gs-process__card-back {
  display: flex;
  align-items: stretch;
  justify-content: center;
  background: #fff;
  transform: rotateY(180deg);
}

.gs-process__card-back::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(238, 45, 122, 0.08), rgba(0, 0, 0, 0.08));
  pointer-events: none;
}

.gs-process__card-back img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.gs-card::before {
  content: "";
  position: absolute;
  top: 0;
  left: 24px;
  right: 24px;
  height: 3px;
  border-radius: 0 0 4px 4px;
  background: linear-gradient(90deg, var(--gs-blush), var(--gs-deep), var(--gs-blush));
  opacity: 0;
  transition: opacity 0.3s ease;
  z-index: 3;
}

.gs-card::after {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: var(--gs-radius);
  background: linear-gradient(135deg, rgba(255, 255, 255, 0.28) 0%, transparent 55%);
  pointer-events: none;
  z-index: 2;
}

.gs-card:hover {
  transform: translateY(-8px) scale(1.02);
}

.gs-card:hover .gs-process__card-inner {
  box-shadow: 0 22px 58px rgba(238, 45, 122, 0.22);
  transform: rotateY(180deg);
}

.gs-card:hover::before {
  opacity: 1;
}

.gs-card:nth-child(1) {
  animation: gs-card-in 0.8s cubic-bezier(.22, 1, .36, 1) 0.65s forwards;
}

.gs-card:nth-child(2) {
  animation: gs-card-in 0.8s cubic-bezier(.22, 1, .36, 1) 0.85s forwards;
}

.gs-card:nth-child(3) {
  animation: gs-card-in 0.8s cubic-bezier(.22, 1, .36, 1) 1.05s forwards;
}

.gs-card:nth-child(4) {
  animation: gs-card-in 0.8s cubic-bezier(.22, 1, .36, 1) 1.25s forwards;
}

.gs-icon {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 62px;
  height: 62px;
  flex-shrink: 0;
  border-radius: 18px;
  background: linear-gradient(145deg, var(--gs-blush), var(--gs-rose));
  box-shadow: 0 8px 22px rgba(238, 45, 122, 0.22);
  font-size: 1.75rem;
  transition: transform 0.3s ease;
}

.gs-card:hover .gs-icon {
  transform: scale(1.08);
}

.gs-process__icon-glyph {
  font-size: 0;
  line-height: 1;
}

.gs-process__icon-glyph::before {
  font-size: 1.75rem;
}

.gs-grid > .gs-card:nth-child(1) .gs-process__icon-glyph::before {
  content: "\1F3A8";
}

.gs-grid > .gs-card:nth-child(2) .gs-process__icon-glyph::before {
  content: "\1F9F4";
}

.gs-grid > .gs-card:nth-child(3) .gs-process__icon-glyph::before {
  content: "\2728";
}

.gs-grid > .gs-card:nth-child(4) .gs-process__icon-glyph::before {
  content: "\1F4E6";
}

.gs-step {
  position: absolute;
  top: -7px;
  right: -7px;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 22px;
  height: 22px;
  border-radius: 50%;
  background: var(--gs-deep);
  color: #fff;
  font-family: var(--font_Lato);
  font-size: 0.6rem;
  font-weight: 700;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.18);
}

.gs-card-title {
  margin: 0;
  font-family: var(--font_Playfair);
  font-size: 1.38rem;
  font-weight: 600;
  line-height: 1.3;
  color: var(--gs-deep);
  letter-spacing: 0.01em;
}

.gs-card-text {
  margin: 0;
  flex: 1;
  font-family: var(--font_Lato);
  font-size: 0.96rem;
  line-height: 1.8;
  font-weight: 400;
  color: var(--gs-muted);
}

.gs-card-link {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-family: var(--font_Lato);
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  text-decoration: none;
  color: var(--gs-deep);
  opacity: 0;
  transform: translateX(-6px);
  transition: opacity 0.25s ease, transform 0.25s ease, gap 0.25s ease, color 0.25s ease;
}

.gs-card-link::after {
  content: "→";
}

.gs-card:hover .gs-card-link {
  opacity: 1;
  transform: translateX(0);
  gap: 10px;
  color: var(--gs-deep-strong);
}

.gs-dots {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  margin: 36px 0 0;
  opacity: 0;
  animation: gs-fade-up 0.6s ease 1.5s forwards;
}

.gs-dots span {
  display: block;
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--gs-rose);
  opacity: 0.45;
}

.gs-dots span:nth-child(3) {
  width: 9px;
  height: 9px;
  opacity: 0.85;
}

.gs-badge {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  margin-top: 10px;
  opacity: 0;
  animation: gs-fade-up 0.6s ease 1.65s forwards;
}

.gs-badge .label {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 4px 14px;
  border: 1px solid var(--gs-rose);
  border-radius: 100px;
  font-family: var(--font_Lato);
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--gs-muted);
}

.gs-cta {
  margin-top: 40px;
  text-align: center;
  opacity: 0;
  animation: gs-fade-up 0.7s ease 1.8s forwards;
}

.gs-btn {
  position: relative;
  display: inline-block;
  padding: 15px 46px;
  border: 0;
  border-radius: 999px;
  overflow: hidden;
  background: linear-gradient(135deg, var(--gs-deep) 0%, var(--gs-deep-strong) 100%);
  box-shadow: 0 10px 30px rgba(238, 45, 122, 0.34);
  color: #fff;
  font-family: var(--font_Lato);
  font-size: 0.88rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  text-decoration: none;
  transition: transform 0.25s ease, box-shadow 0.25s ease;
}

.gs-btn::before {
  content: "";
  position: absolute;
  top: 0;
  left: -100%;
  width: 60%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.18), transparent);
  transition: left 0.5s ease;
}

.gs-btn:hover {
  transform: translateY(-3px);
  box-shadow: 0 16px 40px rgba(238, 45, 122, 0.42);
  color: #fff;
}

.gs-btn:hover::before {
  left: 150%;
}

.gs-btn .dot {
  display: inline-block;
  width: 7px;
  height: 7px;
  margin-left: 10px;
  border-radius: 50%;
  vertical-align: middle;
  background: rgba(255, 255, 255, 0.55);
  animation: gs-pulse 1.8s ease infinite;
}

@keyframes gs-float-petal {
  0% {
    opacity: 0;
    transform: translateY(30px) rotate(0deg) scale(0.8);
  }
  15% {
    opacity: 1;
  }
  50% {
    transform: translateY(-22px) rotate(14deg) scale(1);
  }
  85% {
    opacity: 1;
  }
  100% {
    opacity: 0;
    transform: translateY(30px) rotate(-8deg) scale(0.85);
  }
}

@keyframes gs-card-in {
  to {
    opacity: 1;
    transform: translateY(0) scale(1);
  }
}

@keyframes gs-fade-up {
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes gs-pulse {
  0%,
  100% {
    opacity: 0.5;
    transform: scale(1);
  }
  50% {
    opacity: 1;
    transform: scale(1.6);
  }
}

@keyframes catCardZoomIn {
  0% {
    opacity: 0;
    transform: scale(0.92);
  }
  100% {
    opacity: 1;
    transform: scale(1);
  }
}

@media (max-width: 991px) {
  .gs-process {
    padding: 90px 20px;
  }

  .gs-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 575px) {
  .gs-process {
    padding: 80px 16px;
  }

  .gs-grid {
    grid-template-columns: 1fr;
  }

  .gs-title {
    font-size: 2.4rem;
  }

  .gs-subtitle {
    margin-bottom: 36px;
    font-size: 1rem;
  }

  .gs-card {
    min-height: 310px;
  }

  .gs-process__card-front {
    padding: 26px 18px 22px;
  }
}

/* Testimonial Spotlight */
.testimonial3--spotlight {
  position: relative;
  overflow: hidden;
  background:
    radial-gradient(circle at 18% 18%, rgba(244, 123, 169, 0.08), transparent 24%),
    radial-gradient(circle at 88% 92%, rgba(255, 202, 87, 0.06), transparent 22%),
    linear-gradient(180deg, #fff5f7 0%, #fdf0f4 100%);
}

.testimonial3--spotlight .section-heading {
  text-align: center;
  margin-bottom: clamp(20px, 2.6vw, 34px);
}

.testimonial3--spotlight .section-heading__subtitle {
  display: inline-block;
  margin-bottom: 0.45rem;
  color: var(--primary-two);
  font-family: var(--font_Lato);
  font-size: clamp(12px, 1vw, 14px);
  font-weight: 600;
  letter-spacing: 0.18em;
  text-transform: uppercase;
}

.testimonial3--spotlight .section-heading__title {
  color: #122045;
  font-family: var(--font_Playfair);
  font-size: clamp(28px, 3vw, 42px);
  font-weight: 700;
  letter-spacing: 0.03em;
}

.testimonial3-spotlight {
  display: grid;
  grid-template-columns: minmax(250px, 340px) minmax(0, 1fr);
  gap: clamp(22px, 3vw, 48px);
  align-items: center;
}

.testimonial3--spotlight .testimonial3-items {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 270px;
}

.testimonial3--spotlight .testimonial3-items__circle {
  position: absolute;
  top: 50%;
  left: 0;
  z-index: 0;
  width: clamp(220px, 24vw, 310px);
  height: clamp(220px, 24vw, 310px);
  border: 4px solid #e54d83;
  border-radius: 50%;
  transform: translateY(-50%);
}

.testimonial3--spotlight .testimonial3-items__thumb {
  position: relative;
  z-index: 1;
}

.testimonial3--spotlight .testimonial3-items__thumb img {
  width: clamp(180px, 20vw, 250px);
  height: clamp(180px, 20vw, 250px);
  border-radius: 50%;
  object-fit: cover;
  background: #4b85be;
  box-shadow: 0 20px 42px rgba(210, 79, 126, 0.1);
}

.testimonial3--spotlight .testimonial3-items__icon {
  position: absolute;
  top: 50%;
  left: clamp(10px, 2vw, 30px);
  z-index: 2;
  width: 46px;
  height: 46px;
  border-radius: 50%;
  background: #d94779;
  color: var(--white);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 18px;
  transform: translateY(-50%);
  box-shadow: 0 10px 20px rgba(238, 45, 122, 0.18);
}

.testimonial3-spotlight__content {
  min-width: 0;
}

.testimonial3--spotlight .testimonial3-slider {
  overflow: hidden;
}

.testimonial3--spotlight .testimonial3-card {
  background: transparent;
}

.testimonial3--spotlight .testimonial3-card__content-star {
  display: flex;
  gap: 0.35rem;
  margin-bottom: 0.7rem;
}

.testimonial3--spotlight .testimonial3-card__content-star i {
  color: #f6a400;
  font-size: 16px;
}

.testimonial3--spotlight .testimonial3-card__content-star .testimonial3-card__star--muted {
  color: rgba(246, 164, 0, 0.28);
}

.testimonial3--spotlight .testimonial3-card__content-title {
  margin: 0 0 1rem;
  width: auto;
  max-width: 760px;
  color: #242331;
  font-family: var(--font_Playfair);
  font-size: clamp(20px, 2vw, 26px);
  font-style: italic;
  font-weight: 500;
  line-height: 1.45;
}

.testimonial3--spotlight .testimonial3-card__content-subtitle {
  margin-bottom: 0.2rem;
  color: #101221;
  font-family: var(--font_Lato);
  font-size: clamp(18px, 1.5vw, 22px);
  font-weight: 700;
  line-height: 1.15;
}

.testimonial3--spotlight .testimonial3-card__content-text {
  color: #71707d;
  font-family: var(--font_Lato);
  font-size: 15px;
  line-height: 1.35;
}

.testimonial3-badges {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin-top: 1rem;
}

.testimonial3-badge {
  min-width: 154px;
  padding: 9px 14px;
  border: 1px solid #f3bfd1;
  border-radius: 14px;
  background: rgba(255, 255, 255, 0.9);
  box-shadow: 0 10px 20px rgba(233, 78, 133, 0.05);
}

.testimonial3-badge__platform {
  color: #9b99a6;
  font-family: var(--font_Lato);
  font-size: 10px;
  font-weight: 800;
  letter-spacing: 0.16em;
}

.testimonial3-badge__score {
  margin-top: 3px;
  font-family: var(--font_Lato);
  font-size: 14px;
  font-weight: 800;
  line-height: 1.1;
}

.testimonial3-badge__stars {
  margin-top: 2px;
  font-size: 12px;
  line-height: 1;
}

.testimonial3-badge__meta {
  margin-top: 3px;
  color: #a19eab;
  font-family: var(--font_Lato);
  font-size: 10px;
}

.testimonial3-badge--trustpilot .testimonial3-badge__score,
.testimonial3-badge--trustpilot .testimonial3-badge__stars {
  color: #00b67a;
}

.testimonial3-badge--alibaba .testimonial3-badge__score,
.testimonial3-badge--alibaba .testimonial3-badge__stars {
  color: #ff6a00;
}

.testimonial3-actions {
  margin-top: clamp(18px, 2.5vw, 28px);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  flex-wrap: wrap;
}

.testimonial3--spotlight .testimonial3-controls {
  position: static;
  display: flex;
  gap: 18px;
  z-index: auto;
}

.testimonial3--spotlight .testimonial3-controls__arrowLeft,
.testimonial3--spotlight .testimonial3-controls__arrowRight {
  width: auto;
  height: 42px;
  padding: 0 22px;
  border: 1.5px solid var(--primary-two);
  border-radius: 999px;
  background: transparent;
  color: var(--primary-two);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.55rem;
  font-family: var(--font_Playfair);
  font-size: 14px;
  font-weight: 700;
  transition: all 0.25s ease;
}

.testimonial3--spotlight .testimonial3-controls__arrowRight {
  background: var(--primary-two);
  color: var(--white);
}

.testimonial3--spotlight .testimonial3-controls__arrowLeft:hover,
.testimonial3--spotlight .testimonial3-controls__arrowRight:hover {
  transform: translateY(-2px);
  box-shadow: 0 14px 28px rgba(238, 45, 122, 0.14);
}

.testimonial3-actions__link {
  display: inline-flex;
  align-items: center;
  gap: 0.45rem;
  padding: 0 28px;
  height: 44px;
  border-radius: 999px;
  background: #d94779;
  color: var(--white);
  font-family: var(--font_Lato);
  font-size: 14px;
  font-weight: 700;
  box-shadow: 0 14px 28px rgba(217, 71, 121, 0.18);
}

.testimonial3-actions__link:hover {
  color: var(--white);
  background: #c63c6c;
}

@media only screen and (max-width: 991px) {
  .testimonial3-spotlight {
    grid-template-columns: 1fr;
    gap: 1.5rem;
  }

  .testimonial3--spotlight .testimonial3-items {
    min-height: 230px;
  }

  .testimonial3--spotlight .testimonial3-items__circle {
    left: 50%;
    transform: translate(-50%, -50%);
  }

  .testimonial3--spotlight .testimonial3-items__icon {
    left: calc(50% - 118px);
  }

  .testimonial3--spotlight .testimonial3-card__content {
    text-align: center;
  }

  .testimonial3--spotlight .testimonial3-card__content-star,
  .testimonial3-badges,
  .testimonial3-actions,
  .testimonial3--spotlight .testimonial3-controls {
    justify-content: center;
  }
}

@media (max-width: 575px) {
  .testimonial3--spotlight .section-heading__subtitle {
    font-size: 16px;
  }

  .testimonial3--spotlight .testimonial3-items {
    min-height: 210px;
  }

  .testimonial3--spotlight .testimonial3-items__icon {
    left: calc(50% - 104px);
    width: 50px;
    height: 50px;
    font-size: 20px;
  }

  .testimonial3--spotlight .testimonial3-card__content-title {
    font-size: 18px;
    line-height: 1.4;
  }

  .testimonial3--spotlight .testimonial3-card__content-subtitle {
    font-size: 16px;
  }

  .testimonial3--spotlight .testimonial3-card__content-text {
    font-size: 14px;
  }

  .testimonial3--spotlight .testimonial3-controls {
    width: 100%;
    gap: 10px;
  }

  .testimonial3--spotlight .testimonial3-controls__arrowLeft,
  .testimonial3--spotlight .testimonial3-controls__arrowRight {
    flex: 1 1 auto;
    min-width: 0;
    height: 50px;
    padding: 0 16px;
    font-size: 14px;
  }

  .testimonial3-actions__link {
    width: 100%;
    height: 50px;
    justify-content: center;
  }
}

/* Home testimonial spotlight override */
.testimonial3--spotlight {
  position: relative;
  overflow: hidden;
  padding-top: clamp(72px, 7vw, 118px);
  padding-bottom: clamp(72px, 7vw, 118px);
  background:
    radial-gradient(circle at 14% 18%, rgba(233, 81, 135, 0.12), transparent 22%),
    radial-gradient(circle at 85% 82%, rgba(238, 129, 64, 0.12), transparent 18%),
    linear-gradient(90deg, rgba(255, 255, 255, 0.92) 0%, rgba(252, 241, 245, 0.98) 42%, rgba(255, 247, 244, 0.98) 100%);
}

.testimonial3--spotlight::before,
.testimonial3--spotlight::after {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
}

.testimonial3--spotlight::before {
  background:
    radial-gradient(circle at 10% 50%, rgba(255, 255, 255, 0.9), transparent 18%),
    radial-gradient(circle at 90% 78%, rgba(255, 212, 191, 0.45), transparent 14%);
  opacity: 0.9;
}

.testimonial3--spotlight::after {
  background: linear-gradient(180deg, rgba(232, 72, 136, 0.08), rgba(232, 72, 136, 0.08)) bottom / 100% 1px no-repeat;
}

.testimonial3--spotlight .section-heading,
.testimonial3-spotlight {
  position: relative;
  z-index: 1;
}

.testimonial3--spotlight .section-heading {
  margin-bottom: clamp(26px, 3vw, 46px);
}

.testimonial3--spotlight .section-heading__subtitle {
  margin-bottom: 0.9rem;
  color: #ec377d;
  font-size: clamp(12px, 0.95vw, 15px);
  font-weight: 700;
  letter-spacing: 0.34em;
}

.testimonial3--spotlight .section-heading__title {
  color: #122045;
  font-size: clamp(34px, 4.2vw, 58px);
  line-height: 1.04;
  letter-spacing: 0.01em;
}

.testimonial3-spotlight {
  display: grid;
  grid-template-columns: minmax(280px, 420px) minmax(0, 1fr);
  gap: clamp(28px, 4vw, 72px);
  align-items: center;
}

.testimonial3--spotlight .testimonial3-items {
  min-height: 420px;
}

.testimonial3--spotlight .testimonial3-items__circle {
  left: 50%;
  width: clamp(280px, 30vw, 392px);
  height: clamp(280px, 30vw, 392px);
  border: 5px solid #e54d83;
  transform: translate(-50%, -50%);
}

.testimonial3--spotlight .testimonial3-items__thumb {
  display: flex;
  align-items: center;
  justify-content: center;
  width: clamp(236px, 24vw, 314px);
  height: clamp(236px, 24vw, 314px);
  border-radius: 50%;
  background: #ffd4a6;
  overflow: hidden;
  box-shadow: 0 24px 60px rgba(189, 92, 128, 0.16);
}

.testimonial3--spotlight .testimonial3-items__thumb img {
  width: 100%;
  height: 100%;
  object-position: center top;
}

.testimonial3--spotlight .testimonial3-items__icon {
  left: clamp(12px, 7%, 56px);
  width: 58px;
  height: 58px;
  font-size: 24px;
  box-shadow: 0 16px 34px rgba(238, 45, 122, 0.24);
}

.testimonial3--spotlight .testimonial3-card__content-star {
  margin-bottom: 1.1rem;
}

.testimonial3--spotlight .testimonial3-card__content-star i {
  font-size: 20px;
}

.testimonial3--spotlight .testimonial3-card__content-title {
  max-width: 900px;
  margin-bottom: 1rem;
  font-size: clamp(26px, 3vw, 36px);
  line-height: 1.35;
}

.testimonial3--spotlight .testimonial3-card__content-subtitle {
  margin-bottom: 0.28rem;
  font-size: clamp(24px, 2.1vw, 32px);
}

.testimonial3--spotlight .testimonial3-card__content-text {
  margin-bottom: 0;
  font-size: 15px;
  line-height: 1.5;
}

.testimonial3-badges {
  gap: 18px;
  margin-top: 1.4rem;
}

.testimonial3-badge {
  min-width: 194px;
  padding: 16px 18px 14px;
  border-radius: 18px;
  background: rgba(255, 255, 255, 0.84);
  box-shadow: 0 18px 40px rgba(233, 78, 133, 0.06);
  backdrop-filter: blur(6px);
}

.testimonial3-badge__platform {
  font-size: 11px;
  letter-spacing: 0.18em;
}

.testimonial3-badge__score {
  margin-top: 8px;
  font-size: 17px;
}

.testimonial3-badge__stars {
  margin-top: 5px;
  min-height: 14px;
  font-size: 0;
  line-height: 1;
}

.testimonial3-badge__stars::before {
  display: inline-block;
  font-family: "Font Awesome 6 Pro";
  font-size: 13px;
  font-weight: 900;
  letter-spacing: 2px;
}

.testimonial3-badge--trustpilot .testimonial3-badge__stars::before {
  content: "\f005\f005\f005\f005\f005";
  color: #00b67a;
}

.testimonial3-badge--alibaba .testimonial3-badge__stars::before {
  content: "\f005\f005\f005\f005\f123";
  color: #ff6a00;
}

.testimonial3-badge__meta {
  margin-top: 7px;
  font-size: 13px;
}

.testimonial3-actions {
  margin-top: clamp(28px, 3.2vw, 40px);
  gap: 1.25rem;
}

.testimonial3--spotlight .testimonial3-controls {
  gap: 20px;
}

.testimonial3--spotlight .testimonial3-controls__arrowLeft,
.testimonial3--spotlight .testimonial3-controls__arrowRight {
  min-width: 148px;
  height: 54px;
  padding: 0 28px;
  border: 1.5px solid #ef4a86;
  color: #ef4a86;
  font-family: var(--font_Lato);
  font-size: 16px;
}

.testimonial3--spotlight .testimonial3-controls__arrowRight {
  background: #ef4a86;
  color: var(--white);
}

.testimonial3-actions__link {
  padding: 0 34px;
  height: 56px;
  font-size: 16px;
}

@media only screen and (max-width: 991px) {
  .testimonial3-spotlight {
    grid-template-columns: 1fr;
    gap: 2rem;
  }

  .testimonial3--spotlight .testimonial3-items {
    min-height: 320px;
  }

  .testimonial3--spotlight .testimonial3-items__icon {
    left: calc(50% - 148px);
  }
}

@media (max-width: 575px) {
  .testimonial3--spotlight {
    padding-top: 64px;
    padding-bottom: 64px;
  }

  .testimonial3--spotlight .section-heading__subtitle {
    font-size: 13px;
    letter-spacing: 0.28em;
  }

  .testimonial3--spotlight .testimonial3-items {
    min-height: 264px;
  }

  .testimonial3--spotlight .testimonial3-items__icon {
    left: calc(50% - 114px);
  }

  .testimonial3--spotlight .testimonial3-card__content-title {
    font-size: 22px;
  }

  .testimonial3--spotlight .testimonial3-card__content-subtitle {
    font-size: 18px;
  }

  .testimonial3--spotlight .testimonial3-controls__arrowLeft,
  .testimonial3--spotlight .testimonial3-controls__arrowRight {
    min-width: 0;
  }

  .testimonial3-actions__link {
    height: 52px;
  }
}

.reviews-section {
  background: #FAF8F5;
  padding: 64px 32px;
  font-family: 'Jost', sans-serif;
}

.rv-label {
  text-align: center;
  font-size: 22px;
  font-weight: 500;
  letter-spacing: 3px;
  color: #D4437A;
  text-transform: uppercase;
  margin-bottom: 10px;
}

.rv-heading {
  text-align: center;
  font-family: 'Cormorant Garamond', serif;
  font-size: 58px;
  font-weight: 700;
  color: #1a1a1a;
  margin-bottom: 8px;
  line-height: 1.2;
}

.rv-tab img{
  width: 16px;
  height: 16px;
}

.rv-sub {
  text-align: center;
  font-size: 28px;
  color: #999;
  font-weight: 300;
  margin-bottom: 40px;
}

.rv-tabs {
  display: flex;
  justify-content: center;
  gap: 10px;
  margin-bottom: 32px;
  flex-wrap: wrap;
}

.rv-tab {
  padding: 10px 24px;
  font-size: 13px;
  font-weight: 500;
  letter-spacing: 1px;
  text-transform: uppercase;
  cursor: pointer;
  border: 2px solid #CCBFB8;
  background: #ffffff;
  border-radius: 99px;
  transition: all 0.2s;
  font-family: 'Jost', sans-serif;
  color: #444444;
}

.rv-tab:hover {
  border-color: #D4437A;
  color: #D4437A;
}

.rv-tab.active-all  { background: #D4437A; border-color: #D4437A; color: #ffffff; }
.rv-tab.active-tp   { background: #00B67A; border-color: #00B67A; }
.rv-tab.active-goog { background: #4285F4; border-color: #4285F4; }
.rv-tab.active-ali  { background: #FF6A00; border-color: #FF6A00; }
.rv-tab.active-tp,
.rv-tab.active-goog,
.rv-tab.active-ali { color: #ffffff; }

.rv-outer {
  max-width: 680px;
  margin: 0 auto;
}

.rv-progress {
  height: 2px;
  background: #EDE8E0;
  border-radius: 2px;
  margin-bottom: 20px;
  overflow: hidden;
}

.rv-pbar {
  height: 100%;
  background: #D4437A;
  width: 0%;
  transition: width 0.1s linear;
  border-radius: 2px;
}

.rv-wrap {
  overflow: hidden;
  border-radius: 20px;
}

.rv-track {
  display: flex;
  transition: transform 0.55s cubic-bezier(0.4, 0, 0.2, 1);
}

.rv-card {
  min-width: 100%;
  background: #ffffff;
  border: 1px solid #EDE8E0;
  border-radius: 20px;
  padding: 36px 40px;
}

.rv-qmark {
  font-family: 'Cormorant Garamond', serif;
  font-size: 80px;
  color: #F5DCE8;
  line-height: 0.5;
  margin-bottom: 18px;
  display: block;
}

.rv-text {
  font-size: 15px;
  color: #555555;
  line-height: 1.85;
  font-weight: 300;
  margin-bottom: 28px;
}

.rv-footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
}

.rv-reviewer {
  display: flex;
  align-items: center;
  gap: 12px;
}

.rv-avatar {
  width: 42px;
  height: 42px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: 'Jost', sans-serif;
  font-weight: 500;
  font-size: 13px;
  flex-shrink: 0;
}

.rv-name {
  font-size: 14px;
  font-weight: 500;
  color: #1a1a1a;
}

.rv-date {
  font-size: 11px;
  color: #bbbbbb;
  font-weight: 300;
}

.rv-right {
  text-align: right;
}

.rv-stars {
  color: #F59E0B;
  font-size: 14px;
  letter-spacing: 2px;
  margin-bottom: 6px;
}

/* .rv-pill {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: 10px;
  font-weight: 500;
  padding: 4px 12px;
  border-radius: 99px;
  letter-spacing: 1px;
  text-transform: uppercase;
} */

.rv-pill .rv-platform-logo {
  width: 150px;
  height: auto;
  object-fit: contain;
  display: block;
}
/* 
.rv-pill-tp   { background: #E6FBF4; color: #00875A; }
.rv-pill-goog { background: #E8F0FE; color: #1A73E8; }
.rv-pill-ali  { background: #FFF2E8; color: #C25200; } */

.rv-readmore {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 38px;
  margin-top: 24px;
  padding: 9px 18px;
  border-radius: 99px;
  background: #1a1a1a;
  color: #ffffff;
  font-size: 12px;
  font-weight: 500;
  letter-spacing: 1px;
  line-height: 1;
  text-transform: uppercase;
}

.rv-readmore:hover {
  background: #D4437A;
  color: #ffffff;
}

.rv-bottom {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-top: 20px;
  gap: 16px;
}

.rv-dots {
  display: flex;
  gap: 6px;
  align-items: center;
}

.rv-dot {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: #D4C8BF;
  cursor: pointer;
  transition: all 0.25s;
}

.rv-dot.active {
  background: #D4437A;
  width: 22px;
  border-radius: 4px;
}

.rv-arrows {
  display: flex;
  gap: 8px;
}

.rv-arr {
  width: 38px;
  height: 38px;
  border-radius: 50%;
  border: 2px solid #CCBFB8;
  background: #ffffff;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 16px;
  color: #555555;
  transition: all 0.2s;
  font-family: 'Jost', sans-serif;
}

.rv-arr:hover {
  border-color: #D4437A;
  color: #D4437A;
  background: #FDF6F9;
}

@media (max-width: 767px) {
  .reviews-section {
    padding: 48px 20px;
  }

  .rv-heading {
    font-size: 30px;
  }

  .rv-card {
    padding: 28px 22px;
  }

  .rv-footer,
  .rv-bottom {
    flex-direction: column;
    align-items: flex-start;
  }

  .rv-right {
    text-align: left;
  }
}
