@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;
}

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;
}

strong {
  font-weight: 500;
}

video,
iframe,
img {
  margin: 0;
  padding: 0;
}

img {
  max-width: 100%;
}

.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;
}

.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: 90px;
    padding-top: 90px;
  }
}
@media only screen and (max-width: 1399px) {
  .section-spacing-120 {
    padding-bottom: 80px;
    padding-top: 80px;
  }
}
@media only screen and (max-width: 1199px) {
  .section-spacing-120 {
    padding-bottom: 60px;
    padding-top: 60px;
  }
}
@media only screen and (max-width: 991px) {
  .section-spacing-120 {
    padding-bottom: 50px;
    padding-top: 50px;
  }
}
@media only screen and (max-width: 767px) {
  .section-spacing-120 {
    padding-bottom: 40px;
    padding-top: 40px;
  }
}
@media (max-width: 575px) {
  .section-spacing-120 {
    padding-bottom: 35px;
    padding-top: 35px;
  }
}

.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;
}
.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) {
  .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: #FFFFFF;
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  z-index: 99;
  border-bottom: 0.0625rem solid rgba(14, 14, 12, 0.08);
}
.header-area.header-layoutone.header-sticky {
  position: sticky;
}
.header-area.header-layoutone .header-main {
  padding: 1.25rem 0;
  border: none;
  background: transparent;
}
@media only screen and (max-width: 991px) {
  .header-area.header-layoutone .header-main {
    padding: 0.9375rem 0;
  }
}
@media (max-width: 575px) {
  .header-area.header-layoutone .header-main {
    padding: 0.75rem 0;
  }
}
.header-area.header-layoutone .header__logo img {
  max-width: 7.5rem;
}
@media only screen and (max-width: 991px) {
  .header-area.header-layoutone .header__logo img {
    max-width: 6.25rem;
  }
}
@media (max-width: 575px) {
  .header-area.header-layoutone .header__logo img {
    max-width: 5.625rem;
  }
}
.header-area.header-layoutone .main-menu > ul {
  display: flex;
  align-items: center;
  gap: 2.5rem;
  margin: 0;
  padding: 0;
  list-style: none;
}
@media (max-width: 1399.98px) {
  .header-area.header-layoutone .main-menu > ul {
    gap: 1.875rem;
  }
}
.header-area.header-layoutone .main-menu > ul > li {
  position: relative;
}
.header-area.header-layoutone .main-menu > ul > li > a {
  font-family: var(--font_Playfair);
  color: #0E0E0C;
  text-transform: capitalize;
  padding: 0.625rem 0;
  display: block;
  transition: all 0.3s;
  text-decoration: none;
  font-weight: 500;
  font-size: 16px;
  line-height: 22px;
  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: 1.125rem;
}
@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 .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.5rem;
  height: 1.5rem;
  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: 1.25rem;
  height: 1.25rem;
  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.25rem;
  height: 1.25rem;
  background: transparent;
  border: none;
  padding: 0;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #0C0C0C;
  font-size: 1.125rem;
  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 .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: 90px 0 0;
}
.intro1__bg-text {
  position: absolute;
  top: 15%;
  left: 50%;
  transform: translate(-50%, -15%);
  font-size: 300px;
  font-family: var(--font_Playfair);
  font-weight: 900;
  color: rgba(0, 0, 0, 0.03);
  z-index: -1;
  white-space: nowrap;
  pointer-events: none;
}
@media only screen and (max-width: 1399px) {
  .intro1__bg-text {
    font-size: 250px;
  }
}
@media only screen and (max-width: 1199px) {
  .intro1__bg-text {
    font-size: 200px;
  }
}
@media only screen and (max-width: 991px) {
  .intro1__bg-text {
    font-size: 150px;
    top: 30%;
  }
}
@media only screen and (max-width: 767px) {
  .intro1__bg-text {
    font-size: 100px;
  }
}
.intro1__content-subtext {
  display: inline-block;
  font-size: 18px;
  font-weight: 500;
  color: var(--primary-two);
  margin-bottom: 15px;
}
.intro1__content-title {
  font-size: 64px;
  line-height: 1.1;
  margin-bottom: 25px;
}
@media only screen and (max-width: 1399px) {
  .intro1__content-title {
    font-size: 56px;
  }
}
@media only screen and (max-width: 991px) {
  .intro1__content-title {
    font-size: 48px;
  }
}
@media only screen and (max-width: 767px) {
  .intro1__content-title {
    font-size: 36px;
  }
}
.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 {
  position: absolute;
  left: 50%;
  top: 24px;
  width: 280px;
}
@media only screen and (max-width: 1399px) {
  .category1-item__content2 {
    width: 250px;
  }
}
@media only screen and (max-width: 1199px) {
  .category1-item__content2 {
    left: 40%;
    top: 24px;
    width: 220px;
  }
}
@media only screen and (max-width: 991px) {
  .category1-item__content2 {
    left: 33%;
    top: 10px;
    width: 200px;
  }
}
@media only screen and (max-width: 767px) {
  .category1-item__content2 {
    left: 25%;
    top: 10px;
    width: 180px;
  }
}
@media (max-width: 575px) {
  .category1-item__content2 {
    left: 20%;
    top: 0px;
    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;
}
.trending-product-card__thumb {
  position: relative;
}
.trending-product-card__thumb img {
  border-top-left-radius: 16px;
  border-top-right-radius: 16px;
  width: 100%;
}
.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;
}
@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;
}
@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;
}
.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:hover .trending-product-card__thumb-btn-wrapper {
    bottom: 8px;
  }
}
@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(--white);
  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(--white);
  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(--white);
  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: var(--text-color-one);
  border: 1px solid var(--text-color-four);
  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;
}
@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;
}
@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-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: 80%;
}
.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: 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) {
  .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;
}
.product-details .product-details-items .tab-content .product-details-thumb .thumb img {
  border: none;
  width: 100%;
  height: auto;
  display: block;
  border-radius: 20px;
}
@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;
}
.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: 8px;
  max-width: 100%;
  height: auto;
}
@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 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;
  margin-bottom: 36px;
  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;
}
.shop-card__thumb {
  position: relative;
}
.shop-card__thumb img {
  border-top-left-radius: 16px;
  border-top-right-radius: 16px;
  width: 100%;
}
@media only screen and (max-width: 767px) {
  .shop-card__thumb img {
    border-top-left-radius: 40px;
    border-top-right-radius: 40px;
  }
}
.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%;
  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);
  border-bottom-left-radius: 16px;
  border-bottom-right-radius: 16px;
}
.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;
}
.shop-card__content-title a {
  color: inherit;
  text-decoration: none;
  transition: all 0.3s ease;
}
.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;
}
.shop-card:hover .trending-product-card__thumb-btn-wrapper {
  opacity: 1;
  visibility: visible;
  bottom: 10px;
  transition: all 0.4s ease-in-out;
}

/* === 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 */