@charset "UTF-8";
/*=====================================================
 TABLE OF CONTENTS
=======================================================
  01. Variables
  02. Mixins
  03. Fonts
  04. Typography
  05. General
  06. Header
  07. Footer
  08. Slider
  09. Video Modal
  10. Layouts
  11. Sections
  12. Components
  13. Hero
  14. About
  15. CTA
  16. Team
  17. Testimonial
  18. Products
  19. Product Details
  20. Modals
  21. Cart
  22. Utility
  23. Post
  24. Post Details
  25. Contact
  26. Accordian
  27. Offer Modal
=======================================================*/
:root {
  --white-color: #ffffff;
  --black-color: #202020;
  --primary-color: #2C2C2C;
  --secondary-color: #6B6B6B;
  --accent-color: #D4AF37;
  --gray-color: #FAFAFA;
  --gray2-color: #A7A7A7;
  --gray3-color: #E7E7E7;
  --gray4-color: #F0E3D8;
  --gray5-color: #FEFAF5;
  --gray6-color: #FAF4F4;
  --error-color: #DC3545;
  --success-color: #28A745;
  --border-color: #FEF2E8;
  --primary-font: "Playfair Display", serif;
  --secondary-font: "Inter", sans-serif;
}

/*=================================================
  02. Mixins — Responsive breakpoints
===================================================*/
/*=====================================================
  03. Google Fonts
=======================================================*/
/*============================================
  Playfair Display (Primary)
 ==============================================*/
@font-face {
  font-family: "Playfair Display";
  font-style: normal;
  font-weight: 400;
  font-display: swap;
  src: url("../fonts/playfair-display/playfair-display-latin-400-normal.woff2") format("woff2"), url("../fonts/playfair-display/playfair-display-latin-400-normal.woff") format("woff");
}
@font-face {
  font-family: "Playfair Display";
  font-style: normal;
  font-weight: 500;
  font-display: swap;
  src: url("../fonts/playfair-display/playfair-display-latin-500-normal.woff2") format("woff2"), url("../fonts/playfair-display/playfair-display-latin-500-normal.woff") format("woff");
}
@font-face {
  font-family: "Playfair Display";
  font-style: normal;
  font-weight: 600;
  font-display: swap;
  src: url("../fonts/playfair-display/playfair-display-latin-600-normal.woff2") format("woff2"), url("../fonts/playfair-display/playfair-display-latin-600-normal.woff") format("woff");
}
@font-face {
  font-family: "Playfair Display";
  font-style: normal;
  font-weight: 700;
  font-display: swap;
  src: url("../fonts/playfair-display/playfair-display-latin-700-normal.woff2") format("woff2"), url("../fonts/playfair-display/playfair-display-latin-700-normal.woff") format("woff");
}
/*============================================
  Inter (Secondary)
 ==============================================*/
@font-face {
  font-family: "Inter";
  font-style: normal;
  font-weight: 400;
  font-display: swap;
  src: url("../fonts/inter/inter-latin-400-normal.woff2") format("woff2"), url("../fonts/inter/inter-latin-400-normal.woff") format("woff");
}
@font-face {
  font-family: "Inter";
  font-style: normal;
  font-weight: 500;
  font-display: swap;
  src: url("../fonts/inter/inter-latin-500-normal.woff2") format("woff2"), url("../fonts/inter/inter-latin-500-normal.woff") format("woff");
}
@font-face {
  font-family: "Inter";
  font-style: normal;
  font-weight: 600;
  font-display: swap;
  src: url("../fonts/inter/inter-latin-600-normal.woff2") format("woff2"), url("../fonts/inter/inter-latin-600-normal.woff") format("woff");
}
@font-face {
  font-family: "Inter";
  font-style: normal;
  font-weight: 700;
  font-display: swap;
  src: url("../fonts/inter/inter-latin-700-normal.woff2") format("woff2"), url("../fonts/inter/inter-latin-700-normal.woff") format("woff");
}
@font-face {
  font-family: "Inter";
  font-style: normal;
  font-weight: 800;
  font-display: swap;
  src: url("../fonts/inter/inter-latin-800-normal.woff2") format("woff2"), url("../fonts/inter/inter-latin-800-normal.woff") format("woff");
}
/*===============================================================
  04. Typography
=================================================================*/
*,
*::before,
*::after {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body,
html {
  color: var(--secondary-color);
  font-family: var(--secondary-font);
  font-size: 16px;
  line-height: 1.5em;
  font-weight: 400;
  overflow-x: clip;
  background-color: var(--web-wash);
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  scroll-behavior: smooth;
  scrollbar-width: none;
  -ms-overflow-style: none;
}
body::-webkit-scrollbar,
html::-webkit-scrollbar {
  display: none;
}

h1,
h2,
h3,
h4,
h5,
h6 {
  clear: both;
  color: var(--primary-color);
  padding: 0;
  margin: 0 0 20px 0;
  font-weight: 700;
  line-height: 1.2em;
  font-family: var(--primary-font);
}

h1 {
  font-size: clamp(34px, 6vw, 56px);
}

h2 {
  font-size: clamp(28px, 5vw, 42px);
}

h3 {
  font-size: clamp(24px, 3.6vw, 30px);
}

h4 {
  font-size: clamp(20px, 2.6vw, 24px);
}

h5 {
  font-size: 18px;
}

h6 {
  font-size: 16px;
}

p {
  margin-bottom: 15px;
}

ul {
  margin: 0 0 25px 0;
  padding-left: 20px;
  list-style: square outside none;
}

ol {
  padding-left: 20px;
  margin-bottom: 25px;
}

dfn,
cite,
em,
i {
  font-style: italic;
}

blockquote {
  margin: 0 15px;
  font-style: italic;
  font-size: 20px;
  line-height: 1.6em;
  margin: 0;
}

address {
  margin: 0 0 15px;
}

img {
  border: 0;
  max-width: 100%;
  height: auto;
  border-radius: inherit;
}

a {
  color: inherit;
  text-decoration: none;
  transition: all 0.3s ease;
}

button {
  color: inherit;
  border: 0;
  outline: 0;
  padding: 0;
  background-color: transparent;
  transition: all 0.3s ease;
  cursor: pointer;
}

a:hover {
  text-decoration: none;
  color: inherit;
}

table {
  width: 100%;
  margin-bottom: 25px;
}
table th {
  font-weight: 600;
  color: var(--secondary);
}
table td,
table th {
  border-top: 1px solid var(--border);
  padding: 11px 10px;
}

dl {
  margin-bottom: 25px;
}
dl dt {
  font-weight: 600;
}

b,
strong {
  font-weight: bold;
}

small {
  font-size: 16px;
  font-weight: 400;
}

pre {
  color: var(--secondary);
  border: 1px solid var(--border);
  font-size: 18px;
  padding: 25px;
  border-radius: 5px;
}

kbd {
  font-size: 100%;
  background-color: var(--secondary);
  border-radius: 5px;
}

input,
textarea {
  color: var(--primary);
  transition: all 0.4s ease;
}

label {
  margin-bottom: 8px;
}

/*=================================================================
  05. General
===================================================================*/
.cs_fs_12 {
  font-size: 12px;
  line-height: 1.5em;
}

.cs_fs_14 {
  font-size: 14px;
  line-height: 1.43em;
}

.cs_fs_16 {
  font-size: 16px;
  line-height: 1.5em;
}

.cs_fs_18 {
  font-size: 18px;
  line-height: 1.44em;
}

.cs_fs_22 {
  font-size: clamp(18px, 2.1vw, 22px);
  line-height: 1.36em;
}

.cs_fs_28 {
  font-size: clamp(24px, 3vw, 28px);
  line-height: 1.36em;
}

.cs_fs_36 {
  font-size: clamp(30px, 4.2vw, 36px);
  line-height: 1.25em;
}

.cs_fs_48 {
  font-size: clamp(30px, 5.2vw, 48px);
  line-height: 1.25em;
}

.cs_fs_90 {
  font-size: clamp(32px, 6vw, 90px);
  line-height: 1.11em;
}

/*=====================================  
  Classess for Fonts Weight
=======================================*/
.cs_light {
  font-weight: 300;
}

.cs_normal {
  font-weight: 400;
}

.cs_medium {
  font-weight: 500;
}

.cs_semibold {
  font-weight: 600;
}

.cs_bold {
  font-weight: 700;
}

.cs_extrabold {
  font-weight: 800;
}

.cs_black {
  font-weight: 900;
}

/*=====================================  
  Classess for Fonts Color
=======================================*/
.cs_accent_color {
  color: var(--accent-color);
}

.cs_primary_color {
  color: var(--primary-color);
}

.cs_border_color {
  color: var(--border-color);
}

.cs_secondary_color {
  color: var(--secondary-color);
}

.cs_gray_color {
  color: var(--gray-color);
}

.cs_gray2_color {
  color: var(--gray2-color);
}

.cs_gray3_color {
  color: var(--gray3-color);
}

.cs_gray4_color {
  color: var(--gray4-color);
}

.cs_gray5_color {
  color: var(--gray5-color);
}

.cs_gray6_color {
  color: var(--gray6-color);
}

.cs_white_color {
  color: var(--white-color);
}

/*=====================================  
  Classess for Fonts Family 
=======================================*/
.cs_primary_font {
  font-family: var(--primary-font);
}

.cs_secondary_font {
  font-family: var(--secondary-font);
}

/*=============================================  
  Classess for Background Size & Colors
===============================================*/
.cs_accent_bg {
  background-color: var(--accent-color);
}

.cs_primary_bg {
  background-color: var(--primary-color);
}

.cs_body_bg {
  background-color: var(--secondary-color);
}

.cs_success_bg {
  background-color: var(--success-color);
}

.cs_error_bg {
  background-color: var(--error-color);
}

.cs_white_bg {
  background-color: var(--white-color);
}

.cs_gray_bg {
  background-color: var(--gray-color);
}

.cs_gray2_bg {
  background-color: var(--gray2-color);
}

.cs_gray3_bg {
  background-color: var(--gray3-color);
}

.cs_gray4_bg {
  background-color: var(--gray4-color);
}

.cs_gray5_bg {
  background-color: var(--gray5-color);
}

.cs_gray6_bg {
  background-color: var(--gray6-color);
}

.cs_border_bg {
  background-color: var(--border-color);
}

.cs_black_bg {
  background-color: var(--black-color);
}

.cs_bg_filed {
  background-repeat: no-repeat;
  background-position: center;
  background-size: cover;
}

.cs_bg_fixed {
  background-repeat: no-repeat;
  background-attachment: fixed;
  background-size: cover;
}

/*=============================================  
  Classess for Border Radius
===============================================*/
.cs_radius_5 {
  border-radius: 5px;
}

.cs_radius_10 {
  border-radius: 10px;
}

.cs_radius_15 {
  border-radius: 15px;
}

.cs_radius_20 {
  border-radius: 20px;
}

.cs_radius_30 {
  border-radius: 30px;
}

.cs_radius_50 {
  border-radius: 50px;
}

.cs_radius_100 {
  border-radius: 100%;
}

@media (max-width: 991px) {
  .cs_radius_15,
  .cs_radius_20,
  .cs_radius_30 {
    border-radius: 10px;
  }
}
/*=============================================  
  Classes for Utility Components
===============================================*/
.cs_mp_0 {
  list-style: none;
  margin: 0;
  padding: 0;
}

.cs_center {
  display: flex;
  align-items: center;
  justify-content: center;
}

.cs_center_column {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}

.cs_section_padding {
  padding: 64px 0;
}
@media (max-width: 991px) {
  .cs_section_padding {
    padding: 50px 0;
  }
}

/*=============================================  
  Bootstrap Classess 
===============================================*/
@media (min-width: 1400px) {
  .container {
    max-width: 1344px;
  }
  .container-fluid {
    max-width: 1744px;
    padding: 0 12px !important;
  }
}
.cs_gap_y_40 {
  gap: 40px 0;
}
@media (max-width: 991px) {
  .cs_gap_y_40 {
    gap: 30px 0;
  }
}

.cs_gap_y_48 {
  gap: 48px 0;
}
@media (max-width: 991px) {
  .cs_gap_y_48 {
    gap: 30px 0;
  }
}

.cs_gap_y_30 {
  gap: 30px 0;
}

.cs_gap_y_24 {
  gap: 24px 0;
}

.cs_gap_y_16 {
  gap: 16px 0;
}

/*===========================================================  
  Responsive For Common Component & Hide Elements
=============================================================*/
.nice-select .option.focus,
.nice-select .option.selected.focus,
.nice-select .option:hover {
  color: var(--primary-color);
  background-color: var(--border-color);
}

/*===========================================================  
  Responsive For Common Component & Hide Elements
=============================================================*/
@media (max-width: 991px) {
  br {
    display: none;
  }
}
/*=======================================================
  06. Header
=========================================================*/
.cs_site_header {
  width: 100%;
  position: fixed;
  top: 0;
  left: 0;
  z-index: 100;
  border-bottom: 1px solid var(--gray4-color);
}
.cs_site_header.cs_sticky_header {
  position: fixed;
  top: 0;
  transition: box-shadow 0.4s ease, background-color 0.4s ease;
}
.cs_site_header.cs_sticky_active {
  border-bottom: 0;
  box-shadow: 0 1px 15px rgba(0, 0, 0, 0.08);
}
.cs_site_header.cs_sticky_active .cs_main_header_in {
  height: 70px;
  transition: height 0.3s ease-in-out;
}
.cs_site_header.cs_sticky_active.cs_style_2 .cs_header_top_content, .cs_site_header.cs_sticky_active.cs_style_3 .cs_header_top_content, .cs_site_header.cs_sticky_active.cs_style_4 .cs_header_top_content,
.cs_site_header.cs_sticky_active.cs_style_2 .cs_header_bottom_content,
.cs_site_header.cs_sticky_active.cs_style_3 .cs_header_bottom_content,
.cs_site_header.cs_sticky_active.cs_style_4 .cs_header_bottom_content {
  height: 70px;
}
.cs_site_header .cs_topbar {
  background-color: var(--gray4-color);
  font-size: 12px;
  line-height: 1.5;
  color: var(--primary-color);
}
.cs_site_header .cs_topbar .cs_topbar_in {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  min-height: 40px;
}
.cs_site_header .cs_topbar_social {
  display: flex;
  align-items: center;
  gap: 18px;
  flex: none;
}
.cs_site_header .cs_topbar_social a {
  display: inline-flex;
  font-size: 16px;
  line-height: 1;
  transition: color 0.3s ease;
}
.cs_site_header .cs_topbar_social a:hover {
  color: var(--accent-color);
}
.cs_site_header .cs_topbar_notice {
  margin: 0;
  text-align: center;
  flex: 1;
  min-width: 0;
}
.cs_site_header .cs_topbar_notice a {
  color: var(--accent-color);
  font-weight: 600;
  transition: color 0.3s ease;
}
.cs_site_header .cs_topbar_notice a:hover {
  color: var(--accent-color);
}
.cs_site_header .cs_topbar_slider {
  height: 18px;
  overflow: hidden;
}
.cs_site_header .cs_topbar_slider .swiper-slide {
  display: flex;
  align-items: center;
  justify-content: center;
  height: 18px;
}
.cs_site_header .cs_topbar_slider .cs_topbar_notice_text {
  margin: 0;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
  max-width: 100%;
}
.cs_site_header .cs_topbar_links {
  display: flex;
  align-items: center;
  gap: 24px;
  flex: none;
}
.cs_site_header .cs_topbar_links > a {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  transition: color 0.3s ease;
}
.cs_site_header .cs_topbar_links > a i {
  font-size: 15px;
}
.cs_site_header .cs_topbar_links > a:hover {
  color: var(--accent-color);
}
.cs_site_header .cs_main_header {
  background-color: var(--white-color);
  position: relative;
  z-index: 99;
}
.cs_site_header .cs_main_header_in {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  height: 100px;
}
.cs_site_header .cs_main_header_left {
  flex: none;
}
.cs_site_header .cs_site_branding {
  display: inline-flex;
  align-items: center;
  flex: none;
}
.cs_site_header .cs_site_branding img {
  height: 50px;
  width: auto;
  display: block;
}
.cs_site_header .cs_nav {
  display: flex;
  align-items: center;
  position: static;
}
.cs_site_header .cs_nav_list_wrapper {
  position: fixed;
  top: 0;
  left: 0;
  height: 100%;
  z-index: 1200;
  width: min(100%, 340px);
  padding: 80px 12px 40px;
  background-color: var(--white-color);
  box-shadow: 0 0 60px rgba(44, 44, 44, 0.18);
  transform: translateX(-100%);
  transition: transform 0.4s cubic-bezier(0.2, 0.8, 0.3, 1);
}
.cs_site_header .cs_nav_list_wrapper.active {
  transform: translateX(0);
}
.cs_site_header .cs_nav_list_wrapper .cs_site_brand {
  position: absolute;
  left: 12px;
  top: 10px;
}
.cs_site_header .cs_nav .cs_nav_list {
  display: flex;
  height: 100%;
  width: 100%;
  flex-direction: column;
  align-items: stretch;
  gap: 0;
}
.cs_site_header .cs_nav .cs_nav_list > li {
  position: relative;
  border-bottom: 1px solid rgba(44, 44, 44, 0.08);
}
.cs_site_header .cs_nav .cs_nav_list > li:last-child {
  border-bottom: 0;
}
.cs_site_header .cs_nav .cs_nav_list > li > a {
  display: inline-flex;
  align-items: center;
  gap: 5px;
  padding: 12px 16px;
  justify-content: flex-start;
  color: var(--primary-color);
  transition: color 0.3s ease;
}
.cs_site_header .cs_nav .cs_nav_list > li.cs_active > a {
  color: var(--accent-color);
}
.cs_site_header .cs_submenu,
.cs_site_header .cs_mega_menu {
  display: none;
  position: static;
  width: 100%;
  padding: 0 0 8px;
  border: none;
  box-shadow: none;
  border-radius: 0;
  background-color: transparent;
  transform: none;
  opacity: 1;
  visibility: visible;
}
.cs_site_header .cs_mega_menu {
  padding: 4px 0 12px;
}
.cs_site_header .cs_submenu > li > a {
  display: block;
  padding: 8px 28px;
  color: var(--secondary-color);
  transition: all 0.25s ease;
}
.cs_site_header .cs_submenu > li:hover > a, .cs_site_header .cs_submenu > li.cs_active > a {
  color: var(--primary-color);
  background-color: var(--border-color);
}
.cs_site_header .cs_mega_col {
  margin-bottom: 10px;
}
.cs_site_header .cs_mega_title {
  display: block;
  margin-top: 6px;
  margin-bottom: 8px;
  padding: 0 16px;
  font-size: 12px;
  line-height: 20px;
  font-weight: 600;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--accent-color);
}
.cs_site_header .cs_mega_links > li > a {
  display: block;
  padding: 7px 28px;
  font-size: 14px;
  line-height: 24px;
  color: var(--secondary-color);
  border-radius: 0;
  transition: all 0.25s ease;
}
.cs_site_header .cs_mega_links > li:hover > a, .cs_site_header .cs_mega_links > li.cs_active > a {
  color: var(--primary-color);
  background-color: var(--border-color);
}
.cs_site_header .cs_mega_promo_col {
  display: flex;
  padding: 8px 16px 0;
}
.cs_site_header .cs_mega_promo {
  position: relative;
  display: block;
  width: 100%;
  border-radius: 8px;
  overflow: hidden;
}
.cs_site_header .cs_mega_promo img {
  display: block;
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  transition: transform 0.6s ease;
}
.cs_site_header .cs_mega_promo::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(255, 255, 255, 0) 45%, rgba(240, 227, 216, 0.65) 100%);
}
.cs_site_header .cs_mega_promo:hover img {
  transform: scale(1.05);
}
.cs_site_header .cs_mega_promo .cs_mega_promo_text {
  position: absolute;
  left: 24px;
  bottom: 22px;
  z-index: 1;
  display: flex;
  flex-direction: column;
  gap: 3px;
}
.cs_site_header .cs_mega_promo .cs_mega_promo_title {
  font-family: var(--primary-font);
  font-weight: 500;
  font-size: 22px;
  line-height: 30px;
  color: var(--primary-color);
}
.cs_site_header .cs_mega_promo .cs_mega_promo_sub {
  font-family: var(--secondary-font);
  font-size: 16px;
  line-height: 24px;
  color: var(--primary-color);
}
.cs_site_header .cs_home_mega {
  font-size: 16px;
  padding: 10px 10px 24px;
}
.cs_site_header .cs_home_demo {
  display: inline-block;
  width: calc(50% - 6px);
  padding: 0 6px 20px 0;
  vertical-align: top;
}
.cs_site_header .cs_home_demo > a {
  display: block;
}
.cs_site_header .cs_home_demo .cs_home_demo_thumb {
  display: block;
  width: 100%;
  overflow: hidden;
  border: 1px solid var(--border-color);
}
.cs_site_header .cs_home_demo .cs_home_demo_thumb img {
  display: block;
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  transition: transform 0.6s ease;
}
.cs_site_header .cs_home_demo .cs_home_demo_label {
  display: block;
  margin-top: 24px;
  text-align: center;
  font-weight: 400;
  color: var(--primary-color);
  transition: color 0.3s ease;
}
.cs_site_header .cs_home_demo:hover .cs_home_demo_thumb {
  box-shadow: 6px 8px 18px rgba(212, 175, 55, 0.15);
}
.cs_site_header .cs_home_demo:hover img {
  transform: scale(1.05);
}
.cs_site_header .cs_home_demo:hover .cs_home_demo_label {
  color: var(--accent-color);
}
.cs_site_header .cs_main_header_right {
  display: flex;
  align-items: center;
  gap: 20px;
  z-index: 2;
}
.cs_site_header .cs_header_action {
  position: relative;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 24px;
  height: 24px;
  padding: 0;
  border: none;
  background: transparent;
  color: var(--primary-color);
  font-size: 24px;
  line-height: 1;
  cursor: pointer;
  transition: color 0.3s ease;
}
.cs_site_header .cs_header_action:hover {
  color: var(--accent-color);
}
.cs_site_header .cs_action_badge {
  position: absolute;
  top: -6px;
  right: -6px;
  min-width: 16px;
  height: 16px;
  padding: 0 3px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-family: var(--secondary-font);
  font-size: 10px;
  line-height: 1;
  font-weight: 500;
  color: var(--white-color);
  border-radius: 50px;
  background-color: var(--accent-color);
}
.cs_site_header .cs_header_top_search .cs_search_form {
  width: 288px;
}
.cs_site_header .cs_header_top_search input {
  display: block;
  border: 0;
  outline: 0;
  width: 100%;
  padding: 12px 0;
  font-size: 12px;
  line-height: 1.25em;
  border-bottom: 1px solid var(--border-color);
}
.cs_site_header .cs_header_top_search button {
  position: absolute;
  top: 12px;
  right: 0;
  color: var(--primary-color);
}
.cs_site_header .cs_header_top_search button:hover {
  color: var(--accent-color);
}
.cs_site_header.cs_style_2 .cs_topbar, .cs_site_header.cs_style_3 .cs_topbar, .cs_site_header.cs_style_4 .cs_topbar {
  color: var(--white-color);
  background-color: var(--primary-color);
}
.cs_site_header.cs_style_2 .cs_main_header_top, .cs_site_header.cs_style_3 .cs_main_header_top, .cs_site_header.cs_style_4 .cs_main_header_top {
  border-bottom: 1px solid var(--gray4-color);
}
.cs_site_header.cs_style_2 .cs_header_top_content, .cs_site_header.cs_style_3 .cs_header_top_content, .cs_site_header.cs_style_4 .cs_header_top_content {
  height: 90px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  transition: all 0.3s ease-in;
}
.cs_site_header.cs_style_2 .cs_nav .cs_nav_list > li > a, .cs_site_header.cs_style_3 .cs_nav .cs_nav_list > li > a, .cs_site_header.cs_style_4 .cs_nav .cs_nav_list > li > a {
  padding: 30px 0;
}
.cs_site_header.cs_style_2 .cs_main_header_left, .cs_site_header.cs_style_3 .cs_main_header_left, .cs_site_header.cs_style_4 .cs_main_header_left {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
}
.cs_site_header.cs_style_2 .cs_header_bottom_content, .cs_site_header.cs_style_3 .cs_header_bottom_content, .cs_site_header.cs_style_4 .cs_header_bottom_content {
  height: 84px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  transition: all 0.3s ease-in;
}
.cs_site_header.cs_style_3 .cs_main_header_center, .cs_site_header.cs_style_4 .cs_main_header_center {
  position: initial;
  transform: translate(0);
  justify-content: flex-start;
}
.cs_site_header.cs_style_3 .cs_nav .cs_nav_list > li > a, .cs_site_header.cs_style_4 .cs_nav .cs_nav_list > li > a {
  padding: 38px 0;
}
.cs_site_header.cs_style_3 .cs_mega_menu, .cs_site_header.cs_style_4 .cs_mega_menu {
  left: 0;
  transform: translateX(0);
}
.cs_site_header.cs_style_4 .cs_main_header_center,
.cs_site_header.cs_style_4 .cs_main_header_left {
  position: initial;
  transform: translate(0);
}
.cs_site_header.cs_style_4 .cs_main_header_center {
  flex: 1;
  justify-content: center;
}
.cs_site_header.cs_style_4 .cs_nav .cs_nav_list > li > a {
  padding: 38px 0;
}
.cs_site_header.cs_style_5 .cs_main_header_center {
  position: initial;
  transform: translate(0);
  justify-content: flex-start;
  margin-left: 120px;
}
.cs_site_header.cs_style_5 .cs_mega_menu {
  left: 0;
  transform: translateX(0);
}
.cs_site_header.cs_style_5 .cs_main_header_right {
  gap: 10px;
}
.cs_site_header.cs_style_5 .cs_main_header_right .cs_header_action {
  width: 50px;
  height: 50px;
  border-radius: 50%;
  background-color: var(--white-color);
  border: 1px solid var(--gray4-color);
}
.cs_site_header.cs_style_5 .cs_main_header_right .cs_header_action .cs_action_badge {
  top: -3px;
  right: -3px;
}
.cs_site_header.cs_style_5 .cs_main_header_right .cs_header_action:hover {
  color: var(--white-color);
  background-color: var(--accent-color);
}
.cs_site_header.cs_style_5 .cs_main_header_right .cs_header_action:hover .cs_action_badge {
  background-color: var(--primary-color);
}
.cs_site_header .cs_header_phone a:hover,
.cs_site_header .cs_header_email a:hover {
  color: var(--accent-color);
  text-decoration: underline;
}
.cs_site_header .cs_menu_toggle {
  display: block;
  width: 24px;
  height: 24px;
  cursor: pointer;
  flex: none;
  position: absolute;
  top: 23px;
  left: 12px;
}
.cs_site_header .cs_menu_toggle span,
.cs_site_header .cs_menu_toggle span::before,
.cs_site_header .cs_menu_toggle span::after {
  content: "";
  position: absolute;
  left: 0;
  width: 100%;
  height: 2px;
  background-color: var(--primary-color);
  border-radius: 2px;
  transition: all 0.3s ease;
}
.cs_site_header .cs_menu_toggle span {
  top: 50%;
  transform: translateY(-50%);
}
.cs_site_header .cs_menu_toggle span::before {
  top: -8px;
}
.cs_site_header .cs_menu_toggle span::after {
  top: 8px;
}
.cs_site_header .cs_menu_toggle.active span {
  background-color: transparent;
}
.cs_site_header .cs_menu_toggle.active span::before {
  top: 0;
  transform: rotate(45deg);
}
.cs_site_header .cs_menu_toggle.active span::after {
  top: 0;
  transform: rotate(-45deg);
}
.cs_site_header .cs_close_nav {
  display: inline-block;
  position: absolute;
  top: 24px;
  right: 12px;
  font-size: 24px;
  color: var(--primary-color);
  cursor: pointer;
  z-index: 2;
  transition: transform 0.3s ease;
}
.cs_site_header .cs_close_nav:hover {
  transform: rotate(90deg);
}
.cs_site_header .cs_menu_dropdown_toggle {
  display: block;
  position: absolute;
  top: 12px;
  right: 0;
  width: 24px;
  height: 24px;
  cursor: pointer;
}
.cs_site_header .cs_menu_dropdown_toggle span,
.cs_site_header .cs_menu_dropdown_toggle span::before {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  width: 12px;
  height: 2px;
  background-color: var(--primary-color);
  transform: translate(-50%, -50%);
  transition: all 0.3s ease;
}
.cs_site_header .cs_menu_dropdown_toggle span::before {
  transform: translate(-50%, -50%) rotate(90deg);
}
.cs_site_header .cs_menu_dropdown_toggle.active span::before {
  transform: translate(-50%, -50%) rotate(0);
}
@media (max-width: 1399px) {
  .cs_site_header.cs_style_3 .cs_main_header_left, .cs_site_header.cs_style_4 .cs_main_header_left {
    left: 12px;
    transform: translate(0, -50%);
  }
  .cs_site_header.cs_style_3 .cs_main_header_center, .cs_site_header.cs_style_4 .cs_main_header_center {
    padding-left: 150px;
  }
  .cs_site_header.cs_style_3 .cs_header_top_search .cs_search_form, .cs_site_header.cs_style_4 .cs_header_top_search .cs_search_form {
    width: 188px;
  }
}
@media (min-width: 1200px) {
  .cs_site_header.cs_sticky_active .cs_nav .cs_nav_list > li > a {
    padding: 23px 0 !important;
  }
  .cs_site_header .cs_main_header_left {
    z-index: 2;
  }
  .cs_site_header .cs_menu_toggle,
  .cs_site_header .cs_close_nav,
  .cs_site_header .cs_menu_dropdown_toggle {
    display: none;
  }
  .cs_site_header .cs_main_header_center {
    width: 100%;
    position: absolute;
    left: 50%;
    top: 50%;
    z-index: 1;
    display: flex;
    align-items: center;
    justify-content: center;
    transform: translate(-50%, -50%);
  }
  .cs_site_header .cs_nav_list_wrapper {
    position: static;
    width: auto;
    max-width: none;
    padding: 0;
    background-color: transparent;
    box-shadow: none;
    transform: none;
    overflow: visible;
    z-index: auto;
    display: flex;
    align-items: center;
  }
  .cs_site_header {
    /* Horizontal nav row */
  }
  .cs_site_header .cs_nav .cs_nav_list {
    flex-direction: row;
    align-items: center;
    gap: 30px;
  }
  .cs_site_header .cs_nav .cs_nav_list > li {
    border-bottom: none;
  }
  .cs_site_header .cs_nav .cs_nav_list > li > a {
    padding: 38px 0;
  }
  .cs_site_header .cs_nav .cs_nav_list > li.menu-item-has-children > a::after {
    content: "\ea4e";
    font-family: "remixicon";
    font-size: 16px;
    line-height: 1;
    transition: transform 0.3s ease;
  }
  .cs_site_header .cs_nav .cs_nav_list > li:hover > a, .cs_site_header .cs_nav .cs_nav_list > li.cs_active > a {
    color: var(--accent-color);
  }
  .cs_site_header .cs_nav .cs_nav_list > li.menu-item-has-children:hover > a::after {
    transform: rotate(180deg);
  }
  .cs_site_header {
    /* Standard dropdown */
  }
  .cs_site_header .cs_submenu {
    display: block;
    position: absolute;
    top: 100%;
    left: 0;
    min-width: 220px;
    padding: 12px 0;
    background-color: var(--white-color);
    border: 1px solid var(--gray4-border);
    box-shadow: 0 20px 50px rgba(44, 44, 44, 0.12);
    border-radius: 0 0 8px 8px;
    opacity: 0;
    visibility: hidden;
    transform: translateY(12px);
    transition: all 0.35s cubic-bezier(0.2, 0.8, 0.3, 1);
    z-index: 30;
  }
  .cs_site_header .cs_submenu > li > a {
    padding: 8px 24px;
  }
  .cs_site_header .cs_nav_list > li.menu-item-has-children:hover > .cs_submenu {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
  }
  .cs_site_header {
    /* Mega menu */
  }
  .cs_site_header .cs_nav .cs_nav_list > li.cs_mega_parent {
    position: static;
  }
  .cs_site_header .cs_mega_menu {
    display: grid;
    gap: 24px;
    position: absolute;
    top: 80%;
    left: 50%;
    padding: 24px;
    opacity: 0;
    z-index: 100;
    visibility: hidden;
    transform: translateX(-50%);
    width: calc(100% - 24px);
    max-width: 1320px;
    background-color: var(--white-color);
    border-top: 1px solid var(--border-color);
    box-shadow: 0 20px 20px rgba(44, 44, 44, 0.12);
    grid-template-columns: 1fr 1fr 1fr minmax(320px, 404px);
    transition: top 0.4s cubic-bezier(0.4, 0.8, 0.5, 0.7), opacity 0.1s ease, visibility 0.2s ease-in;
  }
  .cs_site_header .cs_mega_parent:hover > .cs_mega_menu {
    top: 100%;
    opacity: 1;
    visibility: visible;
  }
  .cs_site_header .cs_mega_col {
    min-width: 0;
    margin-bottom: 0;
  }
  .cs_site_header .cs_mega_title {
    margin-top: 0;
    padding: 0 12px;
  }
  .cs_site_header .cs_mega_links > li > a {
    padding: 6px 12px;
    border-radius: 6px;
  }
  .cs_site_header .cs_mega_promo_col {
    padding: 0;
  }
  .cs_site_header .cs_home_mega {
    grid-template-columns: repeat(6, 1fr);
    gap: 10px;
    padding: 10px 10px 24px;
    font-size: 16px;
  }
  .cs_site_header .cs_home_demo {
    display: block;
    width: auto;
    padding: 0;
  }
}
@media (max-width: 1199px) {
  .cs_site_header.cs_sticky_active.cs_style_2 .cs_main_header_top, .cs_site_header.cs_sticky_active.cs_style_3 .cs_main_header_top, .cs_site_header.cs_sticky_active.cs_style_4 .cs_main_header_top {
    border-bottom: 0;
  }
  .cs_site_header .cs_main_header_in {
    height: 70px;
  }
  .cs_site_header .cs_mega_menu {
    padding: 10px 0 0;
  }
  .cs_site_header .cs_home_demo {
    width: calc(50% - 6px);
    padding: 0 6px 20px 0;
  }
  .cs_site_header .cs_home_demo .cs_home_demo_label {
    margin-top: 14px;
  }
  .cs_site_header .cs_main_header_right {
    gap: 10px;
  }
  .cs_site_header .cs_nav .cs_nav_list > li > a {
    padding: 12px 0;
  }
  .cs_site_header .cs_header_action.mobile_hide {
    display: none;
  }
  .cs_site_header .cs_main_header_left {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
  }
  .cs_site_header.cs_style_2 .cs_header_top_content, .cs_site_header.cs_style_3 .cs_header_top_content, .cs_site_header.cs_style_4 .cs_header_top_content {
    height: 70px;
    justify-content: flex-end;
  }
  .cs_site_header.cs_style_2 .cs_main_header_right .cs_header_action[aria-label=Wishlist], .cs_site_header.cs_style_3 .cs_main_header_right .cs_header_action[aria-label=Wishlist], .cs_site_header.cs_style_4 .cs_main_header_right .cs_header_action[aria-label=Wishlist] {
    display: none;
  }
  .cs_site_header.cs_style_2 .cs_main_header_bottom, .cs_site_header.cs_style_3 .cs_main_header_bottom, .cs_site_header.cs_style_4 .cs_main_header_bottom {
    height: 0;
    position: initial !important;
  }
  .cs_site_header.cs_style_2 .cs_header_bottom_content, .cs_site_header.cs_style_3 .cs_header_bottom_content, .cs_site_header.cs_style_4 .cs_header_bottom_content {
    height: 0;
  }
  .cs_site_header.cs_style_2 .cs_header_top_search, .cs_site_header.cs_style_3 .cs_header_top_search, .cs_site_header.cs_style_4 .cs_header_top_search,
  .cs_site_header.cs_style_2 .cs_header_bottom_left,
  .cs_site_header.cs_style_3 .cs_header_bottom_left,
  .cs_site_header.cs_style_4 .cs_header_bottom_left,
  .cs_site_header.cs_style_2 .cs_header_bottom_right,
  .cs_site_header.cs_style_3 .cs_header_bottom_right,
  .cs_site_header.cs_style_4 .cs_header_bottom_right {
    display: none;
  }
  .cs_site_header.cs_style_2 .cs_nav .cs_nav_list > li > a, .cs_site_header.cs_style_3 .cs_nav .cs_nav_list > li > a, .cs_site_header.cs_style_4 .cs_nav .cs_nav_list > li > a {
    padding: 12px 0;
  }
  .cs_site_header.cs_style_3 .cs_main_header_left, .cs_site_header.cs_style_4 .cs_main_header_left {
    left: 50%;
    transform: translate(-50%, -50%);
  }
  .cs_site_header.cs_style_3 .cs_main_header_center, .cs_site_header.cs_style_4 .cs_main_header_center {
    transform: initial;
  }
  .cs_site_header.cs_style_3 .cs_nav .cs_nav_list > li > a, .cs_site_header.cs_style_4 .cs_nav .cs_nav_list > li > a {
    padding: 12px 0;
  }
  .cs_site_header.cs_style_4 .cs_main_header_left {
    position: absolute;
    transform: translate(-50%, -50%);
  }
  .cs_site_header.cs_style_4 .cs_nav .cs_nav_list > li > a {
    padding: 12px 0;
  }
  .cs_site_header.cs_style_5 .cs_main_header_center {
    transform: initial;
  }
  .cs_site_header.cs_style_5 .cs_nav .cs_nav_list > li > a {
    padding: 12px 0;
  }
  .cs_site_header.cs_style_5 .cs_main_header_right {
    gap: 10px;
  }
  .cs_site_header.cs_style_5 .cs_main_header_right .cs_header_action {
    width: 35px;
    height: 35px;
    font-size: 16px;
  }
  .cs_site_header.cs_style_5 .cs_main_header_right .cs_header_action .cs_action_badge {
    top: -3px;
    right: -3px;
  }
  .cs_site_header .cs_nav .cs_nav_list {
    overflow-y: auto;
  }
}
@media (max-width: 991px) {
  .cs_site_header .cs_topbar_notice {
    display: none;
  }
  .cs_site_header .cs_topbar_links {
    gap: 16px;
  }
  .cs_site_header .cs_topbar_links > a span,
  .cs_site_header .cs_topbar_links > a {
    font-size: 12px;
  }
}
@media (max-width: 767px) {
  .cs_site_header .cs_site_branding img {
    height: 42px;
  }
  .cs_site_header .cs_topbar_links > a:not(.cs_language_switcher_wrap) i {
    font-size: 14px;
  }
}
@media (max-width: 575px) {
  .cs_site_header .cs_topbar_links {
    gap: 14px;
  }
  .cs_site_header .cs_topbar_links > a {
    display: none;
  }
  .cs_site_header .cs_topbar_links .cs_language_switcher_wrap {
    display: block;
  }
  .cs_site_header .cs_header_search {
    padding-top: 90px;
  }
}

/*=============================================
  Language Switcher
===============================================*/
.cs_language_switcher_wrap {
  position: relative;
}
.cs_language_switcher_wrap .cs_language_switcher {
  display: inline-flex;
  align-items: center;
  gap: 4px;
  padding: 0;
  border: none;
  background: transparent;
  color: inherit;
  font: inherit;
  cursor: pointer;
  text-transform: capitalize;
  transition: color 0.3s ease;
}
.cs_language_switcher_wrap .cs_language_switcher i {
  font-size: 16px;
  transition: transform 0.3s ease;
}
.cs_language_switcher_wrap .cs_language_switcher:hover {
  color: var(--accent-color);
}
.cs_language_switcher_wrap .cs_language_dropdown {
  display: none;
  position: absolute;
  top: calc(100% + 12px);
  right: 0;
  min-width: 140px;
  padding: 8px 0;
  background-color: var(--white-color);
  border: 1px solid var(--gray4-border);
  box-shadow: 0 16px 40px rgba(44, 44, 44, 0.12);
  border-radius: 6px;
  z-index: 200;
}
.cs_language_switcher_wrap .cs_language_dropdown button {
  display: block;
  width: 100%;
  padding: 7px 18px;
  border: none;
  background: transparent;
  text-align: left;
  font: inherit;
  color: var(--secondary-color);
  cursor: pointer;
  transition: all 0.25s ease;
}
.cs_language_switcher_wrap .cs_language_dropdown button:hover {
  color: var(--primary-color);
  background-color: var(--border-color);
}

/*=============================================
  Header Search Overlay
===============================================*/
.cs_header_search {
  position: fixed;
  inset: 0;
  z-index: 1100;
  display: flex;
  align-items: flex-start;
  justify-content: center;
  padding: 120px 24px 0;
  background-color: rgba(44, 44, 44, 0.55);
  backdrop-filter: blur(4px);
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.35s ease, visibility 0.35s ease;
}
.cs_header_search.active {
  opacity: 1;
  visibility: visible;
}
.cs_header_search .cs_header_search_in {
  position: relative;
  width: min(720px, 100%);
  transform: translateY(-20px);
  transition: transform 0.4s ease;
}
.cs_header_search.active .cs_header_search_in {
  transform: translateY(0);
}
.cs_header_search .cs_search_form {
  display: flex;
  align-items: center;
  background-color: var(--white-color);
  border-radius: 8px;
  overflow: hidden;
}
.cs_header_search .cs_search_form input {
  flex: 1;
  height: 64px;
  padding: 0 24px;
  border: none;
  outline: none;
  font-family: var(--secondary-font);
  font-size: 16px;
  color: var(--primary-color);
}
.cs_header_search .cs_search_form button {
  width: 64px;
  height: 64px;
  flex: none;
  border: none;
  background-color: var(--accent-color);
  color: var(--white-color);
  font-size: 22px;
  cursor: pointer;
  transition: background-color 0.3s ease;
}
.cs_header_search .cs_search_form button:hover {
  background-color: var(--primary-color);
}
.cs_header_search .cs_close {
  position: absolute;
  top: -56px;
  right: 0;
  width: 40px;
  height: 40px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  color: var(--white-color);
  font-size: 24px;
  cursor: pointer;
  transition: transform 0.3s ease;
}
.cs_header_search .cs_close:hover {
  transform: rotate(90deg);
}

.cs_footer_style_1, .cs_footer_style_5, .cs_footer_style_4, .cs_footer_style_3, .cs_footer_style_2 {
  padding: 116px 0 0;
  position: relative;
}
.cs_footer_style_1::before, .cs_footer_style_5::before, .cs_footer_style_4::before, .cs_footer_style_3::before, .cs_footer_style_2::before {
  content: "";
  height: 116px;
  position: absolute;
  left: 0;
  top: 0;
  right: 0;
  background-color: var(--white-color);
}
.cs_footer_style_1 .cs_footer_main, .cs_footer_style_5 .cs_footer_main, .cs_footer_style_4 .cs_footer_main, .cs_footer_style_3 .cs_footer_main, .cs_footer_style_2 .cs_footer_main {
  padding: 64px 0 60px;
}
.cs_footer_style_1 .cs_footer_grid, .cs_footer_style_5 .cs_footer_grid, .cs_footer_style_4 .cs_footer_grid, .cs_footer_style_3 .cs_footer_grid, .cs_footer_style_2 .cs_footer_grid {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr 1fr;
  gap: 24px;
}
.cs_footer_style_1 .cs_footer_widget .cs_footer_logo, .cs_footer_style_5 .cs_footer_widget .cs_footer_logo, .cs_footer_style_4 .cs_footer_widget .cs_footer_logo, .cs_footer_style_3 .cs_footer_widget .cs_footer_logo, .cs_footer_style_2 .cs_footer_widget .cs_footer_logo {
  display: block;
  max-width: 100px;
  margin-bottom: 28px;
}
.cs_footer_style_1 .cs_footer_widget .cs_footer_widget_title, .cs_footer_style_5 .cs_footer_widget .cs_footer_widget_title, .cs_footer_style_4 .cs_footer_widget .cs_footer_widget_title, .cs_footer_style_3 .cs_footer_widget .cs_footer_widget_title, .cs_footer_style_2 .cs_footer_widget .cs_footer_widget_title {
  margin-bottom: 24px;
}
.cs_footer_style_1 .cs_text_widget, .cs_footer_style_5 .cs_text_widget, .cs_footer_style_4 .cs_text_widget, .cs_footer_style_3 .cs_text_widget, .cs_footer_style_2 .cs_text_widget {
  width: min(100%, 312px);
}
.cs_footer_style_1 .cs_text_widget .cs_footer_widget_title, .cs_footer_style_5 .cs_text_widget .cs_footer_widget_title, .cs_footer_style_4 .cs_text_widget .cs_footer_widget_title, .cs_footer_style_3 .cs_text_widget .cs_footer_widget_title, .cs_footer_style_2 .cs_text_widget .cs_footer_widget_title {
  margin-bottom: 12px;
}
.cs_footer_style_1 .cs_footer_contact, .cs_footer_style_5 .cs_footer_contact, .cs_footer_style_4 .cs_footer_contact, .cs_footer_style_3 .cs_footer_contact, .cs_footer_style_2 .cs_footer_contact,
.cs_footer_style_1 .cs_footer_links,
.cs_footer_style_5 .cs_footer_links,
.cs_footer_style_4 .cs_footer_links,
.cs_footer_style_3 .cs_footer_links,
.cs_footer_style_2 .cs_footer_links {
  display: flex;
  gap: 8px;
  flex-direction: column;
}
.cs_footer_style_1 .cs_footer_contact span, .cs_footer_style_5 .cs_footer_contact span, .cs_footer_style_4 .cs_footer_contact span, .cs_footer_style_3 .cs_footer_contact span, .cs_footer_style_2 .cs_footer_contact span,
.cs_footer_style_1 .cs_footer_links span,
.cs_footer_style_5 .cs_footer_links span,
.cs_footer_style_4 .cs_footer_links span,
.cs_footer_style_3 .cs_footer_links span,
.cs_footer_style_2 .cs_footer_links span {
  color: var(--white-color);
}
.cs_footer_style_1 .cs_footer_contact a:hover, .cs_footer_style_5 .cs_footer_contact a:hover, .cs_footer_style_4 .cs_footer_contact a:hover, .cs_footer_style_3 .cs_footer_contact a:hover, .cs_footer_style_2 .cs_footer_contact a:hover,
.cs_footer_style_1 .cs_footer_links a:hover,
.cs_footer_style_5 .cs_footer_links a:hover,
.cs_footer_style_4 .cs_footer_links a:hover,
.cs_footer_style_3 .cs_footer_links a:hover,
.cs_footer_style_2 .cs_footer_links a:hover {
  color: var(--accent-color);
}
.cs_footer_style_1 .cs_social_btns_style_1, .cs_footer_style_5 .cs_social_btns_style_1, .cs_footer_style_4 .cs_social_btns_style_1, .cs_footer_style_3 .cs_social_btns_style_1, .cs_footer_style_2 .cs_social_btns_style_1 {
  gap: 10px;
}
.cs_footer_style_1 .cs_social_btns_style_1 a, .cs_footer_style_5 .cs_social_btns_style_1 a, .cs_footer_style_4 .cs_social_btns_style_1 a, .cs_footer_style_3 .cs_social_btns_style_1 a, .cs_footer_style_2 .cs_social_btns_style_1 a {
  color: var(--gray2-color);
  background-color: var(--primary-color);
}
.cs_footer_style_1 .cs_social_btns_style_1 a:hover, .cs_footer_style_5 .cs_social_btns_style_1 a:hover, .cs_footer_style_4 .cs_social_btns_style_1 a:hover, .cs_footer_style_3 .cs_social_btns_style_1 a:hover, .cs_footer_style_2 .cs_social_btns_style_1 a:hover {
  color: var(--white-color);
  background-color: var(--accent-color);
}
.cs_footer_style_1 .cs_footer_bottom, .cs_footer_style_5 .cs_footer_bottom, .cs_footer_style_4 .cs_footer_bottom, .cs_footer_style_3 .cs_footer_bottom, .cs_footer_style_2 .cs_footer_bottom {
  padding: 32px 0;
  position: relative;
}
.cs_footer_style_1 .cs_footer_bottom::before, .cs_footer_style_5 .cs_footer_bottom::before, .cs_footer_style_4 .cs_footer_bottom::before, .cs_footer_style_3 .cs_footer_bottom::before, .cs_footer_style_2 .cs_footer_bottom::before {
  display: block;
  content: "";
  height: 1px;
  width: min(100%, 1722px);
  margin: -32px auto 24px;
  background-color: rgba(255, 255, 255, 0.1);
}
.cs_footer_style_1 .cs_footer_bottom .cs_footer_bottom_in, .cs_footer_style_5 .cs_footer_bottom .cs_footer_bottom_in, .cs_footer_style_4 .cs_footer_bottom .cs_footer_bottom_in, .cs_footer_style_3 .cs_footer_bottom .cs_footer_bottom_in, .cs_footer_style_2 .cs_footer_bottom .cs_footer_bottom_in {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 16px 24px;
}
.cs_footer_style_1 .cs_footer_copyright a, .cs_footer_style_5 .cs_footer_copyright a, .cs_footer_style_4 .cs_footer_copyright a, .cs_footer_style_3 .cs_footer_copyright a, .cs_footer_style_2 .cs_footer_copyright a {
  color: var(--accent-color);
}
.cs_footer_style_1 .cs_footer_copyright a:hover, .cs_footer_style_5 .cs_footer_copyright a:hover, .cs_footer_style_4 .cs_footer_copyright a:hover, .cs_footer_style_3 .cs_footer_copyright a:hover, .cs_footer_style_2 .cs_footer_copyright a:hover {
  text-decoration: underline;
}
.cs_footer_style_1 .cs_footer_payments, .cs_footer_style_5 .cs_footer_payments, .cs_footer_style_4 .cs_footer_payments, .cs_footer_style_3 .cs_footer_payments, .cs_footer_style_2 .cs_footer_payments {
  flex: none;
}
.cs_footer_style_1 .cs_newsletter_style_1, .cs_footer_style_5 .cs_newsletter_style_1, .cs_footer_style_4 .cs_newsletter_style_1, .cs_footer_style_3 .cs_newsletter_style_1, .cs_footer_style_2 .cs_newsletter_style_1 {
  margin-top: -116px;
  margin-bottom: 64px;
}
@media (max-width: 991px) {
  .cs_footer_style_1 .cs_newsletter_style_1, .cs_footer_style_5 .cs_newsletter_style_1, .cs_footer_style_4 .cs_newsletter_style_1, .cs_footer_style_3 .cs_newsletter_style_1, .cs_footer_style_2 .cs_newsletter_style_1 {
    margin-bottom: 0px;
  }
  .cs_footer_style_1 .cs_footer_main, .cs_footer_style_5 .cs_footer_main, .cs_footer_style_4 .cs_footer_main, .cs_footer_style_3 .cs_footer_main, .cs_footer_style_2 .cs_footer_main {
    padding: 50px 0 30px;
  }
  .cs_footer_style_1 .cs_footer_grid, .cs_footer_style_5 .cs_footer_grid, .cs_footer_style_4 .cs_footer_grid, .cs_footer_style_3 .cs_footer_grid, .cs_footer_style_2 .cs_footer_grid {
    grid-template-columns: 1.2fr 1fr;
    gap: 30px 24px;
  }
}
@media (max-width: 767px) {
  .cs_footer_style_1 .cs_footer_grid, .cs_footer_style_5 .cs_footer_grid, .cs_footer_style_4 .cs_footer_grid, .cs_footer_style_3 .cs_footer_grid, .cs_footer_style_2 .cs_footer_grid {
    grid-template-columns: 1fr;
  }
  .cs_footer_style_1 .cs_text_widget, .cs_footer_style_5 .cs_text_widget, .cs_footer_style_4 .cs_text_widget, .cs_footer_style_3 .cs_text_widget, .cs_footer_style_2 .cs_text_widget {
    width: 100%;
  }
}

.cs_footer_style_2 {
  padding: 0;
}
.cs_footer_style_2::before {
  height: 218px;
  top: initial;
  bottom: 0;
}
.cs_footer_style_2 .cs_footer_bottom::before {
  display: none;
}

.cs_footer_style_3 {
  padding: 0;
}
.cs_footer_style_3::before {
  height: 240px;
}
.cs_footer_style_3 .cs_section_heading_style_1 {
  margin-bottom: 32px;
}

.cs_footer_style_4 {
  padding: 0;
}
.cs_footer_style_4::before {
  display: none;
}
.cs_footer_style_4 .cs_social_btns_style_1 a {
  color: var(--primary-color);
  background-color: var(--white-color);
}
.cs_footer_style_4 .cs_footer_contact span {
  color: var(--primary-color);
}
.cs_footer_style_4 .cs_footer_bottom::before {
  opacity: 0.3;
  background-color: var(--gray2-color);
}

.cs_footer_style_5 {
  padding: 94px 0 0;
}
.cs_footer_style_5::before {
  height: 94px;
}
.cs_footer_style_5 .cs_newsletter_style_1 {
  padding: 70px 88px;
  align-items: center;
  margin-top: -94px;
  margin-bottom: 0;
}
.cs_footer_style_5 .cs_newsletter_style_1 .cs_newsletter_form input {
  color: var(--white-color);
  border-color: var(--gray4-color);
  background: rgba(32, 32, 32, 0.85);
}
.cs_footer_style_5 .cs_newsletter_style_1 .cs_newsletter_form input:focus {
  border-color: var(--accent-color);
}
.cs_footer_style_5 .cs_newsletter_style_1 .cs_newsletter_form .cs_btn_style_1 {
  background: rgba(32, 32, 32, 0.85);
  border: 1px solid var(--accent-color);
}
.cs_footer_style_5 .cs_newsletter_style_1 .cs_newsletter_form .cs_btn_style_1:hover {
  background-color: var(--accent-color);
}
@media (max-width: 991px) {
  .cs_footer_style_5 .cs_newsletter_style_1 {
    padding: 50px 20px;
  }
}

.cs_instagram_style_1 .cs_instagram_link {
  display: block;
  height: 100%;
}
.cs_instagram_style_1 .cs_instagram_link::before {
  content: "";
  position: absolute;
  inset: 0;
  opacity: 0;
  pointer-events: none;
  background-color: var(--primary-color);
  transition: opacity 0.3s ease-in-out;
}
.cs_instagram_style_1 .cs_instagram_link img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}
.cs_instagram_style_1 .cs_instagram_link .cs_instagram_icon {
  position: absolute;
  left: 50%;
  top: 50%;
  z-index: 2;
  color: var(--primary-color);
  transform: translate(-50%, -50%) scale(0);
  transition: transform 0.4s cubic-bezier(0.455, 0.03, 0.515, 0.955);
}
.cs_instagram_style_1 .cs_instagram_link:hover::before {
  opacity: 0.5;
}
.cs_instagram_style_1 .cs_instagram_link:hover .cs_instagram_icon {
  color: var(--accent-color);
  transform: translate(-50%, -50%) scale(1.5);
}

/*==================================
  Newsletter
===================================*/
.cs_newsletter_style_1 {
  position: relative;
  z-index: 2;
  padding: 64px 88px;
  overflow: hidden;
  display: grid;
  gap: 24px;
  grid-template-columns: 1fr 1fr;
  justify-content: space-between;
}
.cs_newsletter_style_1 .cs_newsletter_heading {
  margin-bottom: 12px;
}
.cs_newsletter_style_1 .cs_newsletter_form {
  position: relative;
  display: flex;
  gap: 10px;
  flex-direction: column;
}
.cs_newsletter_style_1 .cs_newsletter_form input {
  display: block;
  width: 100%;
  padding: 15px 16px;
  border: 0;
  outline: 0;
  color: var(--primary-color);
  border: 1px solid var(--secondary-color);
  background-color: rgba(255, 255, 255, 0.9);
}
.cs_newsletter_style_1 .cs_newsletter_form input::-moz-placeholder {
  color: var(--secondary-color);
}
.cs_newsletter_style_1 .cs_newsletter_form input::placeholder {
  color: var(--secondary-color);
}
.cs_newsletter_style_1 .cs_newsletter_form .cs_btn_style_1 {
  border: 0;
  position: absolute;
  top: 6px;
  right: 6px;
  bottom: 6px;
}
.cs_newsletter_style_1 .cs_newsletter_note {
  margin: 16px 0 0;
}
.cs_newsletter_style_1.cs_type_1 {
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 0;
  padding: 48px 24px;
  text-align: center;
  background-color: var(--gray5-color);
  border: 1px solid var(--gray4-color);
}
.cs_newsletter_style_1.cs_type_1 .cs_newsletter_heading {
  margin-bottom: 20px;
}
.cs_newsletter_style_1.cs_type_1 .cs_newsletter_title {
  margin-bottom: 8px;
}
.cs_newsletter_style_1.cs_type_1 .cs_newsletter_form {
  gap: 12px;
  margin-bottom: 12px;
}
.cs_newsletter_style_1.cs_type_1 .cs_newsletter_form input {
  border-color: var(--gray4-color);
  background-color: var(--white-color);
}
.cs_newsletter_style_1.cs_type_1 .cs_newsletter_form .cs_btn_style_1 {
  position: static;
  top: auto;
  right: auto;
  bottom: auto;
  width: 100%;
  padding: 15px 24px;
}
@media (max-width: 450px) {
  .cs_newsletter_style_1.cs_type_1 {
    padding: 32px 20px;
  }
}
@media (max-width: 1399px) {
  .cs_newsletter_style_1 {
    padding: 40px;
  }
}
@media (max-width: 991px) {
  .cs_newsletter_style_1 {
    padding: 30px 15px 35px;
    grid-template-columns: 1fr;
  }
}
@media (max-width: 450px) {
  .cs_newsletter_style_1 .cs_newsletter_form input {
    padding: 10px 16px;
  }
  .cs_newsletter_style_1 .cs_newsletter_form .cs_btn_style_1 {
    width: 100%;
    position: initial;
    top: initial;
    right: initial;
    bottom: initial;
    padding: 11px 24px;
  }
}

/*====================================================
 08. Slider
======================================================*/
.swiper .swiper-slide {
  width: auto;
  height: auto;
}

/*===================================================
  Effect on active slide
=====================================================*/
.swiper-slide .cs_hero_label,
.swiper-slide .cs_hero_title,
.swiper-slide .cs_hero_subtitle,
.swiper-slide .cs_hero_btns {
  opacity: 0;
  transform: translateY(30px);
}

.swiper-slide-active .cs_hero_label,
.swiper-slide-active .cs_hero_title,
.swiper-slide-active .cs_hero_subtitle,
.swiper-slide-active .cs_hero_btns {
  opacity: 1;
  transform: translateY(0);
  transition: opacity 0.2s ease, transform 0.4s cubic-bezier(0.44, 0.35, 0.45, 0.55);
}
.swiper-slide-active .cs_hero_label {
  transition-delay: 0.3s;
}
.swiper-slide-active .cs_hero_title {
  transition-delay: 0.45s;
}
.swiper-slide-active .cs_hero_subtitle {
  transition-delay: 0.6s;
}
.swiper-slide-active .cs_hero_btns {
  transition-delay: 0.75s;
}
.swiper-slide-active .cs_product_style_1 {
  transition-delay: 0.9s;
}
.swiper-slide-active .cs_product_style_1:nth-child(2) {
  transition-delay: 1.05s;
}

/*===================================================
 Slider Controller
=====================================================*/
.cs_slider_controller_1 .cs_controller_in {
  display: flex;
  align-items: center;
  gap: 64px;
}
.cs_slider_controller_1 .cs_slider_nav {
  display: inline-flex;
  align-items: center;
  cursor: pointer;
  color: var(--primary-color);
  transition: color 0.3s ease;
}
.cs_slider_controller_1 .cs_slider_nav i {
  flex: none;
  font-size: 30px;
  line-height: 1em;
}
.cs_slider_controller_1 .cs_slider_nav:hover {
  color: var(--accent-color);
}
.cs_slider_controller_1 .cs_slider_nav.swiper-button-disabled {
  opacity: 0.4;
  cursor: default;
}
.cs_slider_controller_1 .cs_slider_nav.swiper-button-disabled:hover {
  color: var(--primary-color);
}
.cs_slider_controller_1 .cs_slider_fraction {
  position: static;
  width: auto;
  font-size: 14px;
}
.cs_slider_controller_1 .cs_slider_fraction .swiper-pagination-current {
  font-weight: 500;
  font-size: 22px;
  color: var(--primary-color);
}
@media (max-width: 991px) {
  .cs_slider_controller_1 .cs_controller_in {
    gap: 30px;
  }
}

.cs_slider_controller_2, .cs_slider_controller_3 {
  display: flex;
  gap: 10px;
  align-items: center;
}
.cs_slider_controller_2 .cs_slider_nav, .cs_slider_controller_3 .cs_slider_nav {
  flex-shrink: 0;
  display: flex;
  gap: 10px;
}
.cs_slider_controller_2 .cs_slider_arrow, .cs_slider_controller_3 .cs_slider_arrow {
  width: 50px;
  height: 50px;
  flex: none;
  cursor: pointer;
  padding: 10px;
  color: var(--primary-color);
  background-color: var(--white-color);
  border: 2px solid var(--gray4-color);
  transition: color 0.3s ease, background-color 0.3s ease, border-color 0.3s ease;
}
.cs_slider_controller_2 .cs_slider_arrow i, .cs_slider_controller_3 .cs_slider_arrow i {
  flex: none;
  font-size: 30px;
  line-height: 1em;
}
.cs_slider_controller_2 .cs_slider_arrow:hover, .cs_slider_controller_3 .cs_slider_arrow:hover {
  color: var(--white-color);
  background-color: var(--accent-color);
  border-color: var(--accent-color);
}
.cs_slider_controller_2 .cs_slider_arrow.swiper-button-disabled, .cs_slider_controller_3 .cs_slider_arrow.swiper-button-disabled {
  cursor: default;
}
.cs_slider_controller_2 .cs_slider_arrow.swiper-button-disabled:hover, .cs_slider_controller_3 .cs_slider_arrow.swiper-button-disabled:hover {
  color: var(--primary-color);
  background-color: var(--white-color);
  border-color: var(--gray4-color);
}
.cs_slider_controller_2 .cs_slider_progress, .cs_slider_controller_3 .cs_slider_progress {
  position: relative;
  top: auto;
  left: auto;
  flex: 1;
  width: auto;
  height: 3px;
  background-color: var(--gray4-color);
}
.cs_slider_controller_2 .cs_slider_progress .swiper-pagination-progressbar-fill, .cs_slider_controller_3 .cs_slider_progress .swiper-pagination-progressbar-fill {
  background-color: var(--accent-color);
  transition: transform 0.3s linear;
}

.cs_slider_controller_3 {
  justify-content: center;
  gap: 44px;
}
.cs_slider_controller_3::before, .cs_slider_controller_3::after {
  content: "";
  flex: 0 1 248px;
  height: 1px;
  background-color: var(--gray4-color);
}
@media (max-width: 575px) {
  .cs_slider_controller_3 {
    gap: 20px;
  }
  .cs_slider_controller_3::before, .cs_slider_controller_3::after {
    flex-basis: 80px;
  }
}

.cs_pagination_style_1 {
  position: static;
  display: flex;
  align-items: center;
  gap: 10px;
  width: auto;
  text-align: left;
}
.cs_pagination_style_1 .swiper-pagination-bullet {
  width: 9px;
  height: 9px;
  margin: 0 !important;
  opacity: 1;
  border-radius: 100px;
  background-color: var(--primary-color);
  transition: width 0.3s ease;
}
.cs_pagination_style_1 .swiper-pagination-bullet-active {
  width: 40px;
  opacity: 1;
}

.cs_pagination_style_2 {
  position: static;
  display: flex;
  align-items: center;
  gap: 4px;
  margin-top: 48px;
}
.cs_pagination_style_2 .swiper-pagination-bullet {
  width: 16px;
  height: 16px;
  margin: 0 !important;
  opacity: 1;
  position: relative;
  background-color: transparent;
  border: 1px solid transparent;
  transition: width 0.3s ease;
}
.cs_pagination_style_2 .swiper-pagination-bullet::before {
  content: "";
  width: 8px;
  height: 8px;
  border-radius: inherit;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  background-color: var(--primary-color);
}
.cs_pagination_style_2 .swiper-pagination-bullet-active {
  border-color: var(--primary-color);
}

/*===================================================
 Arrow-only pagination
=====================================================*/
.cs_pagination_arrows {
  position: static;
  display: flex;
  align-items: center;
  gap: 10px;
  width: auto;
}
.cs_pagination_arrows .cs_pagination_arrow {
  width: 50px;
  height: 50px;
  flex: none;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  padding: 10px;
  color: var(--primary-color);
  background-color: var(--white-color);
  border: 2px solid var(--gray4-color);
  transition: color 0.3s ease, background-color 0.3s ease, border-color 0.3s ease;
}
.cs_pagination_arrows .cs_pagination_arrow i {
  flex: none;
  font-size: 30px;
  line-height: 1em;
}
.cs_pagination_arrows .cs_pagination_arrow:hover {
  color: var(--white-color);
  background-color: var(--accent-color);
  border-color: var(--accent-color);
}
.cs_pagination_arrows .cs_pagination_arrow.swiper-button-disabled {
  opacity: 0.4;
  cursor: default;
}
.cs_pagination_arrows .cs_pagination_arrow.swiper-button-disabled:hover {
  color: var(--primary-color);
  background-color: var(--white-color);
  border-color: var(--gray4-color);
}

/*===================================================
 Marquee Text Slider
=====================================================*/
.cs_marquee_section .container-fluid {
  max-width: 1920px;
}
.cs_marquee_section .cs_fs_96 {
  font-size: clamp(40px, 6vw, 96px);
}
.cs_marquee_section.cs_type_1 {
  padding: 24px 0;
}
.cs_marquee_section.cs_type_1 .cs_marquee_item {
  height: 100%;
  line-height: 1.22em;
}
.cs_marquee_section.cs_type_1 img {
  width: clamp(60px, 6vw, 100px);
}

.cs_marquee_slider {
  padding: 24px 0;
}
.cs_marquee_slider .swiper-slide {
  width: auto !important;
}
.cs_marquee_slider .cs_marquee_item {
  display: flex;
  gap: 30px;
  align-items: center;
  text-wrap: nowrap;
}
.cs_marquee_slider .cs_marquee_item span,
.cs_marquee_slider .cs_marquee_item img {
  display: block;
}

/*===================================================
 Instagram Slider 
=====================================================*/
.cs_instagram_slider .swiper-slide {
  height: 266px;
}
.cs_instagram_slider .swiper-slide:nth-child(odd) {
  height: 246px;
}
@media (max-width: 575px) {
  .cs_instagram_slider .swiper-slide {
    height: 246px;
  }
  .cs_instagram_slider .swiper-slide:nth-child(odd) {
    height: 226px;
  }
}

/*================================================================
  09. Video Modal
==================================================================*/
.cs_video_popup {
  position: fixed;
  z-index: 1000;
  top: 0;
  width: 100%;
  height: 100%;
  left: -100%;
  transition-delay: 0.3s;
}

.cs_video_popup.active {
  left: 0;
  transition-delay: 0s;
  left: 0;
}

.cs_video_popup-overlay {
  position: absolute;
  left: 0;
  right: 0;
  background: #000;
  transition: all 0.4s ease-out;
  opacity: 0;
}

.cs_video_popup.active .cs_video_popup-overlay {
  opacity: 0.8;
  height: 100%;
  background: rgba(0, 0, 0, 0.5);
}

.cs_video_popup-content {
  position: absolute;
  left: 0;
  top: 0;
  right: 0;
  bottom: 0;
  overflow: auto;
  -webkit-overflow-scrolling: touch;
  font-size: 0;
  text-align: center;
  transition: all 0.4s ease-out;
  transform: translateY(100px);
  opacity: 0;
  visibility: hidden;
  padding: 15px;
}

.cs_video_popup.active .cs_video_popup-content {
  transform: translateY(0);
  opacity: 1;
  visibility: visible;
}

.cs_video_popup-content:after {
  content: "";
  display: inline-block;
  height: calc(100% + 1px);
  vertical-align: middle;
}

.cs_video_popup_container {
  display: inline-block;
  position: relative;
  text-align: left;
  background: var(--white-color);
  max-width: 1380px;
  width: 100%;
  vertical-align: middle;
}

.cs_video_popup_container .embed-responsive {
  width: 100%;
}

.embed-responsive {
  position: relative;
  display: block;
  height: 0;
  padding: 0;
  overflow: hidden;
  height: 100%;
}

.embed-responsive-16by9::before {
  display: block;
  content: "";
  padding-top: 56.25%;
}

.embed-responsive iframe,
.embed-responsive video {
  position: absolute;
  top: 0;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 100%;
  border: 0;
}

.cs_video_popup_close {
  position: absolute;
  top: 0;
  right: 0;
  width: 40px;
  height: 40px;
  background: #d90d0d;
  cursor: pointer;
  transition: all 0.4s ease-in-out;
}

.cs_video_popup iframe {
  width: 100%;
  height: 100%;
  position: absolute;
}

.cs_video_popup_close:before {
  content: "";
  display: block;
  position: absolute;
  top: 50%;
  left: 50%;
  width: 20px;
  height: 1px;
  background: var(--white-color);
  margin-left: -10px;
  transform: rotate(-45deg);
  transition: all 0.4s ease-in-out;
}

.cs_video_popup_close:after {
  content: "";
  display: block;
  position: absolute;
  top: 50%;
  left: 50%;
  width: 20px;
  height: 1px;
  background: var(--white-color);
  margin-left: -10px;
  transform: rotate(45deg);
  transition: all 0.4s ease-in-out;
}

.cs_video_popup_close:hover:before,
.cs_video_popup_close:hover:after {
  background: #000;
}

.cs_video_popup-layer {
  position: absolute;
  left: 0;
  bottom: 0;
  right: 0;
}

.cs_video_popup-align {
  overflow: hidden;
}

/*End Video Popup*/
/*========================================================
 10. Section and Layouts
==========================================================*/
.cs_grid_col_2 {
  display: grid;
  gap: 24px;
  grid-template-columns: repeat(2, 1fr);
}
@media (max-width: 575px) {
  .cs_grid_col_2 {
    gap: 24px 16px;
  }
}
@media (max-width: 420px) {
  .cs_grid_col_2 {
    grid-template-columns: 1fr;
  }
}

.cs_grid_col_3 {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 32px 24px;
}
@media (max-width: 1199px) {
  .cs_grid_col_3 {
    grid-template-columns: repeat(3, 1fr);
  }
}
@media (max-width: 767px) {
  .cs_grid_col_3 {
    grid-template-columns: repeat(2, 1fr);
  }
}
@media (max-width: 575px) {
  .cs_grid_col_3 {
    grid-template-columns: 1fr;
    gap: 24px;
  }
}

.cs_grid_col_4 {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 32px 24px;
}
.cs_grid_col_4 .cs_product_promo_3 {
  grid-column: auto/span 2;
}
@media (max-width: 1199px) {
  .cs_grid_col_4 {
    gap: 24px 16px;
  }
}
@media (max-width: 991px) {
  .cs_grid_col_4 {
    grid-template-columns: repeat(2, 1fr);
  }
}
@media (max-width: 420px) {
  .cs_grid_col_4 {
    grid-template-columns: 1fr;
  }
  .cs_grid_col_4 .cs_product_promo_3 {
    grid-column: auto/span 1;
  }
}

.cs_grid_col_5 {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 24px 44px;
}
@media (max-width: 1399px) {
  .cs_grid_col_5 {
    gap: 24px;
  }
}
@media (max-width: 1199px) {
  .cs_grid_col_5 {
    grid-template-columns: repeat(3, 1fr);
  }
}
@media (max-width: 767px) {
  .cs_grid_col_5 {
    grid-template-columns: repeat(2, 1fr);
  }
}
@media (max-width: 575px) {
  .cs_grid_col_5 {
    grid-template-columns: repeat(1, 1fr);
  }
}

/*=========================================================
 Collection Grid and Card
===========================================================*/
.cs_collection_card {
  position: relative;
  display: flex;
  align-items: flex-end;
  min-height: 550px;
}
.cs_collection_card::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(32, 32, 32, 0) 30%, rgba(32, 32, 32, 0.9) 100%);
}
.cs_collection_card .cs_collection_content {
  position: relative;
  z-index: 1;
  padding: 48px;
  max-width: 424px;
}
.cs_collection_card .cs_collection_content .cs_collection_title {
  margin-bottom: 14px;
}
.cs_collection_card .cs_collection_content .cs_collection_desc {
  margin-bottom: 48px;
}
.cs_collection_card .cs_collection_content .cs_btn_style_1 {
  background-color: rgba(32, 32, 32, 0.3);
  border: 1px solid var(--accent-color);
}
.cs_collection_card .cs_collection_content .cs_btn_style_1:hover {
  background-color: var(--accent-color);
}
@media (max-width: 1199px) {
  .cs_collection_card {
    min-height: 480px;
  }
}
@media (max-width: 767px) {
  .cs_collection_card {
    min-height: 440px;
  }
  .cs_collection_card .cs_collection_content {
    padding: 24px 15px 32px;
  }
  .cs_collection_card .cs_collection_content .cs_collection_desc {
    margin-bottom: 24px;
  }
}
@media (max-width: 575px) {
  .cs_collection_card {
    min-height: 400px;
  }
  .cs_collection_card .cs_collection_content {
    width: 100%;
  }
}

.cs_collection_grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 24px;
}
@media (max-width: 991px) {
  .cs_collection_grid {
    grid-template-columns: 1fr;
  }
}

/*=============================================
 11. Feature / Trust Badges
===============================================*/
.cs_feature_section .cs_video_features_container {
  display: flex;
  align-items: flex-end;
  gap: 30px;
  margin-top: -150px;
  position: relative;
  z-index: 12;
  pointer-events: none;
  justify-content: space-between;
}
.cs_feature_section .cs_video_features_container .cs_hero_video_wrap {
  width: min(19%, 312px);
  height: 300px;
}
.cs_feature_section .cs_video_features_container .cs_hero_video_wrap img {
  width: 100%;
  height: 100%;
}
.cs_feature_section .cs_video_features_container .cs_feature_grid {
  flex: 1;
  max-width: 1270px;
}
.cs_feature_section.cs_feature_band .cs_feature_band_in {
  padding: 48px;
  background-color: var(--gray4-color);
}
.cs_feature_section .cs_feature_grid {
  display: flex;
  gap: 24px;
  justify-content: space-between;
}
@media (max-width: 1440px) {
  .cs_feature_section .cs_iconbox_style_1 .cs_iconbox_icon, .cs_feature_section .cs_iconbox_style_2 .cs_iconbox_icon {
    width: 80px;
    height: 80px;
  }
}
@media (max-width: 1399px) {
  .cs_feature_section .cs_video_features_container {
    flex-direction: column;
    align-items: flex-start;
  }
  .cs_feature_section .cs_video_features_container .cs_hero_video_wrap {
    width: 312px;
    height: 300px;
  }
  .cs_feature_section.cs_feature_band .cs_feature_band_in {
    padding: 40px 24px;
  }
}
@media (max-width: 1199px) {
  .cs_feature_section.cs_feature_band .cs_feature_band_in {
    padding: 40px 20px;
  }
  .cs_feature_section .cs_feature_grid {
    gap: 24px 15px;
  }
  .cs_feature_section .cs_iconbox_style_1 .cs_iconbox_icon, .cs_feature_section .cs_iconbox_style_2 .cs_iconbox_icon {
    width: 70px;
    height: 70px;
  }
}
@media (max-width: 991px) {
  .cs_feature_section .cs_video_features_container {
    margin-top: 50px;
  }
  .cs_feature_section .cs_hero_video_wrap {
    display: none;
  }
  .cs_feature_section.cs_feature_band .cs_feature_band_in {
    padding: 40px 15px;
  }
  .cs_feature_section .cs_feature_grid {
    flex-wrap: wrap;
    justify-content: flex-start;
  }
}
@media (max-width: 575px) {
  .cs_feature_section .cs_video_features_container {
    margin-top: 50px;
  }
  .cs_feature_section .cs_hero_video_wrap {
    display: none;
  }
}

/*=============================================
 Shop by Category
===============================================*/
.cs_shop_category .cs_section_heading_style_1 {
  margin-bottom: 32px;
}
.cs_shop_category .cs_slider_controller_2, .cs_shop_category .cs_slider_controller_3 {
  margin-top: 32px;
  width: 100%;
  gap: 40px;
}
.cs_shop_category .cs_category_slider {
  padding-top: 32px;
}
.cs_shop_category .cs_category_slider .swiper-slide:nth-child(odd) {
  transform: translateY(-32px);
}
.cs_shop_category .cs_category_card .cs_category_meta {
  flex-direction: column;
  margin-top: 28px;
}
@media (max-width: 991px) {
  .cs_shop_category .cs_category_slider {
    padding-top: 0;
  }
  .cs_shop_category .cs_category_slider .swiper-slide:nth-child(odd) {
    transform: translateY(0);
  }
}

/*=============================================
 Why Jewlfy is Different
===============================================*/
.cs_why_different .cs_why_different_in {
  display: grid;
  grid-template-columns: minmax(0, 784fr) minmax(0, 536fr);
}
.cs_why_different .cs_why_different_content {
  display: flex;
  gap: 24px;
  flex-direction: column;
  padding: 110px 24px 106px 112px;
}
.cs_why_different .cs_section_heading_style_1 .cs_section_title {
  margin-bottom: 12px;
}
.cs_why_different .cs_why_different_cards {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 24px;
  max-width: 648px;
}
.cs_why_different .cs_why_different_card {
  padding: 24px 24px 28px;
}
.cs_why_different .cs_why_different_card .cs_card_title {
  margin-bottom: 12px;
}
.cs_why_different .cs_why_different_card .cs_card_text {
  color: var(--secondary-color);
}
.cs_why_different .cs_why_different_thumb {
  position: relative;
}
.cs_why_different .cs_why_different_thumb img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}
.cs_why_different.cs_type_1 .cs_why_different_content {
  width: min(100%, 648px);
  padding: 64px 24px 64px 0;
}
.cs_why_different.cs_type_1 .cs_section_heading_style_1 {
  margin-bottom: 12px;
}
@media (max-width: 1199px) {
  .cs_why_different .cs_why_different_content {
    padding: 48px;
  }
  .cs_why_different .cs_why_different_card {
    padding: 20px 15px 24px;
  }
}
@media (max-width: 991px) {
  .cs_why_different .cs_why_different_in {
    grid-template-columns: 1fr;
  }
  .cs_why_different .cs_why_different_thumb {
    order: -1;
  }
  .cs_why_different .cs_why_different_thumb img {
    position: static;
  }
  .cs_why_different.cs_type_1 .cs_why_different_content {
    width: 100%;
    padding: 24px 0 0;
  }
  .cs_why_different.cs_type_1 .cs_section_heading_style_1 {
    margin-bottom: 0;
  }
}
@media (max-width: 767px) {
  .cs_why_different .cs_why_different_content {
    padding: 24px 15px;
  }
  .cs_why_different .cs_why_different_cards {
    grid-template-columns: 1fr;
  }
}

/*=============================================
 Our Partners
===============================================*/
.cs_partners_section .cs_section_heading_style_1 {
  margin-bottom: 40px;
}
.cs_partners_section .cs_partners_slider .swiper-wrapper {
  align-items: center;
  transition-timing-function: linear;
}
.cs_partners_section .cs_partners_slider .swiper-slide {
  width: auto;
}
.cs_partners_section .cs_partner_logo {
  display: flex;
  align-items: center;
  justify-content: center;
  height: 50px;
}
.cs_partners_section .cs_partner_logo img {
  max-width: 100%;
  max-height: 100%;
  width: auto;
  -o-object-fit: contain;
     object-fit: contain;
}
@media (max-width: 991px) {
  .cs_partners_section .cs_section_heading_style_1 {
    margin-bottom: 32px;
  }
}

/*=============================================
 Funfact Counter Component
===============================================*/
.cs_funfact_list {
  padding: 22px 24px;
  display: grid;
  grid-template-columns: 1fr 1.1fr 1fr;
}
.cs_funfact_list .cs_funfact:nth-child(2), .cs_funfact_list .cs_funfact:nth-child(3) {
  display: flex;
  justify-content: center;
}
.cs_funfact_list .cs_funfact:nth-child(2) {
  border-right: 1px solid var(--gray4-color);
  border-left: 1px solid var(--gray4-color);
}
.cs_funfact_list .cs_funfact_number {
  color: var(--primary-color);
  margin-bottom: 4px;
  white-space: nowrap;
  line-height: 1em;
  display: flex;
  align-items: center;
}
.cs_funfact_list .cs_funfact_unit {
  color: inherit;
}
@media (max-width: 991px) {
  .cs_funfact_list {
    padding: 22px 15px;
  }
}
@media (max-width: 575px) {
  .cs_funfact_list {
    gap: 20px 15px;
    grid-template-columns: 1.2fr 1fr 1fr;
  }
  .cs_funfact_list .cs_funfact:nth-child(2), .cs_funfact_list .cs_funfact:nth-child(3) {
    justify-content: flex-start;
  }
  .cs_funfact_list .cs_funfact:nth-child(2) {
    border-right: 0;
    border-left: 0;
  }
}
@media (max-width: 420px) {
  .cs_funfact_list {
    grid-template-columns: 1fr;
  }
}

/*=============================================
 Exclusive Insider Section
===============================================*/
.cs_insider_section_1 .cs_insider_in {
  padding: 64px 0;
  display: grid;
  gap: 24px;
  align-items: center;
  grid-template-columns: 1fr 1.9fr 1fr;
  border-top: 1px solid var(--gray4-color);
  border-bottom: 1px solid var(--gray4-color);
}
.cs_insider_section_1 .cs_insider_info {
  max-width: 370px;
}
.cs_insider_section_1 .cs_insider_info .cs_insider_info_title {
  margin-bottom: 24px;
}
.cs_insider_section_1 .cs_insider_info .cs_info_text {
  display: flex;
  gap: 0 2px;
  flex-wrap: wrap;
}
.cs_insider_section_1 .cs_insider_info .cs_info_text span {
  font-weight: 500;
  color: var(--primary-color);
}
.cs_insider_section_1 .cs_insider_info .cs_insider_info_phone {
  display: inline-block;
  margin-top: 13px;
  color: var(--primary-color);
}
.cs_insider_section_1 .cs_insider_info .cs_insider_info_phone:hover {
  text-decoration: underline;
}
.cs_insider_section_1 .cs_newsletter_style_1 {
  display: block;
  width: min(100%, 648px);
  margin: 0 auto;
  padding: 0;
}
.cs_insider_section_1 .cs_newsletter_style_1 .cs_newsletter_heading {
  max-width: 540px;
  margin: 0 auto 24px;
}
.cs_insider_section_1 .cs_newsletter_style_1 .cs_newsletter_subtitle {
  color: #b8962e;
  margin-bottom: 6px;
}
.cs_insider_section_1 .cs_newsletter_style_1 .cs_newsletter_title {
  margin-bottom: 12px;
}
.cs_insider_section_1 .cs_newsletter_style_1 .cs_newsletter_form {
  width: 100%;
  flex-direction: row;
  text-align: left;
}
.cs_insider_section_1 .cs_newsletter_style_1 .cs_newsletter_form input {
  padding: 15px 16px;
  border-color: var(--gray4-color);
  background-color: var(--gray-color);
}
.cs_insider_section_1 .cs_insider_highlights {
  max-width: 286px;
  margin-left: auto;
}
.cs_insider_section_1 .cs_insider_highlights .cs_highlights_title {
  margin-bottom: 26px;
}
.cs_insider_section_1 .cs_insider_highlights .cs_highlight_tags {
  display: flex;
  flex-wrap: wrap;
  gap: 5px;
}
.cs_insider_section_1 .cs_insider_highlights .cs_highlight_tags a {
  display: inline-block;
  padding: 6px 12px;
  text-wrap: nowrap;
  color: var(--primary-color);
  background-color: var(--gray-color);
  transition: color 0.3s ease, background-color 0.3s ease;
}
.cs_insider_section_1 .cs_insider_highlights .cs_highlight_tags a:hover {
  color: var(--white-color);
  background-color: var(--primary-color);
}
@media (max-width: 1399px) {
  .cs_insider_section_1 .cs_insider_in {
    grid-template-columns: 1fr 1.6fr 1fr;
  }
}
@media (max-width: 991px) {
  .cs_insider_section_1 .cs_insider_in {
    padding: 50px 0;
    align-items: flex-start;
    grid-template-columns: 1fr 1fr;
  }
  .cs_insider_section_1 .cs_newsletter_style_1 {
    width: 100%;
    order: 1;
    grid-column: 1/-1;
  }
  .cs_insider_section_1 .cs_insider_info,
  .cs_insider_section_1 .cs_insider_highlights {
    max-width: 100%;
  }
  .cs_insider_section_1 .cs_insider_info {
    order: 2;
  }
  .cs_insider_section_1 .cs_insider_highlights {
    order: 2;
  }
}
@media (max-width: 575px) {
  .cs_insider_section_1 .cs_insider_in {
    grid-template-columns: 1fr;
  }
  .cs_insider_section_1 .cs_newsletter_style_1 .cs_newsletter_form {
    flex-direction: column;
  }
}

.cs_newsletter_section_1 .cs_newsletter_row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 40px;
  padding: 84px 0;
  border-top: 1px solid var(--border-color);
}
.cs_newsletter_section_1 .cs_newsletter_style_1 {
  display: block;
  width: min(100%, 648px);
  padding: 0;
}
.cs_newsletter_section_1 .cs_newsletter_style_1 .cs_newsletter_heading {
  margin-bottom: 24px;
}
.cs_newsletter_section_1 .cs_newsletter_style_1 .cs_newsletter_subtitle {
  color: #b8962e;
  margin-bottom: 6px;
}
.cs_newsletter_section_1 .cs_newsletter_style_1 .cs_newsletter_title {
  margin-bottom: 12px;
}
.cs_newsletter_section_1 .cs_newsletter_style_1 .cs_newsletter_form {
  width: 100%;
  flex-direction: row;
}
.cs_newsletter_section_1 .cs_newsletter_style_1 .cs_newsletter_form input {
  border: 0;
  background-color: var(--gray-color);
}
.cs_newsletter_section_1 .cs_newsletter_style_1 .cs_newsletter_note {
  margin-top: 12px;
}
.cs_newsletter_section_1 .cs_newsletter_media {
  display: flex;
  gap: 24px;
  align-items: center;
  padding-right: 20px;
}
.cs_newsletter_section_1 .cs_newsletter_media img {
  width: 170px;
  height: 246px;
  -o-object-fit: cover;
     object-fit: cover;
  animation: rotationShake 10s linear infinite;
}
@media (max-width: 1199px) {
  .cs_newsletter_section_1 .cs_newsletter_media img {
    width: 150px;
    height: 220px;
  }
}
@media (max-width: 991px) {
  .cs_newsletter_section_1 {
    padding-bottom: 80px;
  }
  .cs_newsletter_section_1 .cs_newsletter_row {
    flex-direction: column;
    align-items: stretch;
    gap: 40px;
  }
  .cs_newsletter_section_1 .cs_newsletter_style_1 {
    width: 100%;
  }
  .cs_newsletter_section_1 .cs_newsletter_media {
    justify-content: center;
    padding-right: 0;
  }
}
@media (max-width: 575px) {
  .cs_newsletter_section_1 .cs_newsletter_style_1 .cs_newsletter_form {
    flex-direction: column;
  }
  .cs_newsletter_section_1 .cs_newsletter_media {
    display: none;
  }
}

.cs_newsletter_section_2 .cs_newsletter_style_1 {
  display: block;
  width: min(100%, 648px);
  padding: 0;
}
.cs_newsletter_section_2 .cs_newsletter_style_1 .cs_newsletter_title {
  margin-bottom: 24px;
}
.cs_newsletter_section_2 .cs_newsletter_style_1 .cs_newsletter_heading {
  margin-bottom: 48px;
}

.cs_signature_section .cs_section_heading_styel_2 {
  margin-bottom: 32px;
}
.cs_signature_section .cs_product_promo_5 {
  height: 100%;
  width: min(100%, 736px);
}

/*=============================================
 Instagram — Follow us
===============================================*/
.cs_instagram_section .cs_instagram_gallery {
  position: relative;
  aspect-ratio: 1320/546;
}
.cs_instagram_section .cs_instagram_item {
  position: absolute;
  display: block;
  overflow: hidden;
}
.cs_instagram_section .cs_instagram_item img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  transition: transform 0.3s cubic-bezier(0.45, 0.53, 0.5, 0.75);
}
.cs_instagram_section .cs_instagram_item .cs_instagram_icon {
  position: absolute;
  inset: 0;
  font-size: 24px;
  opacity: 0;
  color: var(--white-color);
  background-color: rgba(44, 44, 44, 0.5);
  transition: opacity 0.3s ease-in;
}
.cs_instagram_section .cs_instagram_item:hover img {
  transform: scale(1.04);
}
.cs_instagram_section .cs_instagram_item:hover .cs_instagram_icon {
  opacity: 1;
}
.cs_instagram_section .cs_insta_1 {
  left: 33.94%;
  top: 0;
  width: 40.61%;
  height: 100%;
}
.cs_instagram_section .cs_insta_2 {
  left: 0;
  top: 22.34%;
  width: 32.12%;
  height: 45.79%;
}
.cs_instagram_section .cs_insta_3 {
  left: 16.97%;
  top: 72.53%;
  width: 15.15%;
  height: 27.47%;
}
.cs_instagram_section .cs_insta_4 {
  left: 84.85%;
  top: 22.34%;
  width: 15.15%;
  height: 27.47%;
}
.cs_instagram_section .cs_insta_5 {
  left: 93.33%;
  top: 0;
  width: 6.67%;
  height: 17.95%;
}
.cs_instagram_section .cs_insta_6 {
  left: 76.36%;
  top: 54.21%;
  width: 23.64%;
  height: 45.79%;
}
.cs_instagram_section .cs_instagram_heading {
  position: absolute;
  left: 0;
  top: 10px;
  z-index: 1;
  width: 28%;
  text-align: right;
}
.cs_instagram_section .cs_instagram_title {
  line-height: 1.2em;
}
.cs_instagram_section .cs_instagram_followers {
  position: absolute;
  left: 0;
  bottom: 8px;
  z-index: 1;
}
.cs_instagram_section .cs_instagram_followers .cs_insta_count {
  display: block;
  font-size: 48px;
  font-weight: 700;
  line-height: 1.2em;
}
@media (max-width: 991px) {
  .cs_instagram_section .cs_instagram_gallery {
    aspect-ratio: auto;
    display: grid;
    gap: 24px;
    grid-template-columns: repeat(3, 1fr);
  }
  .cs_instagram_section .cs_instagram_item {
    position: static;
    width: auto;
    height: auto;
    aspect-ratio: 1/1;
  }
  .cs_instagram_section .cs_insta_1 {
    grid-column: span 2;
    grid-row: span 2;
  }
  .cs_instagram_section .cs_instagram_heading,
  .cs_instagram_section .cs_instagram_followers {
    position: static;
    width: auto;
    text-align: center;
    grid-column: 1/-1;
  }
  .cs_instagram_section .cs_instagram_title br {
    display: none;
  }
}
@media (max-width: 575px) {
  .cs_instagram_section .cs_instagram_gallery {
    gap: 16px;
    grid-template-columns: repeat(2, 1fr);
  }
  .cs_instagram_section .cs_insta_1,
  .cs_instagram_section .cs_insta_6 {
    grid-column: span 2;
    grid-row: auto;
  }
  .cs_instagram_section .cs_instagram_followers .cs_insta_count {
    font-size: 40px;
  }
}

/*=========================================================
 Offer Banner
===========================================================*/
.cs_offer_banner_1 {
  overflow: hidden;
  min-height: 700px;
  display: flex;
  align-items: center;
}
.cs_offer_banner_1 .cs_banner_content {
  max-width: 440px;
  height: 100%;
}
.cs_offer_banner_1 .cs_banner_title {
  margin-bottom: 12px;
}
.cs_offer_banner_1 .cs_countdown.cs_style_1 {
  margin: 12px 0 48px;
}
.cs_offer_banner_1 .cs_banner_action {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 16px 12px;
}
@media (max-width: 1199px) {
  .cs_offer_banner_1 {
    min-height: auto;
    padding: 50px 0 55px;
  }
}
@media (max-width: 991px) {
  .cs_offer_banner_1 {
    background-position: left;
  }
  .cs_offer_banner_1 .cs_countdown.cs_style_1 {
    margin: 12px 0 32px;
  }
}

.cs_offer_banner_2 {
  position: relative;
  display: flex;
  align-items: center;
  min-height: 700px;
  padding: 50px 20px;
}
.cs_offer_banner_2::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, var(--black-color) 7%, rgba(32, 32, 32, 0) 53%);
}
.cs_offer_banner_2 .cs_offer_content {
  position: relative;
  z-index: 1;
  max-width: 620px;
  padding-left: 180px;
}
.cs_offer_banner_2 .cs_offer_content .cs_offer_label {
  margin-bottom: 4px;
}
.cs_offer_banner_2 .cs_offer_content .cs_offer_title {
  margin-bottom: 12px;
}
.cs_offer_banner_2 .cs_offer_content .cs_offer_title_sm {
  display: block;
}
.cs_offer_banner_2 .cs_offer_content .cs_offer_desc {
  margin-bottom: 24px;
}
.cs_offer_banner_2 .cs_offer_content .cs_offer_price {
  margin-bottom: 32px;
  display: flex;
  align-items: baseline;
  flex-wrap: wrap;
  gap: 8px;
}
.cs_offer_banner_2 .cs_offer_content .cs_offer_timer_label {
  margin-bottom: 12px;
}
.cs_offer_banner_2 .cs_offer_content .cs_countdown {
  margin-bottom: 24px;
  justify-content: flex-start;
  gap: 11px;
}
.cs_offer_banner_2 .cs_offer_content .cs_countdown .cs_countdown_item {
  display: flex;
  flex-direction: column;
  justify-content: center;
  min-width: 100px;
  height: 70px;
  padding: 0;
  background-color: rgba(32, 32, 32, 0.3);
  border: 1px solid var(--white-color);
}
.cs_offer_banner_2 .cs_offer_content .cs_countdown .cs_countdown_label {
  line-height: 2em;
}
@media (max-width: 767px) {
  .cs_offer_banner_2 .cs_offer_content .cs_countdown {
    gap: 8px;
  }
  .cs_offer_banner_2 .cs_offer_content .cs_countdown .cs_countdown_item {
    min-width: 80px;
  }
}
@media (max-width: 575px) {
  .cs_offer_banner_2 .cs_offer_content .cs_countdown .cs_countdown_item {
    min-width: 72px;
  }
}
.cs_offer_banner_2 .cs_offer_content .cs_offer_action {
  display: flex;
  gap: 13px;
  flex-wrap: wrap;
  align-items: center;
}
.cs_offer_banner_2 .cs_offer_content .cs_btn_style_1 {
  background-color: rgba(32, 32, 32, 0.3);
  border: 1px solid var(--accent-color);
}
.cs_offer_banner_2 .cs_offer_content .cs_btn_style_1:hover {
  background-color: var(--accent-color);
}
@media (max-width: 1199px) {
  .cs_offer_banner_2 .cs_offer_content {
    padding-left: 60px;
    max-width: 500px;
  }
}
@media (max-width: 991px) {
  .cs_offer_banner_2 {
    min-height: auto;
  }
  .cs_offer_banner_2 .cs_offer_content {
    padding-left: 0;
    max-width: 440px;
  }
}

/*=======================================================
 Discover Collections and Card
=========================================================*/
.cs_discover_section .cs_section_heading_style_1 {
  margin-bottom: 24px;
}
.cs_discover_section .cs_filter_nav {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 15px 48px;
  margin: 0 0 40px;
  list-style: none;
  border-bottom: 1px solid var(--border-color);
}
.cs_discover_section .cs_filter_nav .cs_filter_btn {
  position: relative;
  display: inline-block;
  padding-bottom: 10px;
  font-size: 18px;
  line-height: 1.44em;
  color: var(--primary-color);
}
.cs_discover_section .cs_filter_nav .cs_filter_btn::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: -1px;
  width: 100%;
  height: 1px;
  background-color: var(--primary-color);
  transform: scaleX(0);
  transition: transform 0.3s ease;
}
.cs_discover_section .cs_filter_nav .cs_filter_btn:hover, .cs_discover_section .cs_filter_nav .cs_filter_btn.active {
  color: var(--accent-color);
}
.cs_discover_section .cs_filter_nav .cs_filter_btn.active::after {
  transform: scaleX(1);
}
.cs_discover_section .cs_tab {
  display: none;
}
.cs_discover_section .cs_tab.active {
  display: block;
}
.cs_discover_section .cs_discover_foot {
  margin-top: 40px;
}
.cs_discover_section .cs_discover_foot .cs_view_btn:hover {
  color: var(--accent-color);
  text-decoration: underline;
}
@media (max-width: 991px) {
  .cs_discover_section .cs_tab_links {
    gap: 8px 24px;
  }
}

.cs_discover_card {
  position: relative;
  display: flex;
  align-items: flex-end;
  width: 648px;
  min-height: 400px;
}
.cs_discover_card::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(112deg, var(--black-color) 6.98%, rgba(32, 32, 32, 0) 53.07%);
}
.cs_discover_card .cs_discover_content {
  position: relative;
  z-index: 1;
  width: 100%;
  padding: 32px;
}
.cs_discover_card .cs_discover_content .cs_discover_title {
  margin-bottom: 12px;
}
.cs_discover_card .cs_discover_content .cs_discover_price {
  margin-bottom: 48px;
}
@media (max-width: 991px) {
  .cs_discover_card .cs_discover_content {
    padding: 24px;
  }
  .cs_discover_card .cs_discover_content .cs_discover_price {
    margin-bottom: 24px;
  }
}
.cs_discover_card .cs_discover_btn {
  display: inline-block;
}
.cs_discover_card .cs_discover_btn:hover {
  color: var(--accent-color);
}
@media (max-width: 1199px) {
  .cs_discover_card {
    width: 480px;
  }
}
@media (max-width: 767px) {
  .cs_discover_card {
    min-height: 340px;
  }
}
@media (max-width: 575px) {
  .cs_discover_card {
    width: 300px;
    min-height: 220px;
  }
}

/*=======================================================
 Best Sellers — product slider
=========================================================*/
.cs_bestseller_section .cs_section_heading_style_1, .cs_new_arrivals_products .cs_section_heading_style_1, .cs_featured_products .cs_section_heading_style_1 {
  margin-bottom: 32px;
}
.cs_bestseller_section .container .cs_slider_controller_2, .cs_new_arrivals_products .container .cs_slider_controller_2, .cs_featured_products .container .cs_slider_controller_2, .cs_bestseller_section .container .cs_slider_controller_3, .cs_new_arrivals_products .container .cs_slider_controller_3, .cs_featured_products .container .cs_slider_controller_3 {
  max-width: 1370px;
}
.cs_bestseller_section .cs_bestseller_slider_wrap, .cs_new_arrivals_products .cs_bestseller_slider_wrap, .cs_featured_products .cs_bestseller_slider_wrap {
  position: relative;
}
.cs_bestseller_section .cs_slider_controller_2, .cs_new_arrivals_products .cs_slider_controller_2, .cs_featured_products .cs_slider_controller_2, .cs_bestseller_section .cs_slider_controller_3, .cs_new_arrivals_products .cs_slider_controller_3, .cs_featured_products .cs_slider_controller_3 {
  width: calc(100vw - 24px);
  max-width: 1770px;
  position: absolute;
  top: 38%;
  left: 50%;
  z-index: 1;
  transform: translate(-50%, -38%);
  display: flex;
  align-items: center;
  justify-content: space-between;
  pointer-events: none;
}
.cs_bestseller_section .cs_slider_controller_2 .cs_slider_arrow, .cs_new_arrivals_products .cs_slider_controller_2 .cs_slider_arrow, .cs_featured_products .cs_slider_controller_2 .cs_slider_arrow, .cs_bestseller_section .cs_slider_controller_3 .cs_slider_arrow, .cs_new_arrivals_products .cs_slider_controller_3 .cs_slider_arrow, .cs_featured_products .cs_slider_controller_3 .cs_slider_arrow {
  pointer-events: all;
}
.cs_bestseller_section .cs_slider_controller_2.position-static, .cs_new_arrivals_products .cs_slider_controller_2.position-static, .cs_featured_products .cs_slider_controller_2.position-static, .cs_bestseller_section .position-static.cs_slider_controller_3, .cs_new_arrivals_products .position-static.cs_slider_controller_3, .cs_featured_products .position-static.cs_slider_controller_3 {
  width: -moz-max-content;
  width: max-content;
  transform: translate(0);
}
.cs_bestseller_section .cs_bestseller_foot, .cs_new_arrivals_products .cs_bestseller_foot, .cs_featured_products .cs_bestseller_foot {
  margin-top: 64px;
}
@media (max-width: 1199px) {
  .cs_bestseller_section .cs_bestseller_arrow_prev, .cs_new_arrivals_products .cs_bestseller_arrow_prev, .cs_featured_products .cs_bestseller_arrow_prev {
    left: -10px;
  }
  .cs_bestseller_section .cs_bestseller_arrow_next, .cs_new_arrivals_products .cs_bestseller_arrow_next, .cs_featured_products .cs_bestseller_arrow_next {
    right: -10px;
  }
}
@media (max-width: 991px) {
  .cs_bestseller_section .cs_bestseller_heading, .cs_new_arrivals_products .cs_bestseller_heading, .cs_featured_products .cs_bestseller_heading {
    margin-bottom: 32px;
  }
  .cs_bestseller_section .cs_bestseller_arrow, .cs_new_arrivals_products .cs_bestseller_arrow, .cs_featured_products .cs_bestseller_arrow {
    width: 44px;
    height: 44px;
    padding: 7px;
  }
  .cs_bestseller_section .cs_bestseller_arrow_prev, .cs_new_arrivals_products .cs_bestseller_arrow_prev, .cs_featured_products .cs_bestseller_arrow_prev {
    left: 0;
  }
  .cs_bestseller_section .cs_bestseller_arrow_next, .cs_new_arrivals_products .cs_bestseller_arrow_next, .cs_featured_products .cs_bestseller_arrow_next {
    right: 0;
  }
  .cs_bestseller_section .cs_bestseller_foot, .cs_new_arrivals_products .cs_bestseller_foot, .cs_featured_products .cs_bestseller_foot {
    margin-top: 32px;
  }
}

/*=========================================================
 Animations
===========================================================*/
@keyframes rotationShake {
  50% {
    transform: translateX(-40px) rotate(-15deg);
  }
}
/*=====================================================
 12. All Mini Components
=======================================================*/
/*===================================  
 Button Components
=====================================*/
.cs_btn_style_1 {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 10px 24px;
  position: relative;
  overflow: hidden;
  text-wrap: nowrap;
  transition: all 0.4s ease-in-out;
}
.cs_btn_style_1:hover {
  color: var(--white-color);
  background-color: var(--accent-color);
}

.cs_player_btn_style_1 {
  width: 100px;
  height: 100px;
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
  overflow: hidden;
  transition: transform 0.4s cubic-bezier(0.34, 1.56, 0.64, 1);
}
.cs_player_btn_style_1::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 0;
  opacity: 0.5;
  border-radius: inherit;
  background-color: var(--white-color);
}
.cs_player_btn_style_1::after {
  content: "";
  position: absolute;
  z-index: 0;
  left: -50%;
  width: 200%;
  height: 200%;
  background-color: var(--white-color);
  border-radius: 35%;
  animation: cs_player_wave 5s linear infinite, cs_player_fill 4s ease-in-out infinite alternate;
}
.cs_player_btn_style_1 > * {
  position: relative;
  z-index: 1;
  transition: transform 0.4s cubic-bezier(0.34, 1.56, 0.64, 1);
}
.cs_player_btn_style_1:hover > * {
  transform: scale(1.1);
}

/*=======================================================
 Social Buttons Component
=========================================================*/
.cs_social_btns_style_1 {
  display: flex;
  align-items: center;
  gap: 20px;
  z-index: 1;
}
.cs_social_btns_style_1 a {
  width: 35px;
  height: 35px;
  padding: 9px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  overflow: hidden;
}
.cs_social_btns_style_1 a i {
  text-shadow: -30px 0px 0px currentColor;
}
.cs_social_btns_style_1 a:hover i {
  transform: translateX(30px);
  transition: transform 0.4s cubic-bezier(0.455, 0.03, 0.515, 1);
}

/*========================================================
  Scroll Top Button
==========================================================*/
.cs_scrollup_btn {
  width: 50px;
  height: 50px;
  font-size: 20px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  color: var(--white-color);
  background-color: var(--accent-color);
  border: 2px solid var(--accent-color);
  border-radius: 50%;
  position: fixed;
  right: 20px;
  bottom: 20px;
  z-index: 999999;
  cursor: pointer;
  opacity: 0;
  transform: translateY(120px) scale(0);
  transition: all 0.4s cubic-bezier(0.68, 0.55, 0.27, 1);
}
.cs_scrollup_btn.show {
  opacity: 1;
  transform: translateY(0) scale(1);
}
.cs_scrollup_btn:hover {
  color: var(--accent-color);
  background-color: var(--white-color);
}

/*=============================================
 Iconbox Component
===============================================*/
.cs_iconbox_style_1, .cs_iconbox_style_2 {
  display: flex;
  gap: 24px;
}
.cs_iconbox_style_1 .cs_iconbox_icon, .cs_iconbox_style_2 .cs_iconbox_icon {
  flex: none;
  width: 88px;
  height: 88px;
  padding: 19px;
}
.cs_iconbox_style_1 .cs_iconbox_icon img, .cs_iconbox_style_2 .cs_iconbox_icon img {
  width: 100%;
  height: 100%;
  border-radius: 0;
  transition: transform 0.3s cubic-bezier(0.45, 0.45, 0.35, 1.65);
}
.cs_iconbox_style_1 .cs_iconbox_info, .cs_iconbox_style_2 .cs_iconbox_info {
  display: flex;
  flex-direction: column;
  justify-content: center;
}
.cs_iconbox_style_1 .cs_iconbox_title, .cs_iconbox_style_2 .cs_iconbox_title {
  margin-bottom: 6px;
}
.cs_iconbox_style_1:hover .cs_iconbox_icon img, .cs_iconbox_style_2:hover .cs_iconbox_icon img {
  animation: bubleUp 0.6s cubic-bezier(0.45, 0.45, 0.35, 1.65);
}
.cs_iconbox_style_1.cs_iconbox_center, .cs_iconbox_center.cs_iconbox_style_2 {
  flex-direction: column;
  align-items: center;
  text-align: center;
  gap: 32px;
}
.cs_iconbox_style_1.cs_iconbox_center .cs_iconbox_info, .cs_iconbox_center.cs_iconbox_style_2 .cs_iconbox_info {
  align-items: center;
}
.cs_iconbox_style_1.cs_iconbox_center .cs_iconbox_title, .cs_iconbox_center.cs_iconbox_style_2 .cs_iconbox_title {
  margin-bottom: 12px;
}
@media (max-width: 1199px) {
  .cs_iconbox_style_1, .cs_iconbox_style_2 {
    gap: 24px 15px;
  }
  .cs_iconbox_style_1 .cs_iconbox_icon, .cs_iconbox_style_2 .cs_iconbox_icon {
    width: 60px;
    height: 60px;
    padding: 12px;
  }
}

.cs_iconbox_style_2.cs_iconbox_center {
  align-items: flex-start;
  text-align: left;
  gap: 6px;
}
.cs_iconbox_style_2.cs_iconbox_center .cs_iconbox_info {
  align-items: start;
}
.cs_iconbox_style_2.cs_iconbox_center .cs_iconbox_title {
  margin-bottom: 24px;
}

/*=============================================
 Section Heading Component
===============================================*/
.cs_section_heading_style_1,
.cs_section_heading_styel_2 {
  margin-bottom: 32px;
}
.cs_section_heading_style_1 .cs_section_subtitle,
.cs_section_heading_styel_2 .cs_section_subtitle {
  color: #b8962e;
  margin-bottom: 6px;
}
.cs_section_heading_style_1 .cs_view_btn:hover,
.cs_section_heading_styel_2 .cs_view_btn:hover {
  color: var(--accent-color);
  text-decoration: underline;
}

.cs_section_heading_styel_2 {
  display: flex;
  gap: 30px;
  justify-content: space-between;
}
@media (max-width: 991px) {
  .cs_section_heading_styel_2 {
    gap: 20px;
    flex-direction: column;
    align-items: flex-start !important;
  }
}

/*=============================================
 Progressbar Component
===============================================*/
.cs_progress .cs_progress_in {
  height: 100%;
  background-color: var(--accent-color);
}

/*=============================================
 Rating Component
===============================================*/
.cs_rating {
  max-width: 88px;
  height: 24px;
  position: relative;
  color: var(--accent-color);
  font-size: 16px;
  letter-spacing: 1px;
  overflow: hidden;
}
.cs_rating::before {
  content: "\f18b\f18b\f18b\f18b\f18b";
  font-family: "remixicon";
  position: absolute;
  top: 0;
  left: 0;
}
.cs_rating .cs_rating_percentage {
  height: 100%;
  position: absolute;
  top: 0;
  left: 0;
  overflow: hidden;
  color: var(--accent-color);
}
.cs_rating .cs_rating_percentage::before {
  content: "\f186\f186\f186\f186\f186";
  font-family: "remixicon";
  position: absolute;
  top: 0;
  left: 0;
  display: block;
}

/*===========================================================  
  Funfact Odometer
=============================================================*/
.odometer.odometer-auto-theme,
.odometer.odometer-auto-theme .odometer-digit,
.odometer.odometer-theme-default,
.odometer.odometer-theme-default .odometer-digit {
  vertical-align: top;
}

.odometer.odometer-auto-theme,
.odometer.odometer-theme-default {
  font-family: inherit;
  line-height: inherit;
}

.odometer.odometer-auto-theme .odometer-digit .odometer-digit-inner,
.odometer.odometer-theme-default .odometer-digit .odometer-digit-inner {
  left: -4px;
}

.odometer.odometer-auto-theme .odometer-digit .odometer-digit-spacer,
.odometer.odometer-theme-default .odometer-digit .odometer-digit-spacer {
  padding: 0 1px;
}

/*=================================================
  Animations
===================================================*/
@keyframes cs_player_wave {
  0% {
    transform: rotate(0deg);
  }
  100% {
    transform: rotate(360deg);
  }
}
@keyframes cs_player_fill {
  0% {
    bottom: -165%;
  }
  100% {
    bottom: -120%;
  }
}
@keyframes bubleUp {
  0% {
    transform: scale(1);
  }
  50% {
    transform: scale(1.05);
  }
  100% {
    transform: scale(1);
  }
}
/*===========================================
 13. All Hero Style
=============================================*/
.cs_hero_style_1 {
  position: relative;
  overflow: hidden;
  margin-top: 140px;
}
.cs_hero_style_1 .cs_hero_slide,
.cs_hero_style_1 .swiper-slide {
  height: auto;
}
.cs_hero_style_1 .cs_hero_content_wrap {
  height: 100%;
}
.cs_hero_style_1 .cs_hero_content {
  width: 100%;
  height: calc(100vh - 140px);
  max-height: 1070px;
  max-width: 1920px;
  padding: 80px 0 180px;
  margin: 0 auto;
  position: relative;
  display: flex;
  align-items: center;
}
.cs_hero_style_1 .cs_hero_slide_in {
  display: flex;
  gap: 50px;
  justify-content: space-between;
}
.cs_hero_style_1 .cs_hero_text {
  max-width: 800px;
}
.cs_hero_style_1 .cs_hero_label {
  margin-bottom: 6px;
  color: #b8962e;
}
.cs_hero_style_1 .cs_hero_title {
  margin-bottom: 24px;
}
.cs_hero_style_1 .cs_hero_subtitle {
  margin-bottom: 48px;
}
.cs_hero_style_1 .cs_hero_btns {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}
.cs_hero_style_1 .cs_hero_btns .cs_btn_style_1 {
  padding: 9px 24px;
}
.cs_hero_style_1 .cs_hero_btn_outline {
  color: var(--primary-color);
  background-color: var(--gray5-color);
  border: 1px solid var(--primary-color);
}
.cs_hero_style_1 .cs_hero_btn_outline:hover {
  color: var(--white-color);
  background-color: var(--primary-color);
}
.cs_hero_style_1 .cs_hero_products_wrap {
  position: absolute;
  right: 60px;
  bottom: 100px;
  display: flex;
  gap: 24px;
  flex-direction: column;
}
.cs_hero_style_1 .cs_product_style_1 {
  width: 238px;
  max-height: 240px;
  padding: 10px 10px 24px;
}
.cs_hero_style_1 .cs_product_style_1 .cs_product_thumb {
  max-height: 134px;
  padding: 30px 60px 17px;
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 12px;
  background-color: var(--gray5-color);
}
.cs_hero_style_1 .cs_product_style_1 .cs_product_badge {
  position: absolute;
  top: 12px;
  left: 12px;
  padding: 2px 6px;
}
.cs_hero_style_1 .cs_product_style_1 .cs_product_btn {
  position: absolute;
  top: 5px;
  right: 5px;
  width: 35px;
  height: 35px;
  border-radius: 50%;
}
.cs_hero_style_1 .cs_product_style_1 .cs_product_info {
  padding: 0;
  display: flex;
  gap: 6px;
  flex-direction: column;
  align-items: center;
  text-align: center;
}
.cs_hero_style_1 .cs_product_style_1 .cs_product_title a:hover {
  color: var(--accent-color);
}
.cs_hero_style_1 .cs_product_style_1:hover .cs_product_btn {
  background-color: var(--accent-color);
}
.cs_hero_style_1 .cs_product_style_1:hover .cs_product_thumb img {
  animation: bubleUp 0.4s linear;
}
.cs_hero_style_1 .cs_slider_controller_1 {
  position: absolute;
  left: 0;
  bottom: 124px;
  width: 100%;
  z-index: 4;
}
@media (max-width: 1399px) {
  .cs_hero_style_1 .cs_hero_content {
    height: 100%;
    max-height: auto;
    padding: 120px 0 140px;
  }
  .cs_hero_style_1 .cs_hero_products_wrap {
    bottom: 50px;
  }
  .cs_hero_style_1 .cs_hero_subtitle {
    margin-bottom: 30px;
  }
  .cs_hero_style_1 .cs_slider_controller_1 {
    bottom: 50px;
  }
}
@media (max-width: 1199px) {
  .cs_hero_style_1 {
    margin-top: 110px;
  }
  .cs_hero_style_1 .cs_hero_content {
    height: calc(100vh - 110px);
  }
  .cs_hero_style_1 .cs_hero_text {
    max-width: 620px;
  }
}
@media (max-width: 991px) {
  .cs_hero_style_1 .cs_hero_content {
    height: auto;
    padding: 30px 0 120px;
  }
  .cs_hero_style_1 .cs_hero_products_wrap {
    display: none;
  }
}
@media (max-width: 575px) {
  .cs_hero_style_1 .cs_hero_text {
    max-width: 500px;
  }
  .cs_hero_style_1 .cs_hero_subtitle {
    font-size: 16px;
  }
}

.cs_hero_style_2 {
  padding: 180px 0 0;
  overflow: hidden;
}
.cs_hero_style_2 .cs_hero_title {
  margin-bottom: 64px;
}
.cs_hero_style_2 .cs_hero_top {
  min-height: 404px;
  display: flex;
  gap: 60px;
  padding-right: 50px;
  align-items: flex-start;
  justify-content: space-between;
}
.cs_hero_style_2 .cs_hero_intro {
  flex: 0 0 auto;
  max-width: 400px;
}
.cs_hero_style_2 .cs_hero_subtitle {
  margin-bottom: 32px;
}
.cs_hero_style_2 .cs_hero_build {
  display: inline-block;
}
.cs_hero_style_2 .cs_hero_build:hover {
  color: var(--accent-color);
  text-decoration: underline;
}
.cs_hero_style_2 .cs_hero_categories {
  position: relative;
  flex: 1 1 auto;
  width: 100%;
  min-width: 0;
  max-width: 872px;
  margin-left: auto;
}
.cs_hero_style_2 .cs_category_slider {
  width: calc(100% - 24px);
}
.cs_hero_style_2 .cs_category_style_1 {
  height: 330px;
  display: flex;
  flex-direction: column;
  text-decoration: none;
  background-color: var(--gray-color);
}
.cs_hero_style_2 .cs_category_style_1:hover .cs_category_thumb img {
  transform: scale(1.03);
}
.cs_hero_style_2 .cs_category_style_1:hover .cs_category_title {
  color: var(--accent-color);
}
.cs_hero_style_2 .cs_category_thumb {
  flex: 1;
  display: flex;
  overflow: hidden;
  position: relative;
  background-color: var(--gray-color);
}
.cs_hero_style_2 .cs_category_thumb img {
  width: 100%;
  height: auto;
  -o-object-fit: cover;
     object-fit: cover;
  transition: transform 0.5s ease;
}
.cs_hero_style_2 .cs_category_count {
  position: absolute;
  top: 12px;
  left: 12px;
  padding: 4px 12px;
  font-size: 16px;
  line-height: 24px;
  color: var(--white-color);
  background-color: rgba(44, 44, 44, 0.7);
}
.cs_hero_style_2 .cs_category_title {
  display: block;
  padding: 24px;
  text-align: center;
  transition: color 0.3s ease;
}
.cs_hero_style_2 .cs_slider_controller_2, .cs_hero_style_2 .cs_slider_controller_3 {
  margin-top: 24px;
  z-index: 12;
  gap: 30px;
  position: relative;
}
.cs_hero_style_2 .cs_slider_controller_2 .cs_slider_arrow, .cs_hero_style_2 .cs_slider_controller_3 .cs_slider_arrow {
  color: var(--gray-color);
  background-color: transparent;
  border: 1px solid var(--gray-color);
}
.cs_hero_style_2 .cs_slider_controller_2 .cs_slider_arrow:hover, .cs_hero_style_2 .cs_slider_controller_3 .cs_slider_arrow:hover {
  color: var(--accent-color);
  background-color: var(--white-color);
}
.cs_hero_style_2 .cs_slider_controller_2 .cs_slider_arrow.swiper-button-disabled, .cs_hero_style_2 .cs_slider_controller_3 .cs_slider_arrow.swiper-button-disabled {
  opacity: 0.4;
  cursor: default;
}
.cs_hero_style_2 .cs_slider_controller_2 .cs_slider_arrow.swiper-button-disabled:hover, .cs_hero_style_2 .cs_slider_controller_3 .cs_slider_arrow.swiper-button-disabled:hover {
  color: var(--primary-color);
  background-color: transparent;
  border-color: var(--gray4-color);
}
.cs_hero_style_2 .cs_slider_controller_2 .cs_slider_progress, .cs_hero_style_2 .cs_slider_controller_3 .cs_slider_progress {
  position: relative;
  background-color: rgba(240, 227, 216, 0.5);
}
.cs_hero_style_2 .cs_slider_controller_2 .cs_slider_progress .swiper-pagination-progressbar-fill, .cs_hero_style_2 .cs_slider_controller_3 .cs_slider_progress .swiper-pagination-progressbar-fill {
  background-color: var(--gray-color);
}
.cs_hero_style_2 .cs_hero_banner {
  flex: none;
  position: relative;
  margin-top: -206px;
  min-height: 650px;
  overflow: hidden;
}
.cs_hero_style_2 .cs_hero_banner .cs_hero_banner_content {
  position: absolute;
  right: 7%;
  bottom: 15%;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 12px;
  max-width: 320px;
}
.cs_hero_style_2 .cs_hero_banner .cs_hero_banner_content > * {
  position: relative;
  z-index: 1;
}
.cs_hero_style_2 .cs_hero_banner .cs_hero_banner_content::before {
  content: "";
  width: 475px;
  height: 929px;
  position: absolute;
  top: 50%;
  left: 50%;
  border-radius: 929px;
  background: #c7a790;
  filter: blur(60px);
  transform: translate(-50%, -50%) rotate(-46.894deg);
}
.cs_hero_style_2 .cs_hero_banner .cs_hero_banner_btn {
  display: inline-block;
  margin-top: 48px;
  color: var(--white-color);
}
.cs_hero_style_2 .cs_hero_banner .cs_hero_banner_btn:hover {
  text-decoration: underline;
}
@media (max-width: 1399px) {
  .cs_hero_style_2 {
    padding-top: 160px;
  }
  .cs_hero_style_2 .cs_hero_top {
    gap: 40px;
  }
  .cs_hero_style_2 .cs_hero_intro {
    max-width: 340px;
  }
}
@media (max-width: 1199px) {
  .cs_hero_style_2 .cs_hero_top {
    flex-direction: column;
    gap: 32px;
  }
  .cs_hero_style_2 .cs_hero_intro {
    max-width: 560px;
    padding-top: 0;
  }
  .cs_hero_style_2 .cs_hero_banner {
    min-height: 550px;
  }
}
@media (max-width: 991px) {
  .cs_hero_style_2 {
    padding-top: 140px;
  }
  .cs_hero_style_2 .cs_hero_top {
    padding-right: 0;
  }
  .cs_hero_style_2 .cs_hero_title {
    margin-bottom: 16px;
    text-align: left !important;
  }
  .cs_hero_style_2 .cs_hero_subtitle {
    margin-bottom: 20px;
  }
  .cs_hero_style_2 .cs_hero_intro {
    max-width: 100%;
  }
  .cs_hero_style_2 .cs_hero_banner {
    min-height: 500px;
  }
  .cs_hero_style_2 .cs_hero_banner .cs_hero_banner_btn {
    margin-top: 18px;
  }
  .cs_hero_style_2 .cs_hero_categories {
    max-width: 100%;
  }
}
@media (max-width: 767px) {
  .cs_hero_style_2 {
    padding-top: 120px;
  }
  .cs_hero_style_2 .cs_hero_banner {
    height: 420px;
  }
  .cs_hero_style_2 .cs_hero_banner .cs_hero_banner_content {
    right: initial;
    left: 24px;
    bottom: 50px;
  }
}
@media (max-width: 575px) {
  .cs_hero_style_2 .cs_hero_banner {
    height: 360px;
  }
}

.cs_hero_style_3 {
  position: relative;
  overflow: hidden;
  margin-top: 214px;
}
.cs_hero_style_3 .cs_hero_content_wrap {
  height: 100vh;
  max-height: 800px;
  padding: 120px 0 150px;
  display: flex;
  align-items: center;
}
.cs_hero_style_3 .cs_hero_text {
  max-width: 850px;
}
.cs_hero_style_3 .cs_hero_label {
  margin-bottom: 6px;
  color: #b8962e;
}
.cs_hero_style_3 .cs_hero_title {
  margin-bottom: 24px;
}
.cs_hero_style_3 .cs_hero_subtitle {
  margin-bottom: 48px;
  max-width: 500px;
}
.cs_hero_style_3 .cs_hero_pagination {
  position: absolute;
  left: 0;
  right: 0;
  bottom: 100px;
  z-index: 4;
}
@media (max-width: 1399px) {
  .cs_hero_style_3 .cs_hero_pagination {
    bottom: 70px;
  }
}
@media (max-width: 1199px) {
  .cs_hero_style_3 {
    margin-top: 110px;
  }
}
@media (max-width: 991px) {
  .cs_hero_style_3 .cs_hero_content_wrap {
    height: 100%;
    padding: 30px 0 110px;
  }
  .cs_hero_style_3 .cs_hero_text {
    max-width: 100%;
  }
  .cs_hero_style_3 .cs_hero_pagination {
    bottom: 50px;
  }
}
@media (max-width: 575px) {
  .cs_hero_style_3 .cs_hero_subtitle {
    font-size: 16px;
  }
}

.cs_hero_style_4 {
  position: relative;
  overflow: hidden;
  margin-top: 140px;
}
.cs_hero_style_4 .cs_hero_slider,
.cs_hero_style_4 .swiper-slide,
.cs_hero_style_4 .container-fluid {
  height: 100%;
}
.cs_hero_style_4 .cs_hero_content {
  height: calc(100vh - 140px);
  max-height: 800px;
  display: grid;
  gap: 60px;
  align-items: center;
  grid-template-columns: repeat(2, 1fr);
}
.cs_hero_style_4 .cs_hero_text {
  width: 50vw;
  max-width: 926px;
  padding: 120px 0 180px;
}
.cs_hero_style_4 .cs_hero_title {
  margin-bottom: 24px;
  font-size: clamp(36px, 5.5vw, 90px);
  line-height: 1.11em;
}
.cs_hero_style_4 .cs_hero_subtitle {
  margin-bottom: 48px;
}
.cs_hero_style_4 .cs_hero_thumb {
  width: min(50vw, 836px);
  min-height: 100%;
  display: flex;
  align-items: flex-end;
  justify-content: flex-end;
  padding: 48px;
  z-index: 2;
  position: relative;
}
.cs_hero_style_4 .cs_featured_product {
  width: 288px;
  padding: 12px;
  position: absolute;
  bottom: 48px;
  right: 48px;
}
.cs_hero_style_4 .cs_product_style_1 {
  gap: 15px;
  flex-direction: row;
  justify-content: space-between;
}
.cs_hero_style_4 .cs_product_style_1 .cs_product_info {
  padding: 0;
}
.cs_hero_style_4 .cs_product_style_1 .cs_product_thumb {
  max-width: 113px;
  height: 108px;
}
.cs_hero_style_4 .cs_product_style_1 .cs_cart_btn {
  width: 35px;
  height: 35px;
  bottom: 10px;
  right: 10px;
  padding: 8px;
}
.cs_hero_style_4 .cs_product_style_1:hover .cs_cart_btn {
  background-color: var(--accent-color);
}
.cs_hero_style_4 .cs_slider_controller_2, .cs_hero_style_4 .cs_slider_controller_3 {
  position: absolute;
  left: 12px;
  bottom: 12px;
  display: flex;
  gap: 8px;
  z-index: 1;
  justify-content: flex-start;
}
.cs_hero_style_4 .cs_slider_controller_2 .cs_slider_arrow, .cs_hero_style_4 .cs_slider_controller_3 .cs_slider_arrow {
  padding: 0;
  width: 16px;
  height: 16px;
  border: 0;
  background-color: transparent;
}
.cs_hero_style_4 .cs_slider_controller_2 .cs_slider_arrow i, .cs_hero_style_4 .cs_slider_controller_3 .cs_slider_arrow i {
  font-size: 20px;
}
.cs_hero_style_4 .cs_slider_controller_2 .cs_slider_arrow:hover, .cs_hero_style_4 .cs_slider_controller_3 .cs_slider_arrow:hover {
  color: var(--accent-color);
}
.cs_hero_style_4 .cs_hero_pagination {
  position: absolute;
  left: 0;
  right: 0;
  bottom: 100px;
  z-index: 1;
  pointer-events: none;
}
.cs_hero_style_4 .cs_pagination_style_2 {
  width: min(50%, 720px);
  justify-content: flex-end;
  pointer-events: all;
}
@media (max-width: 1399px) {
  .cs_hero_style_4 .cs_hero_pagination {
    bottom: 70px;
  }
}
@media (max-width: 1199px) {
  .cs_hero_style_4 {
    margin-top: 110px;
  }
  .cs_hero_style_4 .cs_hero_content {
    height: auto;
    gap: 24px;
  }
  .cs_hero_style_4 .cs_hero_text {
    width: 50vw;
    max-width: 926px;
    padding: 50px 0 180px;
  }
  .cs_hero_style_4 .cs_hero_pagination {
    bottom: 70px;
  }
}
@media (max-width: 991px) {
  .cs_hero_style_4 .cs_hero_content {
    height: auto;
    grid-template-columns: 1fr;
  }
  .cs_hero_style_4 .cs_hero_text {
    width: 100%;
    order: 2;
    padding: 0 0 120px;
  }
  .cs_hero_style_4 .cs_hero_thumb {
    order: 1;
    width: 100%;
    min-height: 350px;
  }
  .cs_hero_style_4 .cs_hero_pagination {
    bottom: 50px;
  }
  .cs_hero_style_4 .cs_pagination_style_2 {
    width: 100%;
    justify-content: center;
  }
}
@media (max-width: 767px) {
  .cs_hero_style_4 .cs_hero_content_wrap {
    min-height: auto;
    padding: 140px 0 90px;
    background-image: none !important;
    background-color: #f7f0ea;
  }
}
@media (max-width: 575px) {
  .cs_hero_style_4 .cs_hero_subtitle {
    font-size: 16px;
  }
}

.cs_hero_style_5 {
  overflow: hidden;
  padding-top: 140px;
  background-color: var(--black-color);
}
.cs_hero_style_5 .cs_hero_content_wrap {
  position: relative;
  display: flex;
  align-items: center;
  height: calc(100vh - 140px);
  max-height: 1010px;
  padding: 120px 0;
}
.cs_hero_style_5 .cs_hero_content_wrap::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, var(--black-color) 0%, rgba(32, 32, 32, 0.4) 45%, rgba(32, 32, 32, 0) 75%);
}
.cs_hero_style_5 .container-fluid {
  position: relative;
  z-index: 1;
}
.cs_hero_style_5 .cs_hero_text {
  max-width: 790px;
}
.cs_hero_style_5 .cs_hero_label {
  margin-bottom: 6px;
  color: #b8962e;
}
.cs_hero_style_5 .cs_hero_title {
  margin-bottom: 24px;
}
.cs_hero_style_5 .cs_hero_subtitle {
  margin-bottom: 48px;
}
.cs_hero_style_5 .cs_btn_style_1 {
  background-color: rgba(32, 32, 32, 0.3);
  border: 1px solid var(--accent-color);
}
.cs_hero_style_5 .cs_btn_style_1:hover {
  background-color: var(--accent-color);
}
.cs_hero_style_5 .cs_hero_video {
  width: 100%;
  position: absolute;
  bottom: 112px;
  z-index: 3;
  display: block;
  pointer-events: none;
}
.cs_hero_style_5 .cs_hero_video .cs_video_card {
  display: block;
  width: 288px;
  height: 150px;
  position: relative;
  margin-left: auto;
  pointer-events: all;
}
.cs_hero_style_5 .cs_hero_video .cs_video_card img {
  width: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}
.cs_hero_style_5 .cs_hero_video:hover .cs_player_btn_style_1 {
  border-color: var(--accent-color);
  background-color: var(--accent-color);
}
.cs_hero_style_5 .cs_player_btn_style_1 {
  width: 50px;
  height: 50px;
  font-size: 24px;
  background-color: rgba(32, 32, 32, 0.3);
  border: 1px solid var(--white-color);
  transform: translate(-50%, -50%);
  transition: all 0.3s ease;
  animation: borderAnimation 1.5s cubic-bezier(0.4, 0.3, 0.515, 1) infinite;
}
.cs_hero_style_5 .cs_player_btn_style_1::before, .cs_hero_style_5 .cs_player_btn_style_1::after {
  display: none;
}
.cs_hero_style_5 .cs_hero_pagination {
  position: absolute;
  right: 0;
  bottom: 64px;
  left: 0;
  z-index: 4;
}
.cs_hero_style_5 .cs_hero_pagination_in {
  display: flex;
  align-items: center;
  gap: 74px;
}
.cs_hero_style_5 .cs_hero_pagination_line {
  flex: 1;
  height: 1px;
  background-color: rgba(255, 255, 255, 0.2);
}
.cs_hero_style_5 .cs_pagination_style_2 {
  position: static;
  width: -moz-max-content;
  width: max-content;
  margin: 0;
  gap: 16px;
}
.cs_hero_style_5 .cs_pagination_style_2 .swiper-pagination-bullet {
  border-color: transparent;
}
.cs_hero_style_5 .cs_pagination_style_2 .swiper-pagination-bullet::before {
  opacity: 0.5;
  background-color: var(--white-color);
}
.cs_hero_style_5 .cs_pagination_style_2 .swiper-pagination-bullet.swiper-pagination-bullet-active {
  opacity: 1;
  border-color: var(--white-color);
}
.cs_hero_style_5 .cs_pagination_style_2 .swiper-pagination-bullet.swiper-pagination-bullet-active::before {
  opacity: 1;
}
@media (max-width: 1399px) {
  .cs_hero_style_5 .cs_hero_content_wrap {
    height: 100%;
  }
}
@media (max-width: 1199px) {
  .cs_hero_style_5 {
    padding-top: 110px;
  }
  .cs_hero_style_5 .cs_hero_pagination {
    bottom: 50px;
  }
  .cs_hero_style_5 .cs_hero_pagination_in {
    gap: 40px;
  }
}
@media (max-width: 991px) {
  .cs_hero_style_5 .cs_hero_content_wrap {
    padding: 50px 0 120px;
  }
  .cs_hero_style_5 .cs_hero_subtitle {
    margin-bottom: 32px;
  }
  .cs_hero_style_5 .cs_hero_video {
    display: none;
  }
}
@media (max-width: 575px) {
  .cs_hero_style_5 .cs_hero_content_wrap {
    padding: 30px 0 120px;
  }
}

.cs_hero_style_6 {
  position: relative;
  overflow: hidden;
  padding-top: 140px;
}
.cs_hero_style_6 .cs_hero_content_wrap {
  width: 100%;
  height: calc(100vh - 140px);
  max-height: 870px;
  display: flex;
  align-items: center;
}
.cs_hero_style_6 .cs_hero_content_wrap::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 1;
  background-color: rgba(32, 32, 32, 0.25);
}
.cs_hero_style_6 .cs_hero_content {
  width: 100%;
  max-width: 1920px;
  position: relative;
  z-index: 1;
  padding: 120px 0 150px;
}
.cs_hero_style_6 .cs_hero_text {
  max-width: 960px;
  margin: 0 auto;
  text-align: center;
}
.cs_hero_style_6 .cs_hero_title {
  margin-bottom: 24px;
}
.cs_hero_style_6 .cs_hero_btns {
  margin-top: 64px;
}
.cs_hero_style_6 .cs_btn_outline {
  border: 1px solid var(--accent-color);
  background: rgba(32, 32, 32, 0.3);
}
.cs_hero_style_6 .cs_btn_outline:hover {
  background-color: var(--accent-color);
}
.cs_hero_style_6 .cs_slider_controller_1 {
  position: absolute;
  left: 0;
  right: 0;
  bottom: 70px;
  z-index: 4;
}
.cs_hero_style_6 .cs_slider_controller_1 .cs_controller_in {
  display: flex;
  gap: 50px;
  align-items: center;
}
.cs_hero_style_6 .cs_slider_controller_1 .cs_slider_nav {
  display: inline-flex;
  align-items: center;
  gap: 4px;
  cursor: pointer;
  color: var(--white-color);
  transition: all 0.3s ease;
}
.cs_hero_style_6 .cs_slider_controller_1 .cs_slider_nav i {
  flex: none;
  font-size: 24px;
  line-height: 1em;
}
.cs_hero_style_6 .cs_slider_controller_1 .cs_slider_nav:hover {
  color: var(--primary-color);
}
.cs_hero_style_6 .cs_slider_controller_1 .cs_hero_fraction {
  position: static;
  width: auto;
  font-size: 14px;
  color: var(--white-color);
}
.cs_hero_style_6 .cs_slider_controller_1 .cs_hero_fraction .swiper-pagination-current {
  font-size: 22px;
  font-weight: 500;
}
.cs_hero_style_6 .cs_hero_thumbs_wrap {
  width: 100%;
  position: absolute;
  bottom: 50px;
}
.cs_hero_style_6 .cs_hero_thumbs {
  z-index: 4;
  width: 245px;
  margin-left: auto;
  margin-right: initial;
}
.cs_hero_style_6 .cs_hero_thumbs .swiper-slide {
  cursor: pointer;
}
.cs_hero_style_6 .cs_hero_thumbs .cs_hero_thumb_avatar {
  display: block;
  width: 100%;
  border-radius: 50%;
  overflow: hidden;
  opacity: 0.5;
  transition: opacity 0.3s ease;
}
.cs_hero_style_6 .cs_hero_thumbs .cs_hero_thumb_avatar img {
  display: block;
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}
.cs_hero_style_6 .cs_hero_thumbs .swiper-slide-thumb-active .cs_hero_thumb_avatar {
  opacity: 1;
}
@media (max-width: 1399px) {
  .cs_hero_style_6 .cs_hero_content_wrap {
    height: 100%;
  }
  .cs_hero_style_6 .cs_slider_controller_1 {
    bottom: 50px;
  }
}
@media (max-width: 1199px) {
  .cs_hero_style_6 {
    padding-top: 110px;
  }
}
@media (max-width: 991px) {
  .cs_hero_style_6 .cs_hero_content {
    padding: 120px 0;
  }
  .cs_hero_style_6 .cs_hero_btns {
    margin-top: 40px;
  }
  .cs_hero_style_6 .cs_hero_thumbs {
    display: none;
  }
}
@media (max-width: 575px) {
  .cs_hero_style_6 .cs_hero_subtitle {
    font-size: 16px;
  }
  .cs_hero_style_6 .cs_slider_controller_1 .cs_controller_in {
    gap: 24px;
  }
}

/*===========================================
  Page Header
=============================================*/
.cs_page_header_style_1 {
  position: relative;
  padding: 235px 0 107px;
}
@media (max-width: 991px) {
  .cs_page_header_style_1 {
    padding: 64px 0 72px;
  }
}
.cs_page_header_style_1 .cs_page_hero_title {
  margin-bottom: 12px;
}
.cs_page_header_style_1 .cs_breadcrumb {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 8px;
  font-family: var(--secondary-font);
  font-size: 18px;
  line-height: 26px;
  color: var(--primary-color);
}
@media (max-width: 767px) {
  .cs_page_header_style_1 .cs_breadcrumb {
    font-size: 16px;
  }
}
@media (max-width: 480px) {
  .cs_page_header_style_1 .cs_breadcrumb {
    font-size: 15px;
    gap: 6px;
  }
}
.cs_page_header_style_1 .cs_breadcrumb a {
  color: var(--primary-color);
  text-decoration: none;
  transition: color 0.3s ease;
}
.cs_page_header_style_1 .cs_breadcrumb a:hover {
  text-decoration: underline;
}
.cs_page_header_style_1 .cs_breadcrumb .cs_breadcrumb_sep {
  color: var(--secondary-color);
}
.cs_page_header_style_1 .cs_breadcrumb .cs_breadcrumb_current {
  color: var(--secondary-color);
}

/*=====================================================
 Animations
=======================================================*/
@keyframes borderAnimation {
  50% {
    border-color: var(--accent-color);
    background-color: var(--accent-color);
  }
}
/*=============================================
  14. About Style 1 — Our Story
===============================================*/
.cs_about_style_1 .cs_about_in {
  display: grid;
  gap: 24px;
  grid-template-columns: 1fr 1fr;
}
.cs_about_style_1 .cs_about_thumb {
  width: 100%;
  margin-bottom: 30px;
  position: relative;
}
.cs_about_style_1 .cs_about_thumb img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}
.cs_about_style_1 .cs_about_thumb::before {
  content: "";
  position: absolute;
  left: -30px;
  top: 30px;
  width: 100%;
  height: 100%;
  z-index: 1;
  border: 1px solid var(--gray4-color);
}
.cs_about_style_1 .cs_about_content {
  padding-left: 112px;
}
.cs_about_style_1 .cs_about_band {
  width: min(163%, 872px);
  display: flex;
  flex-wrap: nowrap;
  justify-content: flex-end;
  position: relative;
  z-index: 2;
  margin-bottom: 32px;
  margin-left: -63%;
  background-color: var(--gray-color);
}
.cs_about_style_1 .cs_about_band_text {
  padding: 48px 10% 48px 48px;
}
.cs_about_style_1 .cs_about_desc {
  margin-bottom: 32px;
}
.cs_about_style_1 .cs_about_link {
  display: inline-flex;
  align-items: center;
  gap: 6px;
}
.cs_about_style_1 .cs_about_link::after {
  content: "";
  width: 0;
  height: 1px;
  margin-top: 12px;
  margin-bottom: auto;
  background-color: currentColor;
  transition: width 0.3s ease;
}
.cs_about_style_1 .cs_about_link:hover {
  color: var(--accent-color);
}
.cs_about_style_1 .cs_about_link:hover::after {
  width: 20px;
}
.cs_about_style_1 .cs_about_band_thumb {
  flex: none;
  width: 224px;
  height: 100%;
}
.cs_about_style_1 .cs_about_band_thumb img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}
.cs_about_style_1 .cs_about_features {
  display: flex;
  gap: 32px;
  flex-direction: column;
}
@media (max-width: 1199px) {
  .cs_about_style_1 .cs_about_in {
    gap: 30px;
  }
  .cs_about_style_1 .cs_about_content {
    padding-left: 0;
  }
  .cs_about_style_1 .cs_about_head {
    order: 1;
  }
  .cs_about_style_1 .cs_about_thumb::before {
    left: -16px;
    top: 16px;
  }
  .cs_about_style_1 .cs_about_band {
    width: min(140%, 872px);
    margin-bottom: 24px;
    margin-left: -40%;
  }
  .cs_about_style_1 .cs_about_features {
    gap: 24px;
  }
  .cs_about_style_1 .cs_about_band_text {
    padding: 24px 15px;
  }
  .cs_about_style_1 .cs_about_desc {
    margin-bottom: 20px;
  }
}
@media (max-width: 991px) {
  .cs_about_style_1 .cs_about_in {
    grid-template-columns: 1fr;
  }
  .cs_about_style_1 .cs_about_thumb {
    margin-bottom: 0;
  }
  .cs_about_style_1 .cs_about_thumb::before {
    width: calc(100% - 32px);
    height: calc(100% - 32px);
    left: 16px;
    top: 16px;
  }
  .cs_about_style_1 .cs_section_heading_style_1 {
    margin-bottom: 24px;
  }
  .cs_about_style_1 .cs_about_band {
    width: 100%;
    margin-left: 0;
  }
}
@media (max-width: 767px) {
  .cs_about_style_1 .cs_about_band {
    flex-direction: column;
  }
  .cs_about_style_1 .cs_about_band_text {
    padding: 24px;
  }
  .cs_about_style_1 .cs_about_band_thumb {
    width: 100%;
    height: 240px;
  }
}
@media (max-width: 575px) {
  .cs_about_style_1 .cs_about_feature {
    gap: 16px;
  }
  .cs_about_style_1 .cs_about_feature_icon {
    width: 72px;
    height: 72px;
  }
  .cs_about_style_1 .cs_about_feature_icon img {
    width: 40px;
    height: 40px;
  }
}

@media (min-width: 1440px) {
  .cs_about_style_2 .container {
    max-width: 1544px;
  }
}
.cs_about_style_2 .cs_section_heading_style_1 {
  max-width: 1140px;
  margin: 0 auto 32px;
}
.cs_about_style_2 .cs_about_in {
  display: flex;
  gap: 40px;
  align-items: center;
  justify-content: space-between;
}
.cs_about_style_2 .cs_about_features {
  flex: 0 0 34%;
  display: grid;
  gap: 32px;
  grid-template-columns: 1fr;
}
.cs_about_style_2 .cs_about_media_wrap {
  flex: 1;
  position: relative;
}
.cs_about_style_2 .cs_about_media {
  display: flex;
  gap: 24px;
  align-items: flex-start;
}
.cs_about_style_2 .cs_about_media_1 {
  flex: 0 0 44%;
  border-radius: 500px 500px 0 0;
}
.cs_about_style_2 .cs_about_media_2 {
  flex: 1;
  border-radius: 500px 500px 0 0;
}
.cs_about_style_2 .cs_about_media_1 img,
.cs_about_style_2 .cs_about_media_2 img {
  display: block;
  width: 100%;
  height: auto;
}
.cs_about_style_2 .cs_about_media_caption {
  margin-top: 12px;
}
.cs_about_style_2 .cs_about_badge {
  position: absolute;
  top: 0;
  left: -60px;
  width: 120px;
  height: 120px;
  padding: 10px;
  border-radius: 50%;
  z-index: 2;
  background-color: var(--accent-color);
  transition: transform 0.4s ease;
}
.cs_about_style_2 .cs_about_badge img {
  flex: 1;
  border-radius: 0;
  animation: circularRotation 10s linear infinite;
}
.cs_about_style_2 .cs_about_badge .cs_badge_icon {
  display: inline-block;
  width: 24px;
  height: 24px;
  position: absolute;
  top: 50%;
  left: 50%;
  font-size: 24px;
  transform: translate(-50%, -50%);
}
.cs_about_style_2 .cs_about_badge:hover img {
  animation-play-state: paused;
}
@media (max-width: 1199px) {
  .cs_about_style_2 .cs_about_in {
    gap: 40px;
  }
  .cs_about_style_2 .cs_about_features {
    flex-basis: 34%;
  }
}
@media (max-width: 991px) {
  .cs_about_style_2 .cs_about_in {
    flex-direction: column;
    align-items: stretch;
    gap: 30px;
  }
  .cs_about_style_2 .cs_about_media {
    order: 1;
    width: 100%;
    max-width: 720px;
    margin: 0 auto;
  }
  .cs_about_style_2 .cs_about_features {
    order: 2;
    gap: 24px;
    grid-template-columns: 1fr 1fr;
  }
}
@media (max-width: 575px) {
  .cs_about_style_2 .cs_about_features {
    grid-template-columns: 1fr;
  }
  .cs_about_style_2 .cs_about_media {
    gap: 24px 16px;
  }
  .cs_about_style_2 .cs_about_badge {
    width: 90px;
    height: 90px;
  }
}
@media (max-width: 420px) {
  .cs_about_style_2 .cs_about_media {
    flex-direction: column;
  }
  .cs_about_style_2 .cs_about_badge {
    top: 12px;
    left: auto;
    right: 12px;
  }
}

.cs_about_style_3 {
  overflow: hidden;
}
.cs_about_style_3 .cs_about_header {
  margin-bottom: 24px;
}
.cs_about_style_3 .cs_section_heading_style_1 {
  max-width: 1010px;
  margin-bottom: 48px;
}
.cs_about_style_3 .cs_about_link {
  display: inline-block;
}
.cs_about_style_3 .cs_about_link:hover {
  color: var(--accent-color);
  text-decoration: underline;
}
.cs_about_style_3 .cs_about_gallery {
  display: grid;
  gap: 24px;
  align-items: center;
  grid-template-columns: 1fr 1.1fr 1fr;
  margin-bottom: 48px;
  padding: 0 34px;
}
.cs_about_style_3 .cs_gallery_item {
  overflow: hidden;
  max-width: 424px;
  position: relative;
}
.cs_about_style_3 .cs_gallery_item img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}
.cs_about_style_3 .cs_gallery_item:nth-child(1) {
  padding-right: 32px;
  transform: rotate(-10deg);
}
.cs_about_style_3 .cs_gallery_item:nth-child(3) {
  padding-left: 32px;
  transform: rotate(10deg);
}
.cs_about_style_3 .cs_gallery_caption {
  position: absolute;
  bottom: 12px;
  left: 0;
  right: 0;
}
.cs_about_style_3 .cs_about_features {
  display: grid;
  gap: 24px;
  grid-template-columns: repeat(3, auto);
}
.cs_about_style_3 .cs_about_feature {
  display: flex;
  gap: 12px;
  align-items: center;
  justify-content: center;
  text-wrap: nowrap;
}
.cs_about_style_3 .cs_about_feature img {
  width: 33px;
  height: 35px;
  flex: none;
}
@media (max-width: 1199px) {
  .cs_about_style_3 .cs_about_gallery {
    gap: 16px;
    padding: 0;
  }
}
@media (max-width: 991px) {
  .cs_about_style_3 .cs_section_heading_style_1 {
    margin-bottom: 32px;
  }
  .cs_about_style_3 .cs_about_features {
    gap: 15px;
  }
}
@media (max-width: 767px) {
  .cs_about_style_3 .cs_about_gallery {
    margin-bottom: 32px;
    grid-template-columns: 1fr 1fr;
  }
  .cs_about_style_3 .cs_gallery_item {
    max-width: 100%;
  }
  .cs_about_style_3 .cs_gallery_item:nth-child(1) {
    padding-right: 0;
    transform: rotate(0);
    order: 2;
  }
  .cs_about_style_3 .cs_gallery_item:nth-child(2) {
    order: 1;
    grid-column: auto/span 2;
  }
  .cs_about_style_3 .cs_gallery_item:nth-child(3) {
    padding-left: 0;
    transform: rotate(0);
    order: 3;
  }
  .cs_about_style_3 .cs_about_features {
    display: flex;
    gap: 24px;
    flex-wrap: wrap;
  }
}

.cs_about_style_4 .cs_about_in {
  display: grid;
  gap: 24px;
  grid-template-columns: 1fr 1fr;
}
.cs_about_style_4 .cs_about_thumb {
  width: min(100%, 535px);
}
.cs_about_style_4 .cs_about_thumb img {
  display: block;
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}
.cs_about_style_4 .cs_section_subtitle {
  margin-bottom: 6px;
}
.cs_about_style_4 .cs_section_title {
  margin-bottom: 12px;
}
.cs_about_style_4 .cs_about_link {
  display: inline-block;
  margin-top: 48px;
}
.cs_about_style_4 .cs_about_link:hover {
  color: var(--accent-color);
  text-decoration: underline;
}
.cs_about_style_4 .cs_about_media {
  position: relative;
  margin-top: 48px;
  padding-left: 85px;
}
.cs_about_style_4 .cs_about_media .cs_media_img {
  display: block;
  -o-object-fit: cover;
     object-fit: cover;
  min-height: 250px;
}
.cs_about_style_4 .cs_about_media .cs_about_badge {
  width: 170px;
  position: absolute;
  left: 0;
  top: 0;
  bottom: 0;
  padding: 10px 6px;
  border-radius: 500px;
  background-color: var(--border-color);
}
.cs_about_style_4 .cs_about_media .cs_about_badge img {
  display: block;
  width: 100%;
  height: 100%;
  -o-object-fit: contain;
     object-fit: contain;
}
@media (max-width: 1199px) {
  .cs_about_style_4 .cs_about_in {
    gap: 24px;
  }
}
@media (max-width: 991px) {
  .cs_about_style_4 .cs_about_in {
    grid-template-columns: 1fr;
  }
  .cs_about_style_4 .cs_about_thumb {
    width: 100%;
  }
  .cs_about_style_4 .cs_about_desc {
    max-width: 100%;
  }
  .cs_about_style_4 .cs_about_link {
    margin-top: 24px;
  }
  .cs_about_style_4 .cs_about_media {
    margin-top: 0;
  }
}
@media (max-width: 575px) {
  .cs_about_style_4 .cs_about_media {
    width: 100%;
    padding-left: 70px;
  }
  .cs_about_style_4 .cs_about_media .cs_about_badge {
    width: 140px;
  }
}

.cs_about_style_6 .cs_about_in {
  display: grid;
  gap: 40px;
  align-items: center;
  justify-content: space-between;
  grid-template-columns: minmax(0, 536px) minmax(0, 648px);
}
.cs_about_style_6 .cs_about_thumb img {
  display: block;
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}
.cs_about_style_6 .cs_about_content {
  max-width: 648px;
}
.cs_about_style_6 .cs_section_heading_style_1 {
  margin-bottom: 36px;
}
.cs_about_style_6 .cs_section_heading_style_1 .cs_section_title {
  margin-bottom: 24px;
}
.cs_about_style_6 .cs_about_cards {
  display: grid;
  gap: 24px;
  grid-template-columns: 1fr 1fr;
  margin-bottom: 24px;
}
.cs_about_style_6 .cs_about_card {
  padding: 24px 24px 28px;
}
.cs_about_style_6 .cs_about_card .cs_card_title {
  margin-bottom: 12px;
}
.cs_about_style_6 .cs_about_stats {
  display: flex;
  padding: 12px 24px 24px;
}
.cs_about_style_6 .cs_about_stat {
  flex: 1;
  padding: 0 clamp(8px, 7%, 60px);
}
.cs_about_style_6 .cs_about_stat:first-child {
  padding-left: 0;
}
.cs_about_style_6 .cs_about_stat:not(:last-child) {
  border-right: 1px solid var(--gray4-color);
}
.cs_about_style_6 .cs_about_stat .cs_stat_number {
  display: block;
  margin-bottom: 2px;
  line-height: 1.35;
}
.cs_about_style_6 .cs_about_stat .cs_stat_label {
  display: block;
}
@media (max-width: 1199px) {
  .cs_about_style_6 .cs_about_in {
    gap: 32px;
    grid-template-columns: minmax(0, 45%) 1fr;
  }
}
@media (max-width: 991px) {
  .cs_about_style_6 .cs_about_in {
    grid-template-columns: 1fr;
    gap: 32px;
  }
  .cs_about_style_6 .cs_section_heading_style_1 {
    margin-bottom: 32px;
  }
  .cs_about_style_6 .cs_section_heading_style_1 .cs_section_title {
    margin-bottom: 16px;
  }
  .cs_about_style_6 .cs_about_content {
    max-width: 100%;
  }
}
@media (max-width: 767px) {
  .cs_about_style_6 .cs_about_stats {
    gap: 20px;
    padding: 12px 15px 24px;
  }
  .cs_about_style_6 .cs_about_stat {
    padding: 0;
    border: 0 !important;
  }
  .cs_about_style_6 .cs_about_card {
    padding: 24px 15px 28px;
  }
}
@media (max-width: 575px) {
  .cs_about_style_6 .cs_about_cards {
    grid-template-columns: 1fr;
  }
  .cs_about_style_6 .cs_about_stats {
    flex-direction: column;
    align-items: stretch;
  }
}

/*=======================================================
  Animations
==========================================================*/
@keyframes cs_badge_spin {
  to {
    transform: rotate(360deg);
  }
}
/*=============================================
 15. CTA Section
===============================================*/
/*=============================================
 16. Team Section
===============================================*/
.cs_team_section .cs_section_heading_style_1 {
  max-width: 648px;
  margin-bottom: 32px;
}
.cs_team_section .cs_section_heading_style_1 .cs_section_title {
  margin-bottom: 6px;
}

/*=============================================
 Team Card — Style 1
===============================================*/
.cs_team_style_1 .cs_team_thumb {
  width: 100%;
  position: relative;
  overflow: hidden;
  margin-bottom: 24px;
  background-color: var(--gray-color);
}
.cs_team_style_1 .cs_team_thumb img {
  width: 100%;
  height: 400px;
  -o-object-fit: cover;
     object-fit: cover;
  transition: transform 0.4s ease-in-out;
}
.cs_team_style_1 .cs_social_btns_style_1 {
  gap: 10px;
  position: absolute;
  left: 50%;
  bottom: 24px;
  transform: translateX(-50%);
  transition: all 0.3s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}
.cs_team_style_1 .cs_social_btns_style_1 a {
  opacity: 0;
  color: var(--white-color);
  background-color: var(--primary-color);
  transform: translateY(24px);
  transition: transform 0.3s cubic-bezier(0.55, 0.5, 0.45, 0.75), opacity 0.4s ease-in-out;
}
.cs_team_style_1 .cs_social_btns_style_1 a:nth-child(2) {
  transition-delay: 0.1s;
}
.cs_team_style_1 .cs_social_btns_style_1 a:nth-child(3) {
  transition-delay: 0.2s;
}
.cs_team_style_1 .cs_social_btns_style_1 a:hover {
  background-color: var(--accent-color);
}
.cs_team_style_1 .cs_team_title {
  margin-bottom: 5px;
}
.cs_team_style_1 .cs_team_desc {
  margin-top: 12px;
}
.cs_team_style_1:hover .cs_team_thumb img {
  transform: scale(1.03);
}
.cs_team_style_1:hover .cs_social_btns_style_1 a {
  opacity: 1;
  transform: translateY(0);
}

/*=============================================
 17. Testimonial
===============================================*/
.cs_testimonial_section .cs_section_heading_style_1 {
  margin-bottom: 32px;
}
.cs_testimonial_section .cs_testimonial_slider {
  padding: 0 20px;
}
.cs_testimonial_section .cs_testimonial_slider .swiper-slide {
  height: auto;
}
@media (max-width: 991px) {
  .cs_testimonial_section .cs_testimonial_slider {
    padding: 0;
  }
}

.cs_testimonial_style_1 {
  position: relative;
  display: flex;
  align-items: end;
  justify-content: center;
  min-height: 270px;
}
.cs_testimonial_style_1 .cs_testimonial_body {
  position: relative;
  z-index: 1;
  width: 60%;
  max-width: 648px;
  margin: 0 auto;
  text-align: center;
  padding-bottom: 48px;
}
.cs_testimonial_style_1 .cs_testimonial_quote {
  position: absolute;
  left: 50%;
  top: -78px;
  z-index: -1;
  width: 142px;
  height: 142px;
  transform: translateX(-50%);
  pointer-events: none;
}
.cs_testimonial_style_1 .cs_testimonial_quote img {
  display: block;
  width: 100%;
  height: 100%;
}
.cs_testimonial_style_1 blockquote {
  margin-bottom: 18px;
  line-height: 1.44em;
  font-style: normal;
  font-weight: 400;
  margin-bottom: 32px;
  color: var(--primary-color);
  font-family: var(--secondary-font);
}
.cs_testimonial_style_1 .cs_testimonial_thumb {
  position: absolute;
  top: 50%;
  width: min(13%, 200px);
  opacity: 0;
  transform: translateY(-50%) rotate(0deg);
  transition: transform 0.6s cubic-bezier(0.25, 0.46, 0.45, 0.94);
  transition-delay: 0.4s;
}
.cs_testimonial_style_1 .cs_testimonial_thumb img {
  position: relative;
  z-index: 1;
  display: block;
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}
.cs_testimonial_style_1 .cs_testimonial_thumb::after {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 2;
  border: 1px solid var(--gray4-color);
  transform: translate(7px, 7px);
}
.cs_testimonial_style_1 .cs_testimonial_thumb_left {
  left: 0;
}
.cs_testimonial_style_1 .cs_testimonial_thumb_right {
  right: 0;
}
.cs_testimonial_style_1 .cs_testimonial_thumb_right::after {
  transform: translate(-7px, 7px);
}
@media (max-width: 991px) {
  .cs_testimonial_style_1 {
    min-height: auto;
  }
  .cs_testimonial_style_1 .cs_testimonial_body {
    width: 100%;
    padding: 40px 0;
  }
  .cs_testimonial_style_1 .cs_testimonial_quote {
    top: -20px;
  }
  .cs_testimonial_style_1 blockquote {
    margin-bottom: 20px;
  }
  .cs_testimonial_style_1 .cs_testimonial_thumb {
    display: none;
  }
}
@media (max-width: 575px) {
  .cs_testimonial_style_1 blockquote {
    margin-bottom: 16px;
  }
}

.cs_testimonial_style_2, .cs_testimonial_style_5, .cs_testimonial_style_3, .cs_testimonial_style_4 {
  display: grid;
  gap: 24px;
  align-items: center;
  grid-template-columns: repeat(2, 1fr);
}
.cs_testimonial_style_2 .cs_testimonial_review, .cs_testimonial_style_5 .cs_testimonial_review, .cs_testimonial_style_3 .cs_testimonial_review, .cs_testimonial_style_4 .cs_testimonial_review {
  min-width: 0;
  max-width: 540px;
}
.cs_testimonial_style_2 .cs_section_heading_style_1, .cs_testimonial_style_5 .cs_section_heading_style_1, .cs_testimonial_style_3 .cs_section_heading_style_1, .cs_testimonial_style_4 .cs_section_heading_style_1 {
  margin-bottom: 6px;
}
.cs_testimonial_style_2 .cs_testimonial_slider, .cs_testimonial_style_5 .cs_testimonial_slider, .cs_testimonial_style_3 .cs_testimonial_slider, .cs_testimonial_style_4 .cs_testimonial_slider {
  width: 100%;
  padding: 0;
}
.cs_testimonial_style_2 .cs_review_card, .cs_testimonial_style_5 .cs_review_card, .cs_testimonial_style_3 .cs_review_card, .cs_testimonial_style_4 .cs_review_card {
  width: 100%;
  position: relative;
  padding-top: 60px;
}
.cs_testimonial_style_2 .cs_review_card .cs_review_quote, .cs_testimonial_style_5 .cs_review_card .cs_review_quote, .cs_testimonial_style_3 .cs_review_card .cs_review_quote, .cs_testimonial_style_4 .cs_review_card .cs_review_quote {
  position: absolute;
  left: 0;
  top: 0;
  z-index: -1;
  width: 142px;
  height: 142px;
  opacity: 0.45;
  pointer-events: none;
}
.cs_testimonial_style_2 .cs_review_card .cs_review_quote img, .cs_testimonial_style_5 .cs_review_card .cs_review_quote img, .cs_testimonial_style_3 .cs_review_card .cs_review_quote img, .cs_testimonial_style_4 .cs_review_card .cs_review_quote img {
  display: block;
  width: 100%;
  height: 100%;
}
.cs_testimonial_style_2 .cs_review_card .cs_rating, .cs_testimonial_style_5 .cs_review_card .cs_rating, .cs_testimonial_style_3 .cs_review_card .cs_rating, .cs_testimonial_style_4 .cs_review_card .cs_rating {
  margin-bottom: 12px;
}
.cs_testimonial_style_2 .cs_review_card blockquote, .cs_testimonial_style_5 .cs_review_card blockquote, .cs_testimonial_style_3 .cs_review_card blockquote, .cs_testimonial_style_4 .cs_review_card blockquote {
  margin-bottom: 32px;
  font-size: 18px;
  line-height: 1.44em;
  font-weight: 400;
  font-style: normal;
  color: var(--primary-color);
  font-family: var(--secondary-font);
}
.cs_testimonial_style_2 .cs_review_card .cs_review_author, .cs_testimonial_style_5 .cs_review_card .cs_review_author, .cs_testimonial_style_3 .cs_review_card .cs_review_author, .cs_testimonial_style_4 .cs_review_card .cs_review_author {
  display: flex;
  align-items: center;
  gap: 16px;
}
.cs_testimonial_style_2 .cs_review_card .cs_review_avatar, .cs_testimonial_style_5 .cs_review_card .cs_review_avatar, .cs_testimonial_style_3 .cs_review_card .cs_review_avatar, .cs_testimonial_style_4 .cs_review_card .cs_review_avatar {
  flex: none;
  width: 100px;
  height: 100px;
  border-radius: 50%;
  overflow: hidden;
}
.cs_testimonial_style_2 .cs_review_card .cs_review_avatar img, .cs_testimonial_style_5 .cs_review_card .cs_review_avatar img, .cs_testimonial_style_3 .cs_review_card .cs_review_avatar img, .cs_testimonial_style_4 .cs_review_card .cs_review_avatar img {
  display: block;
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}
.cs_testimonial_style_2 .cs_review_card .cs_review_label, .cs_testimonial_style_5 .cs_review_card .cs_review_label, .cs_testimonial_style_3 .cs_review_card .cs_review_label, .cs_testimonial_style_4 .cs_review_card .cs_review_label {
  margin-top: 4px;
}
.cs_testimonial_style_2 .cs_slider_controller_2, .cs_testimonial_style_5 .cs_slider_controller_2, .cs_testimonial_style_3 .cs_slider_controller_2, .cs_testimonial_style_4 .cs_slider_controller_2, .cs_testimonial_style_2 .cs_slider_controller_3, .cs_testimonial_style_5 .cs_slider_controller_3, .cs_testimonial_style_3 .cs_slider_controller_3, .cs_testimonial_style_4 .cs_slider_controller_3 {
  margin-top: 32px;
  gap: 40px;
  justify-content: flex-end;
}
.cs_testimonial_style_2 .cs_slider_controller_2::before, .cs_testimonial_style_5 .cs_slider_controller_2::before, .cs_testimonial_style_3 .cs_slider_controller_2::before, .cs_testimonial_style_4 .cs_slider_controller_2::before, .cs_testimonial_style_2 .cs_slider_controller_3::before, .cs_testimonial_style_5 .cs_slider_controller_3::before, .cs_testimonial_style_3 .cs_slider_controller_3::before, .cs_testimonial_style_4 .cs_slider_controller_3::before {
  content: "";
  flex: 1;
  height: 1px;
  background-color: var(--gray4-color);
}
.cs_testimonial_style_2 .cs_testimonial_media, .cs_testimonial_style_5 .cs_testimonial_media, .cs_testimonial_style_3 .cs_testimonial_media, .cs_testimonial_style_4 .cs_testimonial_media {
  position: relative;
  height: 100%;
  padding: 100px 0;
}
.cs_testimonial_style_2 .cs_testimonial_media .cs_review_media_lg, .cs_testimonial_style_5 .cs_testimonial_media .cs_review_media_lg, .cs_testimonial_style_3 .cs_testimonial_media .cs_review_media_lg, .cs_testimonial_style_4 .cs_testimonial_media .cs_review_media_lg,
.cs_testimonial_style_2 .cs_testimonial_media .cs_review_media_sm,
.cs_testimonial_style_5 .cs_testimonial_media .cs_review_media_sm,
.cs_testimonial_style_3 .cs_testimonial_media .cs_review_media_sm,
.cs_testimonial_style_4 .cs_testimonial_media .cs_review_media_sm {
  display: flex;
  gap: 30px;
}
.cs_testimonial_style_2 .cs_testimonial_media .cs_review_media_lg img, .cs_testimonial_style_5 .cs_testimonial_media .cs_review_media_lg img, .cs_testimonial_style_3 .cs_testimonial_media .cs_review_media_lg img, .cs_testimonial_style_4 .cs_testimonial_media .cs_review_media_lg img,
.cs_testimonial_style_2 .cs_testimonial_media .cs_review_media_sm img,
.cs_testimonial_style_5 .cs_testimonial_media .cs_review_media_sm img,
.cs_testimonial_style_3 .cs_testimonial_media .cs_review_media_sm img,
.cs_testimonial_style_4 .cs_testimonial_media .cs_review_media_sm img {
  display: block;
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}
.cs_testimonial_style_2 .cs_testimonial_media .cs_review_media_lg, .cs_testimonial_style_5 .cs_testimonial_media .cs_review_media_lg, .cs_testimonial_style_3 .cs_testimonial_media .cs_review_media_lg, .cs_testimonial_style_4 .cs_testimonial_media .cs_review_media_lg {
  width: 100%;
  position: absolute;
  top: 0;
  height: calc(100% - 100px);
}
.cs_testimonial_style_2 .cs_testimonial_media .cs_review_media_lg img, .cs_testimonial_style_5 .cs_testimonial_media .cs_review_media_lg img, .cs_testimonial_style_3 .cs_testimonial_media .cs_review_media_lg img, .cs_testimonial_style_4 .cs_testimonial_media .cs_review_media_lg img {
  width: min(65%, 424px);
}
.cs_testimonial_style_2 .cs_testimonial_media .cs_review_media_lg .cs_review_stat, .cs_testimonial_style_5 .cs_testimonial_media .cs_review_media_lg .cs_review_stat, .cs_testimonial_style_3 .cs_testimonial_media .cs_review_media_lg .cs_review_stat, .cs_testimonial_style_4 .cs_testimonial_media .cs_review_media_lg .cs_review_stat {
  margin-top: 12px;
}
.cs_testimonial_style_2 .cs_testimonial_media .cs_review_media_sm, .cs_testimonial_style_5 .cs_testimonial_media .cs_review_media_sm, .cs_testimonial_style_3 .cs_testimonial_media .cs_review_media_sm, .cs_testimonial_style_4 .cs_testimonial_media .cs_review_media_sm {
  width: 100%;
  align-items: flex-end;
  position: absolute;
  left: 0;
  bottom: 0;
  height: calc(100% - 100px);
}
.cs_testimonial_style_2 .cs_testimonial_media .cs_review_media_sm img, .cs_testimonial_style_5 .cs_testimonial_media .cs_review_media_sm img, .cs_testimonial_style_3 .cs_testimonial_media .cs_review_media_sm img, .cs_testimonial_style_4 .cs_testimonial_media .cs_review_media_sm img {
  width: min(57%, 312px);
}
.cs_testimonial_style_2 .cs_testimonial_media .cs_review_media_sm .cs_review_stat, .cs_testimonial_style_5 .cs_testimonial_media .cs_review_media_sm .cs_review_stat, .cs_testimonial_style_3 .cs_testimonial_media .cs_review_media_sm .cs_review_stat, .cs_testimonial_style_4 .cs_testimonial_media .cs_review_media_sm .cs_review_stat {
  margin-bottom: 20px;
}
.cs_testimonial_style_2 .cs_testimonial_media .cs_review_stat, .cs_testimonial_style_5 .cs_testimonial_media .cs_review_stat, .cs_testimonial_style_3 .cs_testimonial_media .cs_review_stat, .cs_testimonial_style_4 .cs_testimonial_media .cs_review_stat {
  z-index: 2;
  display: flex;
  align-items: baseline;
  gap: 8px;
  line-height: 1;
}
.cs_testimonial_style_2 .cs_testimonial_media .cs_review_stat_value, .cs_testimonial_style_5 .cs_testimonial_media .cs_review_stat_value, .cs_testimonial_style_3 .cs_testimonial_media .cs_review_stat_value, .cs_testimonial_style_4 .cs_testimonial_media .cs_review_stat_value {
  line-height: 1;
}
@media (max-width: 1399px) {
  .cs_testimonial_style_2 .cs_testimonial_media .cs_review_media_sm img, .cs_testimonial_style_5 .cs_testimonial_media .cs_review_media_sm img, .cs_testimonial_style_3 .cs_testimonial_media .cs_review_media_sm img, .cs_testimonial_style_4 .cs_testimonial_media .cs_review_media_sm img,
  .cs_testimonial_style_2 .cs_testimonial_media .cs_review_media_lg img,
  .cs_testimonial_style_5 .cs_testimonial_media .cs_review_media_lg img,
  .cs_testimonial_style_3 .cs_testimonial_media .cs_review_media_lg img,
  .cs_testimonial_style_4 .cs_testimonial_media .cs_review_media_lg img {
    width: min(55%, 312px);
  }
}
@media (max-width: 991px) {
  .cs_testimonial_style_2, .cs_testimonial_style_5, .cs_testimonial_style_3, .cs_testimonial_style_4 {
    grid-template-columns: 1fr;
    gap: 30px;
  }
  .cs_testimonial_style_2 .cs_testimonial_media, .cs_testimonial_style_5 .cs_testimonial_media, .cs_testimonial_style_3 .cs_testimonial_media, .cs_testimonial_style_4 .cs_testimonial_media {
    order: -1;
    height: auto;
    padding: 0 0 100px;
  }
  .cs_testimonial_style_2 .cs_testimonial_media .cs_review_media_lg, .cs_testimonial_style_5 .cs_testimonial_media .cs_review_media_lg, .cs_testimonial_style_3 .cs_testimonial_media .cs_review_media_lg, .cs_testimonial_style_4 .cs_testimonial_media .cs_review_media_lg {
    position: initial;
  }
  .cs_testimonial_style_2 .cs_testimonial_media .cs_review_media_lg img, .cs_testimonial_style_5 .cs_testimonial_media .cs_review_media_lg img, .cs_testimonial_style_3 .cs_testimonial_media .cs_review_media_lg img, .cs_testimonial_style_4 .cs_testimonial_media .cs_review_media_lg img {
    flex: 1;
  }
  .cs_testimonial_style_2 .cs_testimonial_review, .cs_testimonial_style_5 .cs_testimonial_review, .cs_testimonial_style_3 .cs_testimonial_review, .cs_testimonial_style_4 .cs_testimonial_review {
    max-width: 100%;
  }
}
@media (max-width: 575px) {
  .cs_testimonial_style_2 .cs_review_avatar, .cs_testimonial_style_5 .cs_review_avatar, .cs_testimonial_style_3 .cs_review_avatar, .cs_testimonial_style_4 .cs_review_avatar {
    width: 72px;
    height: 72px;
  }
  .cs_testimonial_style_2 blockquote, .cs_testimonial_style_5 blockquote, .cs_testimonial_style_3 blockquote, .cs_testimonial_style_4 blockquote {
    margin-bottom: 24px;
  }
  .cs_testimonial_style_2 .cs_testimonial_media .cs_review_media_lg, .cs_testimonial_style_5 .cs_testimonial_media .cs_review_media_lg, .cs_testimonial_style_3 .cs_testimonial_media .cs_review_media_lg, .cs_testimonial_style_4 .cs_testimonial_media .cs_review_media_lg,
  .cs_testimonial_style_2 .cs_testimonial_media .cs_review_media_sm,
  .cs_testimonial_style_5 .cs_testimonial_media .cs_review_media_sm,
  .cs_testimonial_style_3 .cs_testimonial_media .cs_review_media_sm,
  .cs_testimonial_style_4 .cs_testimonial_media .cs_review_media_sm {
    width: 100%;
    gap: 24px;
    flex-direction: column;
  }
  .cs_testimonial_style_2 .cs_testimonial_media .cs_review_media_lg .cs_review_stat, .cs_testimonial_style_5 .cs_testimonial_media .cs_review_media_lg .cs_review_stat, .cs_testimonial_style_3 .cs_testimonial_media .cs_review_media_lg .cs_review_stat, .cs_testimonial_style_4 .cs_testimonial_media .cs_review_media_lg .cs_review_stat,
  .cs_testimonial_style_2 .cs_testimonial_media .cs_review_media_sm .cs_review_stat,
  .cs_testimonial_style_5 .cs_testimonial_media .cs_review_media_sm .cs_review_stat,
  .cs_testimonial_style_3 .cs_testimonial_media .cs_review_media_sm .cs_review_stat,
  .cs_testimonial_style_4 .cs_testimonial_media .cs_review_media_sm .cs_review_stat {
    margin: 0;
  }
  .cs_testimonial_style_2 .cs_testimonial_media .cs_review_media_lg, .cs_testimonial_style_5 .cs_testimonial_media .cs_review_media_lg, .cs_testimonial_style_3 .cs_testimonial_media .cs_review_media_lg, .cs_testimonial_style_4 .cs_testimonial_media .cs_review_media_lg {
    padding-left: 30%;
  }
  .cs_testimonial_style_2 .cs_testimonial_media .cs_review_media_lg img, .cs_testimonial_style_5 .cs_testimonial_media .cs_review_media_lg img, .cs_testimonial_style_3 .cs_testimonial_media .cs_review_media_lg img, .cs_testimonial_style_4 .cs_testimonial_media .cs_review_media_lg img {
    width: 100%;
  }
  .cs_testimonial_style_2 .cs_testimonial_media .cs_review_media_sm, .cs_testimonial_style_5 .cs_testimonial_media .cs_review_media_sm, .cs_testimonial_style_3 .cs_testimonial_media .cs_review_media_sm, .cs_testimonial_style_4 .cs_testimonial_media .cs_review_media_sm {
    gap: 16px;
    flex-direction: column;
    align-items: flex-start;
  }
  .cs_testimonial_style_2 .cs_testimonial_media .cs_review_media_sm img, .cs_testimonial_style_5 .cs_testimonial_media .cs_review_media_sm img, .cs_testimonial_style_3 .cs_testimonial_media .cs_review_media_sm img, .cs_testimonial_style_4 .cs_testimonial_media .cs_review_media_sm img {
    width: 50%;
  }
}
@media (max-width: 420px) {
  .cs_testimonial_style_2 .cs_testimonial_media, .cs_testimonial_style_5 .cs_testimonial_media, .cs_testimonial_style_3 .cs_testimonial_media, .cs_testimonial_style_4 .cs_testimonial_media {
    padding: 0;
  }
  .cs_testimonial_style_2 .cs_testimonial_media .cs_review_media_lg, .cs_testimonial_style_5 .cs_testimonial_media .cs_review_media_lg, .cs_testimonial_style_3 .cs_testimonial_media .cs_review_media_lg, .cs_testimonial_style_4 .cs_testimonial_media .cs_review_media_lg {
    padding-left: 0;
  }
  .cs_testimonial_style_2 .cs_testimonial_media .cs_review_media_sm, .cs_testimonial_style_5 .cs_testimonial_media .cs_review_media_sm, .cs_testimonial_style_3 .cs_testimonial_media .cs_review_media_sm, .cs_testimonial_style_4 .cs_testimonial_media .cs_review_media_sm {
    position: initial;
    margin-top: -10%;
    height: auto;
  }
  .cs_testimonial_style_2 .cs_testimonial_media .cs_review_media_sm img, .cs_testimonial_style_5 .cs_testimonial_media .cs_review_media_sm img, .cs_testimonial_style_3 .cs_testimonial_media .cs_review_media_sm img, .cs_testimonial_style_4 .cs_testimonial_media .cs_review_media_sm img {
    width: 100%;
    max-height: 260px;
  }
}

.cs_testimonial_style_3, .cs_testimonial_style_4 {
  gap: 30px 120px;
}
.cs_testimonial_style_3 .cs_testimonial_review, .cs_testimonial_style_4 .cs_testimonial_review {
  padding: 64px 0;
  min-width: auto;
}
.cs_testimonial_style_3 .cs_testimonial_thumb, .cs_testimonial_style_4 .cs_testimonial_thumb {
  width: min(50vw, 960px);
  height: 100%;
  flex: 1;
}
.cs_testimonial_style_3 .cs_testimonial_thumb img, .cs_testimonial_style_4 .cs_testimonial_thumb img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}
@media (max-width: 991px) {
  .cs_testimonial_style_3 .cs_testimonial_thumb, .cs_testimonial_style_4 .cs_testimonial_thumb {
    display: none;
  }
  .cs_testimonial_style_3 .cs_testimonial_review, .cs_testimonial_style_4 .cs_testimonial_review {
    padding: 50px 0;
    min-width: 100%;
  }
  .cs_testimonial_style_3 .cs_review_card blockquote, .cs_testimonial_style_4 .cs_review_card blockquote {
    margin-bottom: 24px;
  }
  .cs_testimonial_style_3 .cs_review_card .cs_review_avatar, .cs_testimonial_style_4 .cs_review_card .cs_review_avatar {
    width: 80px;
    height: 80px;
  }
}

.cs_testimonial_style_4 {
  width: calc(100% - 24px);
  max-width: 1720px;
  display: block;
  margin: 0 auto;
}
.cs_testimonial_style_4 .cs_testimonial_slider {
  width: min(100%, 538px);
}
.cs_testimonial_style_4 .cs_review_card .cs_review_quote {
  filter: brightness(0) saturate(100%) invert(98%) sepia(0%) saturate(0%) hue-rotate(173deg) brightness(104%) contrast(101%);
}
.cs_testimonial_style_4 .cs_review_card blockquote {
  font-size: 28px;
  line-height: 1.34em;
  font-style: normal;
  font-weight: 600;
  margin-bottom: 32px;
  color: var(--primary-color);
  font-family: var(--primary-font);
}
.cs_testimonial_style_4 .cs_slider_controller_2, .cs_testimonial_style_4 .cs_slider_controller_3 {
  margin-top: 32px;
  gap: 30px;
}
.cs_testimonial_style_4 .cs_slider_controller_2::before, .cs_testimonial_style_4 .cs_slider_controller_3::before {
  content: "";
  flex: 1;
  height: 1px;
  background-color: var(--white-color);
}
.cs_testimonial_style_4 .cs_slider_controller_2 .cs_slider_arrow, .cs_testimonial_style_4 .cs_slider_controller_3 .cs_slider_arrow {
  color: var(--primary-color);
  background-color: transparent;
  border-color: var(--white-color);
}
.cs_testimonial_style_4 .cs_slider_controller_2 .cs_slider_arrow:hover, .cs_testimonial_style_4 .cs_slider_controller_3 .cs_slider_arrow:hover {
  background-color: var(--white-color);
}

.cs_testimonial_style_5 {
  display: block;
  padding: 32px;
  height: 100%;
}
.cs_testimonial_style_5 .cs_review_card {
  padding-top: 0;
}
.cs_testimonial_style_5 .cs_review_card .cs_review_content {
  position: relative;
  margin-top: 12px;
  padding-top: 61px;
}
.cs_testimonial_style_5 .cs_review_card .cs_review_quote {
  display: block;
  z-index: 1;
  opacity: 1;
}
.cs_testimonial_style_5 .cs_review_card .cs_rating {
  margin-bottom: 20px;
  z-index: 2;
}
.cs_testimonial_style_5 .cs_review_card blockquote {
  position: relative;
  z-index: 3;
  margin-bottom: 0;
}
@media (max-width: 1199px) {
  .cs_testimonial_style_5 {
    padding: 20px;
  }
}

.cs_testimonial_style_6 {
  position: relative;
  height: 100%;
  display: flex;
  flex-direction: column;
  padding: 86px 32px 24px;
}
.cs_testimonial_style_6 .cs_review_quote {
  position: absolute;
  left: 34px;
  top: 24px;
  z-index: 0;
  width: 142px;
  height: 142px;
  pointer-events: none;
}
.cs_testimonial_style_6 .cs_review_quote img {
  display: block;
  width: 100%;
  height: 100%;
}
.cs_testimonial_style_6 > * {
  position: relative;
  z-index: 1;
}
.cs_testimonial_style_6 .cs_rating {
  margin-bottom: 12px;
}
.cs_testimonial_style_6 blockquote {
  margin-bottom: 24px;
  font-size: 22px;
  line-height: 1.36em;
  font-weight: 500;
  font-style: normal;
  color: var(--primary-color);
  font-family: var(--primary-font);
}
.cs_testimonial_style_6 .cs_review_author {
  display: flex;
  gap: 12px;
  align-items: center;
  margin-top: auto;
}
.cs_testimonial_style_6 .cs_review_avatar {
  flex: none;
  width: 100px;
  height: 100px;
  border-radius: 50%;
  overflow: hidden;
}
.cs_testimonial_style_6 .cs_review_avatar img {
  display: block;
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}
.cs_testimonial_style_6 .cs_review_label {
  margin-top: 8px;
}
@media (max-width: 991px) {
  .cs_testimonial_style_6 {
    padding: 40px 15px 24px;
  }
  .cs_testimonial_style_6 .cs_review_quote {
    left: 0;
    top: 0;
  }
  .cs_testimonial_style_6 blockquote {
    font-size: 18px;
  }
  .cs_testimonial_style_6 .cs_review_avatar {
    width: 80px;
    height: 80px;
  }
}
@media (max-width: 575px) {
  .cs_testimonial_style_6 blockquote {
    font-size: 16px;
  }
  .cs_testimonial_style_6 .cs_review_avatar {
    width: 70px;
    height: 70px;
  }
}

/*==================================================
  Slider Active
====================================================*/
.swiper-slide-active .cs_testimonial_thumb_left {
  opacity: 1;
  transform: translateY(-50%) rotate(15deg);
}
.swiper-slide-active .cs_testimonial_thumb_right {
  opacity: 1;
  transform: translateY(-50%) rotate(-15deg);
}

/*=====================================================
  18. Products
=======================================================*/
.cs_product_style_1 {
  display: flex;
  flex-direction: column;
  text-align: center;
}
.cs_product_style_1 .cs_product_thumb {
  position: relative;
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
}
.cs_product_style_1 .cs_product_thumb > a {
  display: block;
  position: relative;
}
.cs_product_style_1 .cs_product_thumb .cs_product_img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  opacity: 1;
  transform: scale(1);
  transition: opacity 0.3s ease, transform 0.5s cubic-bezier(0.45, 0.35, 0.55, 0.65);
}
.cs_product_style_1 .cs_product_thumb .cs_product_img + .cs_product_img {
  position: absolute;
  inset: 0;
  opacity: 0;
  transform: scale(1.1);
}
.cs_product_style_1 .cs_product_badges {
  position: absolute;
  top: 12px;
  left: 12px;
  right: 12px;
  z-index: 2;
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  pointer-events: none;
}
.cs_product_style_1 .cs_product_badge {
  padding: 1px 6px;
}
.cs_product_style_1 .cs_action_btns {
  width: 100%;
  position: absolute;
  left: 0;
  bottom: 24px;
  z-index: 1;
  gap: 8px;
  opacity: 0;
  transform: translateY(50px);
  transition: transform 0.4s cubic-bezier(0.45, 0.35, 0.55, 0.55), opacity 0.3s ease-in;
}
.cs_product_style_1 .cs_product_action {
  width: 40px;
  height: 40px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  padding: 10px;
  color: var(--white-color);
  background-color: var(--primary-color);
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
  transition: all 0.3s ease;
}
.cs_product_style_1 .cs_product_action:hover {
  background-color: var(--accent-color);
}
.cs_product_style_1 .cs_product_info {
  flex: 1;
  display: flex;
  gap: 6px;
  align-items: center;
  flex-direction: column;
  padding-top: 24px;
}
.cs_product_style_1 .cs_product_title a:hover {
  color: var(--accent-color);
}
.cs_product_style_1 .cs_rating {
  width: 88px;
}
.cs_product_style_1.cs_type_1 .cs_product_thumb {
  flex-direction: column;
}
.cs_product_style_1.cs_type_1 .cs_product_badges {
  top: 24px;
  left: 24px;
  right: 24px;
}
.cs_product_style_1.cs_type_1 .cs_action_btns {
  flex-direction: column;
  width: initial;
  left: initial;
  bottom: initial;
  top: 24px;
  right: 24px;
  transform: translateY(0);
}
.cs_product_style_1.cs_type_1 .cs_product_action {
  transition: transform 0.4s cubic-bezier(0.44, 0.35, 0.15, 0.6);
}
.cs_product_style_1.cs_type_1 .cs_product_action:nth-child(1) {
  transform: translateY(48px);
}
.cs_product_style_1.cs_type_1 .cs_product_action:nth-child(3) {
  transform: translateY(-48px);
}
.cs_product_style_1.cs_type_1 .cs_product_info {
  padding-top: 18px;
  padding-bottom: 32px;
}
.cs_product_style_1.cs_card_banner {
  width: 100%;
  position: relative;
  overflow: hidden;
  min-height: 390px;
}
.cs_product_style_1.cs_card_banner .cs_card_banner_link {
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  align-items: center;
  height: 100%;
  padding: 0 20px 30px;
  text-align: center;
}
.cs_product_style_1.cs_card_banner .cs_promo_bg {
  position: absolute;
  inset: 0;
  z-index: 0;
  overflow: hidden;
}
.cs_product_style_1.cs_card_banner .cs_promo_bg img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  transition: transform 0.5s cubic-bezier(0.45, 0.35, 0.55, 0.65);
}
.cs_product_style_1.cs_card_banner .cs_card_banner_content {
  position: relative;
  z-index: 1;
}
.cs_product_style_1.cs_card_banner .cs_card_banner_title {
  margin-bottom: 4px;
}
.cs_product_style_1.cs_card_banner .cs_card_banner_sub {
  margin-bottom: 0;
  color: var(--primary-color);
}
.cs_product_style_1.cs_card_banner .cs_card_banner_sub.cs_gold {
  color: #b8962e;
}
.cs_product_style_1.cs_card_banner .cs_card_banner_btn {
  display: inline-block;
  margin-top: 20px;
  color: var(--primary-color);
}
.cs_product_style_1.cs_card_banner .cs_card_banner_btn:hover {
  color: var(--accent-color);
  text-decoration: underline;
}
.cs_product_style_1.cs_card_banner:hover .cs_promo_bg img {
  transform: scale(1.05);
}
.cs_product_style_1:hover .cs_product_thumb .cs_product_img:has(+ .cs_product_img) {
  opacity: 0;
  transform: scale(1.1);
}
.cs_product_style_1:hover .cs_product_thumb .cs_product_img:has(+ .cs_product_img) + .cs_product_img {
  opacity: 1;
  transform: scale(1);
}
.cs_product_style_1:hover .cs_product_thumb .cs_product_img {
  opacity: 1;
  transform: scale(1.03);
}
.cs_product_style_1:hover .cs_action_btns {
  opacity: 1;
  transform: translateY(0);
}
.cs_product_style_1:hover.cs_type_1 .cs_product_action {
  opacity: 1;
  transform: translateY(0);
}

/*=====================================================
  Shop List View & Grid View Layouts
=======================================================*/
.cs_product_list {
  display: flex;
  flex-direction: column;
  gap: 24px;
}

.cs_shop_layout {
  --cols: 3;
  display: grid;
  grid-template-columns: 300px minmax(0, 1fr);
  gap: 30px;
  align-items: start;
}
.cs_shop_layout[data-view="2"] {
  --cols: 2;
}
.cs_shop_layout[data-view="3"] {
  --cols: 3;
}
.cs_shop_layout[data-view="4"] {
  --cols: 4;
}
@media (max-width: 1199px) {
  .cs_shop_layout[data-view="4"] .cs_product_grid {
    grid-template-columns: repeat(3, 1fr);
  }
}
.cs_shop_layout[data-view="5"] {
  --cols: 5;
}
.cs_shop_layout[data-view="6"] {
  --cols: 6;
}
@media (min-width: 992px) {
  .cs_shop_layout[data-view=list] .cs_filter_toggler, .cs_shop_layout[data-view="2"] .cs_filter_toggler, .cs_shop_layout[data-view="3"] .cs_filter_toggler, .cs_shop_layout[data-view="4"] .cs_filter_toggler {
    display: none;
  }
}
.cs_shop_layout[data-view="5"], .cs_shop_layout[data-view="6"] {
  grid-template-columns: minmax(0, 1fr);
}
.cs_shop_layout[data-view="5"] .cs_product_filter_sidebar, .cs_shop_layout[data-view="6"] .cs_product_filter_sidebar {
  position: fixed;
  top: 0;
  left: 0;
  z-index: 1002;
  padding: 30px 24px;
  transform: translateX(-120%);
  background-color: var(--white-color);
}
.cs_shop_layout[data-view="5"] .cs_product_filter_sidebar .cs_filter_close, .cs_shop_layout[data-view="6"] .cs_product_filter_sidebar .cs_filter_close {
  display: block;
}

.cs_shop_section .container:has(.cs_shop_layout[data-view="5"]),
.cs_shop_section .container:has(.cs_shop_layout[data-view="6"]) {
  max-width: 1725px;
}

/*=====================================================
  Product Promo Card (Shop banner)
=======================================================*/
.cs_promo_banner {
  margin-bottom: 40px;
}

.cs_product_promo_1, .cs_design_banner, .cs_product_promo_7, .cs_product_promo_6, .cs_product_promo_5, .cs_product_promo_4, .cs_product_promo_3, .cs_product_promo_2 {
  display: flex;
  align-items: flex-end;
  position: relative;
  min-height: 350px;
  padding: 48px;
  overflow: hidden;
}
.cs_product_promo_1 .cs_promo_bg, .cs_design_banner .cs_promo_bg, .cs_product_promo_7 .cs_promo_bg, .cs_product_promo_6 .cs_promo_bg, .cs_product_promo_5 .cs_promo_bg, .cs_product_promo_4 .cs_promo_bg, .cs_product_promo_3 .cs_promo_bg, .cs_product_promo_2 .cs_promo_bg {
  position: absolute;
  inset: 0;
  z-index: 0;
  pointer-events: none;
}
.cs_product_promo_1 .cs_promo_bg img, .cs_design_banner .cs_promo_bg img, .cs_product_promo_7 .cs_promo_bg img, .cs_product_promo_6 .cs_promo_bg img, .cs_product_promo_5 .cs_promo_bg img, .cs_product_promo_4 .cs_promo_bg img, .cs_product_promo_3 .cs_promo_bg img, .cs_product_promo_2 .cs_promo_bg img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  transition: transform 0.4s cubic-bezier(0.45, 0.35, 0.55, 0.65);
}
.cs_product_promo_1 .cs_promo_content, .cs_design_banner .cs_promo_content, .cs_product_promo_7 .cs_promo_content, .cs_product_promo_6 .cs_promo_content, .cs_product_promo_5 .cs_promo_content, .cs_product_promo_4 .cs_promo_content, .cs_product_promo_3 .cs_promo_content, .cs_product_promo_2 .cs_promo_content {
  position: relative;
  z-index: 1;
  width: min(100%, 250px);
}
.cs_product_promo_1 .cs_promo_label, .cs_design_banner .cs_promo_label, .cs_product_promo_7 .cs_promo_label, .cs_product_promo_6 .cs_promo_label, .cs_product_promo_5 .cs_promo_label, .cs_product_promo_4 .cs_promo_label, .cs_product_promo_3 .cs_promo_label, .cs_product_promo_2 .cs_promo_label {
  display: block;
  margin-bottom: 3px;
}
.cs_product_promo_1 .cs_promo_title, .cs_design_banner .cs_promo_title, .cs_product_promo_7 .cs_promo_title, .cs_product_promo_6 .cs_promo_title, .cs_product_promo_5 .cs_promo_title, .cs_product_promo_4 .cs_promo_title, .cs_product_promo_3 .cs_promo_title, .cs_product_promo_2 .cs_promo_title {
  margin-bottom: 12px;
}
.cs_product_promo_1 .cs_promo_title a:hover, .cs_design_banner .cs_promo_title a:hover, .cs_product_promo_7 .cs_promo_title a:hover, .cs_product_promo_6 .cs_promo_title a:hover, .cs_product_promo_5 .cs_promo_title a:hover, .cs_product_promo_4 .cs_promo_title a:hover, .cs_product_promo_3 .cs_promo_title a:hover, .cs_product_promo_2 .cs_promo_title a:hover {
  text-decoration: underline;
}
.cs_product_promo_1 .cs_promo_price, .cs_design_banner .cs_promo_price, .cs_product_promo_7 .cs_promo_price, .cs_product_promo_6 .cs_promo_price, .cs_product_promo_5 .cs_promo_price, .cs_product_promo_4 .cs_promo_price, .cs_product_promo_3 .cs_promo_price, .cs_product_promo_2 .cs_promo_price {
  display: flex;
  align-items: baseline;
  flex-wrap: wrap;
  gap: 6px;
}
.cs_product_promo_1 .cs_promo_btn, .cs_design_banner .cs_promo_btn, .cs_product_promo_7 .cs_promo_btn, .cs_product_promo_6 .cs_promo_btn, .cs_product_promo_5 .cs_promo_btn, .cs_product_promo_4 .cs_promo_btn, .cs_product_promo_3 .cs_promo_btn, .cs_product_promo_2 .cs_promo_btn {
  display: inline-block;
  margin-top: 48px;
  color: var(--primary-color);
}
.cs_product_promo_1 .cs_promo_btn:hover, .cs_design_banner .cs_promo_btn:hover, .cs_product_promo_7 .cs_promo_btn:hover, .cs_product_promo_6 .cs_promo_btn:hover, .cs_product_promo_5 .cs_promo_btn:hover, .cs_product_promo_4 .cs_promo_btn:hover, .cs_product_promo_3 .cs_promo_btn:hover, .cs_product_promo_2 .cs_promo_btn:hover {
  color: var(--accent-color);
  text-decoration: underline;
}
.cs_product_promo_1:hover .cs_promo_bg img, .cs_design_banner:hover .cs_promo_bg img, .cs_product_promo_7:hover .cs_promo_bg img, .cs_product_promo_6:hover .cs_promo_bg img, .cs_product_promo_5:hover .cs_promo_bg img, .cs_product_promo_4:hover .cs_promo_bg img, .cs_product_promo_3:hover .cs_promo_bg img, .cs_product_promo_2:hover .cs_promo_bg img {
  transform: scale(1.03);
}
@media (max-width: 991px) {
  .cs_product_promo_1, .cs_design_banner, .cs_product_promo_7, .cs_product_promo_6, .cs_product_promo_5, .cs_product_promo_4, .cs_product_promo_3, .cs_product_promo_2 {
    padding: 40px 24px;
  }
  .cs_product_promo_1 .cs_promo_btn, .cs_design_banner .cs_promo_btn, .cs_product_promo_7 .cs_promo_btn, .cs_product_promo_6 .cs_promo_btn, .cs_product_promo_5 .cs_promo_btn, .cs_product_promo_4 .cs_promo_btn, .cs_product_promo_3 .cs_promo_btn, .cs_product_promo_2 .cs_promo_btn {
    margin-top: 20px;
  }
}
@media (max-width: 575px) {
  .cs_product_promo_1, .cs_design_banner, .cs_product_promo_7, .cs_product_promo_6, .cs_product_promo_5, .cs_product_promo_4, .cs_product_promo_3, .cs_product_promo_2 {
    padding: 40px 15px;
    min-height: auto;
  }
}

.cs_product_promo_2 {
  min-height: 436px;
  padding: 110px 30px 110px 112px;
}
.cs_product_promo_2 .cs_promo_content {
  width: min(100%, 424px);
}
.cs_product_promo_2 .cs_promo_label {
  display: block;
  margin-bottom: 6px;
}
.cs_product_promo_2 .cs_promo_title {
  margin-bottom: 27px;
}
.cs_product_promo_2 .cs_promo_btn {
  margin-top: 32px;
}
.cs_product_promo_2 .cs_promo_btn:hover {
  color: var(--primary-color);
}
@media (max-width: 991px) {
  .cs_product_promo_2 {
    min-height: auto;
    padding: 50px 30px;
  }
  .cs_product_promo_2 .cs_promo_title {
    margin-bottom: 20px;
  }
  .cs_product_promo_2 .cs_promo_btn {
    margin-top: 24px;
  }
}

.cs_product_promo_3 {
  min-height: 456px;
  display: flex;
  align-items: flex-end;
  justify-content: flex-end;
}
.cs_product_promo_3 .cs_promo_content {
  width: min(100%, 150px);
}
.cs_product_promo_3 .cs_promo_label {
  margin-bottom: 3px;
}
.cs_product_promo_3 .cs_promo_btn {
  margin-top: 32px;
}
.cs_product_promo_3 .cs_promo_btn:hover {
  color: var(--primary-color);
}

.cs_product_promo_4 {
  min-height: 500px;
  display: flex;
  align-items: flex-end;
  justify-content: flex-end;
}
.cs_product_promo_4 .cs_promo_content {
  width: -moz-max-content;
  width: max-content;
  max-width: 310px;
}
.cs_product_promo_4 .cs_offer_limit {
  margin-top: 6px;
}
.cs_product_promo_4 .cs_promo_label {
  margin-bottom: 6px;
}
.cs_product_promo_4 .cs_promo_btn:hover {
  color: var(--primary-color);
}

.cs_product_promo_5 {
  width: 100%;
  min-height: 500px;
  display: flex;
  align-items: flex-end;
  justify-content: flex-end;
}
.cs_product_promo_5 .cs_overlay {
  inset: 0;
  z-index: 1;
  background: linear-gradient(180deg, rgba(0, 0, 0, 0) 50%, rgba(11, 22, 31, 0.2) 83.17%);
}
.cs_product_promo_5 .cs_promo_content {
  width: -moz-max-content;
  width: max-content;
}
.cs_product_promo_5 .cs_promo_label {
  margin-bottom: 9px;
}
.cs_product_promo_5 .cs_promo_btn {
  color: var(--white-color);
}
.cs_product_promo_5 .cs_promo_btn:hover {
  color: var(--white-color);
}

.cs_product_promo_6 {
  min-height: 500px;
  padding: 48px 80px;
  display: flex;
  align-items: center;
  justify-content: flex-end;
}
.cs_product_promo_6 .cs_promo_content {
  width: min(100%, 360px);
  text-align: right;
}
.cs_product_promo_6 .cs_promo_label {
  margin-bottom: 8px;
}
.cs_product_promo_6 .cs_promo_title {
  margin-bottom: 16px;
}
.cs_product_promo_6 .cs_promo_price {
  justify-content: flex-end;
}
.cs_product_promo_6 .cs_promo_btn {
  margin-top: 32px;
}
.cs_product_promo_6 .cs_promo_btn:hover {
  color: var(--primary-color);
}
@media (max-width: 1199px) {
  .cs_product_promo_6 {
    padding: 40px 56px;
  }
}
@media (max-width: 991px) {
  .cs_product_promo_6 {
    min-height: 420px;
    padding: 40px;
  }
}
@media (max-width: 767px) {
  .cs_product_promo_6 {
    justify-content: center;
    padding: 40px 24px;
  }
  .cs_product_promo_6 .cs_promo_content {
    width: min(100%, 320px);
    text-align: center;
  }
  .cs_product_promo_6 .cs_promo_price {
    justify-content: center;
  }
}

.cs_product_promo_7 {
  min-height: 500px;
  padding: 48px 80px;
  display: flex;
  align-items: flex-end;
}
.cs_product_promo_7 .cs_promo_content {
  width: min(100%, 360px);
}
.cs_product_promo_7 .cs_promo_label {
  margin-bottom: 3px;
}
.cs_product_promo_7 .cs_promo_title {
  margin-bottom: 12px;
}
.cs_product_promo_7 .cs_promo_desc {
  margin-bottom: 24px;
}
.cs_product_promo_7 .cs_promo_price s {
  font-size: 16px;
  font-weight: 400;
  color: var(--secondary-color);
}
.cs_product_promo_7 .cs_btn_style_1 {
  margin-top: 32px;
}
@media (max-width: 1199px) {
  .cs_product_promo_7 {
    padding: 40px 56px;
  }
}
@media (max-width: 991px) {
  .cs_product_promo_7 {
    min-height: 420px;
    padding: 40px;
  }
}
@media (max-width: 767px) {
  .cs_product_promo_7 {
    justify-content: center;
    padding: 40px 24px;
  }
  .cs_product_promo_7 .cs_promo_content {
    width: min(100%, 320px);
    text-align: center;
  }
  .cs_product_promo_7 .cs_promo_price {
    justify-content: center;
  }
}

/*=====================================================
  Design Your Ring banner
=======================================================*/
.cs_design_banner {
  min-height: 529px;
  padding: 110px 40px;
  display: flex;
  align-items: center;
}
.cs_design_banner .cs_promo_content {
  width: 50%;
  display: flex;
  flex-direction: column;
  margin-left: auto;
}
.cs_design_banner .cs_promo_title {
  margin-bottom: 24px;
}
.cs_design_banner .cs_design_features {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
  list-style: none;
  max-width: 570px;
}
.cs_design_banner .cs_design_feature {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 9px 20px;
  border-radius: 100px;
  border: 1px solid var(--white-color);
  background: rgba(255, 255, 255, 0.2);
}
.cs_design_banner .cs_design_feature img {
  width: 50px;
}
.cs_design_banner .cs_promo_btn {
  margin-top: 64px;
  color: var(--primary-color);
  text-decoration: underline;
}
.cs_design_banner .cs_promo_btn:hover {
  text-decoration: none;
  color: var(--primary-color);
}
@media (max-width: 1199px) {
  .cs_design_banner {
    padding: 40px 56px;
  }
}
@media (max-width: 991px) {
  .cs_design_banner {
    min-height: 420px;
    padding: 40px;
  }
}
@media (max-width: 767px) {
  .cs_design_banner {
    justify-content: center;
    padding: 40px 24px;
  }
  .cs_design_banner .cs_promo_content {
    width: min(100%, 420px);
    text-align: center;
  }
  .cs_design_banner .cs_design_actions {
    justify-content: center;
  }
}
@media (max-width: 575px) {
  .cs_design_banner .cs_design_features {
    grid-template-columns: 1fr;
  }
}

/*=====================================================
  Trending Products section
=======================================================*/
.cs_trending_section .cs_section_heading_style_1 {
  margin-bottom: 32px;
}

.cs_popular_collection .cs_popular_heading .cs_section_heading_style_1 {
  margin-bottom: 140px;
}
.cs_popular_collection .cs_popular_heading .cs_section_title {
  margin-top: 6px;
  margin-bottom: 24px;
}
.cs_popular_collection .cs_popular_heading .cs_view_btn:hover {
  color: var(--accent-color);
  text-decoration: underline;
}
@media (max-width: 991px) {
  .cs_popular_collection .cs_popular_heading .cs_section_heading_style_1 {
    margin-bottom: 24px;
  }
  .cs_popular_collection .cs_popular_heading .cs_section_heading_style_1 .cs_section_title {
    margin-bottom: 16px;
  }
}

/*=====================================================
  Featured Masterpieces
=======================================================*/
.cs_featured_section .cs_section_heading_style_1,
.cs_new_collection .cs_section_heading_style_1 {
  margin-bottom: 32px;
}

/*=====================================================
  View toggle buttons (Shop Layouts)
=======================================================*/
.cs_view_toggle {
  display: inline-flex;
  align-items: center;
  gap: 5px;
}
.cs_view_toggle .cs_view_btn {
  width: 16px;
  border: 0;
  outline: 0;
  cursor: pointer;
  background-color: transparent;
  transition: color 0.3s ease;
}
.cs_view_toggle .cs_view_btn.active img, .cs_view_toggle .cs_view_btn:hover img {
  filter: brightness(0) saturate(100%) invert(73%) sepia(38%) saturate(717%) hue-rotate(4deg) brightness(89%) contrast(93%);
}

/*=====================================================
  Products grid
======================================================*/
.cs_product_grid {
  display: grid;
  gap: 32px 24px;
  grid-template-columns: repeat(var(--cols, 3), minmax(0, 1fr));
}

/*=====================================================
  Initial visible product count per view
======================================================*/
.cs_shop_layout[data-view=list] .cs_product_grid > .cs_product_style_1:nth-child(n+7), .cs_shop_layout[data-view="2"] .cs_product_grid > .cs_product_style_1:nth-child(n+7), .cs_shop_layout[data-view="3"] .cs_product_grid > .cs_product_style_1:nth-child(n+10), .cs_shop_layout[data-view="5"] .cs_product_grid > .cs_product_style_1:nth-child(n+11) {
  display: none;
}

/*=====================================================
  .cs_product_style_1 inside the Shop Layouts
=======================================================*/
.cs_shop_layout .cs_product_style_1 .cs_product_meta,
.cs_shop_layout .cs_product_style_1 .cs_product_specs,
.cs_shop_layout .cs_product_style_1 .cs_product_reviews,
.cs_shop_layout .cs_product_style_1 .cs_product_btns {
  display: none;
}
.cs_shop_layout .cs_product_style_1 .cs_product_title,
.cs_shop_layout .cs_product_style_1 .cs_product_price {
  margin: 0;
}
.cs_shop_layout .cs_product_style_1 .cs_product_rating_row {
  display: flex;
  gap: 6px 13px;
  flex-wrap: wrap;
  align-items: center;
}
.cs_shop_layout {
  /*===================================================
     LIST VIEW — horizontal cards.
  =====================================================*/
}
.cs_shop_layout[data-view=list] .cs_product_grid {
  grid-template-columns: minmax(0, 1fr);
  gap: 24px 16px;
}
.cs_shop_layout[data-view=list] .cs_product_style_1 {
  display: flex;
  gap: 32px;
  padding: 32px;
  text-align: left;
  flex-direction: row;
  background-color: var(--gray-color);
  transition: box-shadow 0.4s ease;
}
.cs_shop_layout[data-view=list] .cs_product_style_1 .cs_product_thumb {
  width: min(40%, 220px);
  flex-shrink: 0;
  align-self: stretch;
  background-color: var(--white-color);
}
.cs_shop_layout[data-view=list] .cs_product_style_1 .cs_action_btns {
  display: none;
}
.cs_shop_layout[data-view=list] .cs_product_style_1 .cs_product_info {
  flex: 1;
  gap: 0;
  padding-top: 0;
  align-items: flex-start;
  text-align: left !important;
}
.cs_shop_layout[data-view=list] .cs_product_style_1 .cs_product_meta {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 6px;
}
.cs_shop_layout[data-view=list] .cs_product_style_1 .cs_product_stock {
  color: var(--success-color);
}
.cs_shop_layout[data-view=list] .cs_product_style_1 .cs_product_stock.cs_out_stock {
  color: var(--error-color);
}
.cs_shop_layout[data-view=list] .cs_product_style_1 .cs_product_title {
  margin-bottom: 12px;
}
.cs_shop_layout[data-view=list] .cs_product_style_1 .cs_product_specs {
  display: flex;
  gap: 6px 20px;
  align-items: center;
  flex-wrap: wrap;
  margin-bottom: 12px;
}
.cs_shop_layout[data-view=list] .cs_product_style_1 .cs_product_rating_row {
  margin-bottom: 20px;
}
.cs_shop_layout[data-view=list] .cs_product_style_1 .cs_product_reviews {
  display: inline-block;
}
.cs_shop_layout[data-view=list] .cs_product_style_1 .cs_product_price {
  margin-bottom: 24px;
}
.cs_shop_layout[data-view=list] .cs_product_style_1 .cs_product_btns {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: auto;
}
.cs_shop_layout[data-view=list] .cs_product_style_1 .cs_btn_style_1 {
  padding: 9px 24px;
}
.cs_shop_layout[data-view=list] .cs_product_style_1 .cs_btn_outline {
  color: var(--primary-color);
  background-color: transparent;
  border: 1px solid var(--primary-color);
}
.cs_shop_layout[data-view=list] .cs_product_style_1 .cs_btn_outline:hover {
  color: var(--white-color);
  background-color: var(--primary-color);
}
.cs_shop_layout[data-view=list] .cs_product_style_1:hover .cs_product_thumb .cs_product_img {
  transform: scale(1.03);
}
@media (max-width: 767px) {
  .cs_shop_layout[data-view=list] .cs_product_style_1 {
    padding: 24px 15px;
  }
}
@media (max-width: 575px) {
  .cs_shop_layout[data-view=list] .cs_product_grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
  }
  .cs_shop_layout[data-view=list] .cs_product_style_1 {
    flex-direction: column;
    gap: 16px;
    padding: 15px 15px 24px;
  }
  .cs_shop_layout[data-view=list] .cs_product_style_1 .cs_product_thumb {
    width: 100%;
  }
  .cs_shop_layout[data-view=list] .cs_product_style_1 .cs_product_specs {
    margin-bottom: 8px;
  }
  .cs_shop_layout[data-view=list] .cs_product_style_1 .cs_product_rating_row {
    margin-bottom: 10px;
  }
  .cs_shop_layout[data-view=list] .cs_product_style_1 .cs_product_price {
    margin-bottom: 20px;
  }
  .cs_shop_layout[data-view=list] .cs_product_style_1 .cs_product_btns {
    width: 100%;
    flex-direction: column;
    align-items: stretch;
  }
  .cs_shop_layout[data-view=list] .cs_product_style_1 .cs_btn_style_1 {
    width: 100%;
  }
}

/*=====================================================
   Responsive — only the column count
=======================================================*/
@media (max-width: 1399px) {
  .cs_shop_layout[data-view="6"] {
    --cols: 5;
  }
}
@media (max-width: 1199px) {
  .cs_shop_layout[data-view="5"],
  .cs_shop_layout[data-view="6"] {
    --cols: 4;
  }
}
@media (max-width: 991px) {
  .cs_shop_layout {
    grid-template-columns: minmax(0, 1fr);
  }
  .cs_product_grid {
    gap: 24px 16px;
  }
  .cs_shop_layout[data-view] {
    --cols: 3;
  }
  .cs_shop_sidebar {
    position: static;
  }
}
@media (max-width: 767px) {
  .cs_shop_layout[data-view] {
    --cols: 3;
  }
}
@media (max-width: 575px) {
  .cs_shop_layout[data-view] {
    --cols: 3;
  }
}
@media (max-width: 420px) {
  .cs_shop_layout[data-view] {
    --cols: 1;
  }
}
/*=====================================================
   Shop page — section, toolbar, sale price
=====================================================*/
.cs_shop_section .cs_loader_icon {
  margin-top: 40px;
}
.cs_shop_section .cs_loader_icon img {
  animation: circularRotation 3s linear infinite;
}
@media (max-width: 767px) {
  .cs_shop_section {
    padding: 50px 0;
  }
}

.cs_shop_toolbar {
  flex-wrap: wrap;
  gap: 16px 24px;
  margin-bottom: 40px;
}
.cs_shop_toolbar .cs_filter_toggler {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 0;
  border: 0;
  outline: 0;
  color: var(--primary-color);
  background-color: var(--white-color);
  transition: all 0.3s ease;
}
.cs_shop_toolbar .cs_filter_toggler:hover {
  color: var(--accent-color);
}
.cs_shop_toolbar .cs_shop_toolbar_left {
  display: flex;
  gap: 27px;
  align-items: center;
  max-width: 424px;
}
.cs_shop_toolbar .cs_shop_toolbar_right {
  display: flex;
  gap: 20px;
  flex-wrap: wrap;
  align-items: center;
}
@media (max-width: 991px) {
  .cs_shop_toolbar .cs_shop_toolbar_right {
    width: 100%;
    justify-content: space-between;
  }
  .cs_shop_toolbar .cs_shop_toolbar_right .cs_shop_sort {
    min-width: 220px;
  }
}

/*=====================================================
   Product Filter Sidebar
=======================================================*/
.cs_product_filter_sidebar {
  position: fixed;
  top: 0;
  left: 0;
  width: min(100%, 386px);
  height: 100%;
  transform: translateX(-100%);
  visibility: hidden;
  transition: transform 0.3s cubic-bezier(0.4, 0.5, 0.65, 1), visibility 0.3s;
}
.cs_product_filter_sidebar .cs_filter_sidebar_in {
  display: flex;
  flex-direction: column;
  height: 100%;
}
.cs_product_filter_sidebar .cs_filter_sidebar_head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 24px 32px;
  border-bottom: 1px solid var(--border-color);
}
.cs_product_filter_sidebar .cs_filter_close {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  border: none;
  z-index: 22;
  font-size: 20px;
  color: var(--primary-color);
  background-color: var(--white-color);
  transition: color 0.3s ease;
}
.cs_product_filter_sidebar .cs_filter_close:hover {
  color: var(--error-color);
}
.cs_product_filter_sidebar .cs_filter_sidebar_body {
  flex: 1;
  overflow-y: auto;
  padding: 0 32px 32px;
  -ms-overflow-style: none;
  scrollbar-width: none;
}
.cs_product_filter_sidebar .cs_filter_sidebar_body::-webkit-scrollbar {
  display: none;
}
.cs_product_filter_sidebar .cs_filter_group {
  padding: 32px 0;
  border-bottom: 1px solid var(--border-color);
}
.cs_product_filter_sidebar .cs_filter_group:last-child {
  border-bottom: none;
  padding-bottom: 0;
}
.cs_product_filter_sidebar .cs_filter_title {
  margin-bottom: 16px;
}
.cs_product_filter_sidebar .cs_filter_list {
  display: flex;
  flex-direction: column;
  gap: 5px;
}
.cs_product_filter_sidebar .cs_checkbox {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  margin: 0;
  cursor: pointer;
  -webkit-user-select: none;
     -moz-user-select: none;
          user-select: none;
}
.cs_product_filter_sidebar .cs_checkbox input {
  position: absolute;
  width: 1px;
  height: 1px;
  opacity: 0;
  pointer-events: none;
}
.cs_product_filter_sidebar .cs_checkbox .cs_checkbox_box {
  position: relative;
  flex-shrink: 0;
  width: 16px;
  height: 16px;
  background-color: var(--gray-color);
  border: 1px solid var(--gray4-color);
  transition: all 0.3s ease-in-out;
}
.cs_product_filter_sidebar .cs_checkbox .cs_checkbox_box::after {
  content: "";
  position: absolute;
  top: 2px;
  left: 5px;
  width: 4px;
  height: 8px;
  opacity: 0;
  border: solid var(--white-color);
  border-width: 0 2px 2px 0;
  transform: rotate(45deg);
  transition: opacity 0.2s ease-in-out;
}
.cs_product_filter_sidebar .cs_checkbox .cs_checkbox_label {
  transition: color 0.3s ease;
}
.cs_product_filter_sidebar .cs_checkbox input:checked + .cs_checkbox_box {
  background-color: var(--accent-color);
  border-color: var(--accent-color);
}
.cs_product_filter_sidebar .cs_checkbox input:checked + .cs_checkbox_box::after {
  opacity: 1;
}
.cs_product_filter_sidebar .cs_checkbox input:focus-visible + .cs_checkbox_box {
  outline: 2px solid var(--accent-color);
  outline-offset: 2px;
}
.cs_product_filter_sidebar .cs_checkbox:hover .cs_checkbox_label {
  color: var(--primary-color);
}
.cs_product_filter_sidebar .cs_price_slider {
  touch-action: none;
  -webkit-user-select: none;
     -moz-user-select: none;
          user-select: none;
}
.cs_product_filter_sidebar .cs_price_slider .cs_filter_title {
  margin-bottom: 27px;
}
.cs_product_filter_sidebar .cs_price_slider .cs_price_slider_track {
  position: relative;
  height: 4px;
  cursor: pointer;
  margin-bottom: 27px;
  background-color: var(--gray3-color);
}
.cs_product_filter_sidebar .cs_price_slider .cs_price_slider_range {
  position: absolute;
  inset: 0;
  background-color: var(--gray4-color);
}
.cs_product_filter_sidebar .cs_price_slider .cs_price_slider_handle {
  position: absolute;
  top: 50%;
  width: 10px;
  height: 10px;
  background-color: var(--primary-color);
  transform: translate(-50%, -50%);
  cursor: grab;
  transition: box-shadow 0.2s ease;
}
.cs_product_filter_sidebar .cs_price_slider .cs_price_slider_handle.cs_dragging {
  cursor: grabbing;
  box-shadow: 0 0 0 2px rgba(0, 0, 0, 0.12);
}
.cs_product_filter_sidebar .cs_price_slider .cs_price_slider_foot {
  display: flex;
  gap: 16px;
  align-items: center;
  justify-content: space-between;
  margin-top: 24px;
}
.cs_product_filter_sidebar .cs_rating {
  width: 88px;
}
.cs_product_filter_sidebar.cs_type_1 {
  width: min(100%, 312px);
  position: relative;
  visibility: visible;
  transform: translateX(0);
}
.cs_product_filter_sidebar.cs_type_1 .cs_filter_group:first-child {
  padding-top: 0;
}
.cs_product_filter_sidebar.cs_type_1 .cs_filter_close {
  position: absolute;
  top: 25px;
  right: 15px;
  display: none;
}
.cs_product_filter_sidebar.active {
  transform: translateX(0);
  visibility: visible;
  z-index: 1002;
}
.cs_product_filter_sidebar.active.cs_type_1 {
  transform: translateX(0);
}
@media (max-width: 991px) {
  .cs_product_filter_sidebar.cs_type_1 {
    position: fixed;
    padding: 30px 15px;
    background-color: var(--white-color);
    transform: translateX(-120%);
  }
  .cs_product_filter_sidebar.cs_type_1 .cs_filter_close {
    display: block;
  }
}

.cs_filter_overlay {
  position: fixed;
  inset: 0;
  z-index: 1001;
  background-color: rgba(32, 32, 32, 0.5);
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.4s ease, visibility 0.4s ease;
}
.cs_filter_overlay.active {
  opacity: 1;
  visibility: visible;
}

/*=======================================================
 Filterable Products
=========================================================*/
.cs_product_filter_section .cs_product_filter_in {
  display: flex;
  align-items: stretch;
  gap: 48px;
}
.cs_product_filter_section .cs_product_filter_aside {
  flex: 0 0 350px;
  display: flex;
  flex-direction: column;
}
.cs_product_filter_section .cs_section_heading_style_1 {
  margin-bottom: 24px;
}
.cs_product_filter_section .cs_product_filter_nav {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
}
.cs_product_filter_section .cs_product_filter_nav.cs_type_1 {
  flex-direction: column;
  gap: 14px;
  padding-left: 50px;
}
.cs_product_filter_section .cs_product_filter_nav.cs_type_1 .cs_filter_btn {
  padding: 0;
  border: 0;
  color: var(--primary-color);
  background-color: transparent;
  transition: all 0.3s ease;
}
.cs_product_filter_section .cs_product_filter_nav.cs_type_1 .cs_filter_btn::before {
  content: "";
  position: absolute;
  top: 50%;
  left: 0;
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background-color: var(--accent-color);
  transform: translateY(-50%);
  opacity: 0;
  transition: opacity 0.3s ease;
}
.cs_product_filter_section .cs_product_filter_nav.cs_type_1 .cs_filter_btn:hover, .cs_product_filter_section .cs_product_filter_nav.cs_type_1 .cs_filter_btn.active {
  color: var(--accent-color);
}
.cs_product_filter_section .cs_product_filter_nav.cs_type_1 .cs_filter_btn.active {
  padding: 0 0 0 14px;
}
.cs_product_filter_section .cs_product_filter_nav.cs_type_1 .cs_filter_btn.active::before {
  opacity: 1;
}
.cs_product_filter_section .cs_filter_btn {
  position: relative;
  width: 100%;
  text-align: left;
  padding: 6px 12px;
  background: transparent;
  color: var(--primary-color);
  border-radius: 50px;
  border: 1px solid var(--gray4-color);
  transition: all 0.3s ease;
}
.cs_product_filter_section .cs_filter_btn:hover, .cs_product_filter_section .cs_filter_btn.active {
  color: var(--white-color);
  background-color: var(--accent-color);
}
.cs_product_filter_section .cs_product_filter_foot {
  margin-top: auto;
  padding-top: 36px;
  display: flex;
  flex-direction: column;
  gap: 24px;
  align-items: flex-start;
}
.cs_product_filter_section .cs_product_filter_slider_wrap {
  flex: 1;
  min-width: 0;
}
.cs_product_filter_section .cs_product_filter_slider {
  width: 100%;
}
.cs_product_filter_section .cs_product_filter_slider .swiper-slide {
  height: auto;
}
.cs_product_filter_section.cs_type_1 .cs_product_filter_in {
  gap: 112px;
}
.cs_product_filter_section.cs_type_1 .cs_product_filter_aside {
  flex: 0 0 200px;
}
.cs_product_filter_section.cs_type_1 .cs_product_filter_nav {
  flex-direction: column;
  gap: 14px;
  padding-left: 50px;
}
.cs_product_filter_section.cs_type_1 .cs_product_filter_nav .cs_filter_btn {
  padding: 0;
  border: 0;
  color: var(--primary-color);
  background-color: transparent;
  transition: all 0.3s ease;
}
.cs_product_filter_section.cs_type_1 .cs_product_filter_nav .cs_filter_btn::before {
  content: "";
  position: absolute;
  top: 50%;
  left: 0;
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background-color: var(--accent-color);
  transform: translateY(-50%);
  opacity: 0;
  transition: opacity 0.3s ease;
}
.cs_product_filter_section.cs_type_1 .cs_product_filter_nav .cs_filter_btn:hover, .cs_product_filter_section.cs_type_1 .cs_product_filter_nav .cs_filter_btn.active {
  color: var(--accent-color);
}
.cs_product_filter_section.cs_type_1 .cs_product_filter_nav .cs_filter_btn.active {
  padding: 0 0 0 14px;
}
.cs_product_filter_section.cs_type_1 .cs_product_filter_nav .cs_filter_btn.active::before {
  opacity: 1;
}
@media (max-width: 1199px) {
  .cs_product_filter_section .cs_product_filter_in {
    gap: 32px;
  }
}
@media (max-width: 991px) {
  .cs_product_filter_section .cs_product_filter_in {
    flex-direction: column;
    gap: 32px;
  }
  .cs_product_filter_section .cs_product_filter_aside {
    flex: 1;
  }
  .cs_product_filter_section .cs_product_filter_foot {
    margin-top: 0;
    padding-top: 36px;
  }
  .cs_product_filter_section.cs_type_1 .cs_product_filter_in {
    gap: 32px;
  }
  .cs_product_filter_section.cs_type_1 .cs_product_filter_aside {
    flex: 0;
  }
  .cs_product_filter_section.cs_type_1 .cs_product_filter_nav {
    flex-direction: row;
    flex-wrap: wrap;
    gap: 12px 30px;
    padding-left: 0;
  }
  .cs_product_filter_section.cs_type_1 .cs_product_filter_nav .cs_filter_btn::before {
    display: none;
  }
  .cs_product_filter_section.cs_type_1 .cs_product_filter_nav .cs_filter_btn.active {
    padding: 0;
  }
}

/*=======================================================
 Animations
=========================================================*/
@keyframes circularRotation {
  to {
    transform: rotate(360deg);
  }
}
/*========================================================
  19. Product Details
==========================================================*/
/*====================================================
   Group Products (main + thumbnail Swiper)
======================================================*/
.cs_product_gallery {
  width: 100%;
}
.cs_product_gallery .cs_product_gallery_main {
  position: relative;
  width: 100%;
  background-color: var(--gray-color);
  overflow: hidden;
}
.cs_product_gallery .cs_product_gallery_main .cs_gallery_arrow {
  width: 50px;
  height: 50px;
  padding: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 30px;
  color: var(--primary-color);
  background-color: var(--white-color);
  border: 1px solid var(--gray4-color);
  position: absolute;
  top: 50%;
  z-index: 2;
  transform: translateY(-50%);
  cursor: pointer;
}
.cs_product_gallery .cs_product_gallery_main .cs_gallery_arrow.cs_gallery_prev {
  left: -16px;
}
.cs_product_gallery .cs_product_gallery_main .cs_gallery_arrow.cs_gallery_next {
  right: -16px;
}
.cs_product_gallery .cs_product_gallery_main .cs_gallery_arrow:hover {
  color: var(--white-color);
  background-color: var(--accent-color);
}
.cs_product_gallery .cs_product_gallery_main .cs_gallery_arrow.swiper-button-disabled {
  opacity: 0.4;
  cursor: default;
}
.cs_product_gallery .cs_product_gallery_main .cs_lightbox_item {
  position: relative;
  inset: auto;
  display: block;
  cursor: zoom-in;
}
.cs_product_gallery .cs_product_gallery_main .cs_lightbox_item {
  width: 100%;
  height: 100%;
}
.cs_product_gallery .cs_product_gallery_main .cs_lightbox_item img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}
.cs_product_gallery .cs_thumbs_hidden {
  display: none;
}
.cs_product_gallery .cs_product_gallery_thumbs {
  margin-top: 24px;
  overflow: visible;
}
.cs_product_gallery .cs_product_gallery_thumbs .swiper-slide {
  height: 200px;
  cursor: pointer;
  overflow: hidden;
  background-color: var(--gray-color);
  opacity: 0;
  transition: opacity 0.3s ease;
}
.cs_product_gallery .cs_product_gallery_thumbs .swiper-slide img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}
.cs_product_gallery .cs_product_gallery_thumbs .swiper-slide.swiper-slide-visible {
  opacity: 1;
  transition: opacity 0.3s ease;
}
.cs_product_gallery .cs_product_gallery_thumbs .cs_thumbs_arrow {
  width: 50px;
  height: 50px;
  padding: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 30px;
  color: var(--primary-color);
  background-color: var(--white-color);
  border: 1px solid var(--gray4-color);
  position: absolute;
  top: 50%;
  z-index: 1;
  transform: translateY(-50%);
}
.cs_product_gallery .cs_product_gallery_thumbs .cs_thumbs_arrow.cs_thumbs_prev {
  right: calc(100% - 25px);
}
.cs_product_gallery .cs_product_gallery_thumbs .cs_thumbs_arrow.cs_thumbs_next {
  left: calc(100% - 25px);
}
.cs_product_gallery .cs_product_gallery_thumbs .cs_thumbs_arrow:hover {
  color: var(--white-color);
  background-color: var(--accent-color);
}
@media (max-width: 575px) {
  .cs_product_gallery .cs_product_gallery_thumbs .swiper-slide {
    height: 64px;
  }
}

.cs_gallery_thumbs_vertical {
  display: grid;
  gap: 24px;
  grid-template-columns: 112px 1fr;
}
.cs_gallery_thumbs_vertical .cs_product_gallery_main {
  order: 2;
  width: 100%;
  height: 100%;
  max-height: 582px;
}
.cs_gallery_thumbs_vertical .cs_product_gallery_thumbs {
  order: 1;
  margin-top: 0;
}
.cs_gallery_thumbs_vertical .cs_product_gallery_thumbs .swiper-slide {
  width: 112px;
  height: 135px !important;
  opacity: 0;
}

.cs_thumbs_grid_1 {
  display: grid;
  gap: 24px;
  grid-template-columns: repeat(2, 1fr);
}

.cs_thumbs_grid_2 {
  display: grid;
  gap: 24px;
  grid-template-columns: repeat(1, 1fr);
}

/*====================================================
   Group Products (opens in lightGallery)
======================================================*/
.cs_lightgallery {
  width: 100%;
  min-height: 610px;
  position: relative;
  background-color: var(--gray-color);
  overflow: hidden;
}
.cs_lightgallery .cs_lightbox_item {
  display: block;
  position: absolute;
  inset: 0;
  display: block;
  cursor: zoom-in;
}
.cs_lightgallery .cs_lightbox_item img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}
.cs_lightgallery .cs_product_gallery_zoom {
  position: absolute;
  top: 24px;
  right: 24px;
  z-index: 2;
  width: 50px;
  height: 50px;
  font-size: 24px;
  color: var(--primary-color);
  border: 1px solid var(--gray2-color);
  background-color: var(--white-color);
  transition: all 0.3s ease;
}
.cs_lightgallery .cs_product_gallery_slide:hover .cs_product_gallery_zoom {
  color: var(--white-color);
  border-color: var(--accent-color);
  background-color: var(--accent-color);
}
.cs_lightgallery {
  /* Thumbnail strip */
}
.cs_lightgallery .cs_product_gallery_thumbs {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 12px;
}
.cs_lightgallery .cs_product_gallery_thumb {
  width: 88px;
  height: 88px;
  flex: none;
  overflow: hidden;
  background-color: var(--gray-color);
  border: 1px solid var(--gray4-color);
  transition: border-color 0.3s ease;
}
.cs_lightgallery .cs_product_gallery_thumb img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}
.cs_lightgallery .cs_product_gallery_thumb:hover, .cs_lightgallery .cs_product_gallery_thumb.active {
  border-color: var(--accent-color);
}
@media (max-width: 575px) {
  .cs_lightgallery .cs_product_gallery_thumb {
    width: 64px;
    height: 64px;
  }
}

/* ====================================================
   Product Info (right column)
   ==================================================== */
.cs_product_info_main {
  padding-left: 112px;
}
.cs_product_info_main .cs_product_meta {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 6px;
}
.cs_product_info_main .cs_product_tag {
  color: var(--accent-color);
}
.cs_product_info_main .cs_product_stock {
  color: var(--success-color);
}
.cs_product_info_main .cs_product_stock.out {
  color: var(--error-color);
}
.cs_product_info_main .cs_product_name {
  margin-bottom: 12px;
}
.cs_product_info_main {
  /* Rating + reviews + scarcity */
}
.cs_product_info_main .cs_product_rating_row {
  display: flex;
  align-items: center;
  gap: 20px;
  margin-bottom: 12px;
}
.cs_product_info_main .cs_rating {
  width: 88px;
}
.cs_product_info_main .cs_product_reviews {
  margin-left: -7px;
}
.cs_product_info_main .cs_product_scarcity {
  position: relative;
  padding-left: 20px;
  color: var(--error-color);
}
.cs_product_info_main .cs_product_scarcity::before {
  content: "";
  position: absolute;
  left: 0;
  top: 50%;
  width: 1px;
  height: 16px;
  transform: translateY(-50%);
  background-color: var(--gray3-color);
}
.cs_product_info_main {
  /* Price */
}
.cs_product_info_main .cs_product_price_row {
  display: flex;
  align-items: baseline;
  gap: 5px;
  margin-bottom: 12px;
}
.cs_product_info_main .cs_product_price {
  margin: 0;
  color: var(--primary-color);
}
.cs_product_info_main .cs_product_price_old {
  color: var(--secondary-color);
  text-decoration: line-through;
}
.cs_product_info_main .cs_product_desc {
  margin-bottom: 24px;
}
.cs_product_info_main .cs_product_option_title {
  margin-bottom: 12px;
}
.cs_product_info_main .cs_product_swatches {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-bottom: 48px;
}
.cs_product_info_main .cs_product_swatch {
  padding: 9px 20px;
  background-color: var(--gray5-color);
  border: 1px solid var(--accent-color);
  border-radius: 100px;
  transition: all 0.3s ease;
}
.cs_product_info_main .cs_product_swatch:hover, .cs_product_info_main .cs_product_swatch.active {
  color: var(--primary-color);
  background-color: var(--gray4-color);
}
.cs_product_info_main {
  /* Group products selector */
}
.cs_product_info_main .cs_product_group {
  margin-bottom: 32px;
}
.cs_product_info_main .cs_product_group .cs_product_option_title {
  margin-bottom: 24px;
}
.cs_product_info_main .cs_product_group .cs_product_group_items {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  margin-bottom: 16px;
}
.cs_product_info_main .cs_product_group .cs_product_group_item {
  flex: 1;
  min-width: 90px;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  background-color: transparent;
  border: 0;
  cursor: pointer;
}
.cs_product_info_main .cs_product_group .cs_product_group_item .cs_product_group_thumb {
  width: 100px;
  height: 100px;
  margin-bottom: 6px;
  overflow: hidden;
  border-radius: 50%;
}
.cs_product_info_main .cs_product_group .cs_product_group_item .cs_product_group_thumb img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  transition: transform 0.25s cubic-bezier(0.45, 0.25, 0.55, 0.5);
}
.cs_product_info_main .cs_product_group .cs_product_group_item .cs_product_group_name {
  display: block;
  margin-bottom: 6px;
  transition: all 0.3s ease;
}
.cs_product_info_main .cs_product_group .cs_product_group_item:hover .cs_product_group_thumb img {
  transform: scale(1.03);
}
.cs_product_info_main .cs_product_group .cs_product_group_item:hover .cs_product_group_name {
  color: var(--accent-color);
}
.cs_product_info_main {
  /* Quantity + actions */
}
.cs_product_info_main .cs_product_buy {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 12px;
  margin-bottom: 24px;
}
.cs_product_info_main .cs_quantity {
  display: inline-flex;
  align-items: center;
  padding: 9px 12px;
  background-color: var(--white-color);
  border: 1px solid var(--gray4-color);
}
.cs_product_info_main .cs_quantity button {
  width: 38px;
  height: 100%;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  color: var(--primary-color);
}
.cs_product_info_main .cs_quantity button:hover {
  color: var(--accent-color);
}
.cs_product_info_main .cs_quantity .cs_quantity_input {
  min-width: 36px;
  text-align: center;
  color: var(--primary-color);
}
.cs_product_info_main .cs_btn_style_1 {
  padding: 9px 24px;
  color: var(--white-color);
  background-color: var(--primary-color);
  border: 1px solid var(--primary-color);
  transition: all 0.3s ease;
}
.cs_product_info_main .cs_btn_style_1:hover {
  border-color: var(--accent-color);
  background-color: var(--accent-color);
}
.cs_product_info_main .cs_btn_style_1.cs_product_btn_outline {
  color: var(--primary-color);
  background-color: transparent;
}
.cs_product_info_main .cs_btn_style_1.cs_product_btn_outline:hover {
  color: var(--white-color);
  border-color: var(--primary-color);
  background-color: var(--primary-color);
}
.cs_product_info_main {
  /* USP / feature list */
}
.cs_product_info_main .cs_product_features {
  display: flex;
  flex-direction: column;
  gap: 8px;
  margin: 0;
  list-style: none;
  padding: 0;
}
.cs_product_info_main .cs_product_features li {
  display: inline-block;
  position: relative;
  padding-left: 25px;
}
.cs_product_info_main .cs_product_features li img {
  width: 16px;
  position: absolute;
  left: 0;
  top: 4px;
  color: var(--success-color);
}
.cs_product_info_main .cs_product_accordions {
  margin-top: 64px;
}
.cs_product_info_main .cs_help_desk {
  padding-top: 24px;
  margin-top: 24px;
  border-top: 1px solid var(--border-color);
}
.cs_product_info_main .cs_help_desk .cs_phone_call:hover {
  color: var(--success-color);
}
.cs_product_info_main .cs_help_desk .cs_live_chat {
  color: var(--success-color);
}
.cs_product_info_main .cs_help_desk .cs_live_chat:hover {
  text-decoration: underline;
}
.cs_product_info_main.cs_type_1 .cs_product_swatches {
  margin-bottom: 32px;
}
.cs_product_info_main.cs_sticky {
  position: sticky;
  top: 140px;
}
@media (max-width: 575px) {
  .cs_product_info_main .cs_product_buy .cs_quantity {
    flex: 1 0 100%;
    justify-content: space-between;
  }
  .cs_product_info_main .cs_product_buy .cs_product_btn {
    flex: 1;
  }
}

/* ====================================================
   Tabs
   ==================================================== */
.cs_product_tabs {
  margin-top: 64px;
}
.cs_product_tabs .cs_tab_links {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 15px 48px;
  margin: 0 0 33px;
  list-style: none;
  border-bottom: 1px solid var(--gray3-color);
}
.cs_product_tabs .cs_tab_links a {
  position: relative;
  display: inline-block;
  padding-bottom: 12px;
  font-size: 18px;
  line-height: 1.44em;
  color: var(--primary-color);
}
.cs_product_tabs .cs_tab_links a::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: -1px;
  width: 100%;
  height: 2px;
  background-color: var(--accent-color);
  transform: scaleX(0);
  transition: transform 0.3s ease;
}
.cs_product_tabs .cs_tab_links li.active a,
.cs_product_tabs .cs_tab_links li a:hover {
  color: var(--accent-color);
}
.cs_product_tabs .cs_tab_links li.active a::after {
  transform: scaleX(1);
}
.cs_product_tabs .cs_tab_body {
  width: min(100%, 1096px);
  margin: 0 auto;
}
.cs_product_tabs .cs_tab {
  display: none;
}
.cs_product_tabs .cs_tab.active {
  display: block;
}
@media (max-width: 991px) {
  .cs_product_tabs {
    margin-top: 40px;
  }
  .cs_product_tabs .cs_tab_links {
    gap: 8px 24px;
  }
}

.cs_product_spec_grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 12px 48px;
  margin-bottom: 24px;
}
@media (max-width: 767px) {
  .cs_product_spec_grid {
    grid-template-columns: minmax(0, 1fr);
    gap: 7px;
  }
}

.cs_specifications_list,
.cs_shipping_list {
  display: flex;
  gap: 7px;
  flex-direction: column;
}
.cs_specifications_list + .cs_product_spec_note,
.cs_shipping_list + .cs_product_spec_note {
  margin-top: 12px;
}
.cs_specifications_list li,
.cs_shipping_list li {
  position: relative;
  padding-left: 26px;
}
.cs_specifications_list li span,
.cs_shipping_list li span {
  font-weight: 500;
  color: var(--primary-color);
}
.cs_specifications_list li img,
.cs_shipping_list li img {
  position: absolute;
  left: 0;
  top: 4px;
}

.cs_product_spec_list {
  display: flex;
  gap: 7px;
  flex-direction: column;
}
.cs_product_spec_list li span {
  font-weight: 500;
  color: var(--primary-color);
}

/* ====================================================
   Reviews tab
   ==================================================== */
.cs_review_summary {
  display: flex;
  gap: 48px;
  align-items: center;
  justify-content: space-between;
  padding: 48px 48px 40px;
  margin-bottom: 64px;
}
.cs_review_summary .cs_review_score {
  flex-shrink: 0;
  display: flex;
  align-items: center;
  flex-direction: column;
  text-align: center;
}
.cs_review_summary .cs_review_score .cs_review_score_value {
  display: block;
  margin-bottom: 24px;
}
.cs_review_summary .cs_review_score .cs_review_score_count {
  display: block;
  margin-top: 6px;
}
.cs_review_summary .cs_rating {
  width: 88px;
}
.cs_review_summary .cs_progress_bars {
  flex: 1;
  max-width: 725px;
  display: flex;
  gap: 6px;
  flex-direction: column;
}
.cs_review_summary .cs_progress_bars li {
  display: flex;
  align-items: center;
  gap: 24px;
}
.cs_review_summary .cs_progress_bars .cs_progress_label {
  flex-shrink: 0;
  width: 44px;
}
.cs_review_summary .cs_progress_bars .cs_progress {
  flex: 1;
  height: 10px;
  background-color: var(--white-color);
  overflow: hidden;
}
.cs_review_summary .cs_progress_bars .cs_progress_in {
  display: block;
  height: 100%;
  background-color: var(--accent-color);
}
.cs_review_summary .cs_progress_bars .cs_review_percentage {
  flex-shrink: 0;
  width: 38px;
  text-align: right;
}
@media (max-width: 767px) {
  .cs_review_summary {
    flex-direction: column;
    align-items: stretch;
    gap: 24px;
    padding: 24px;
  }
}

.cs_review_list {
  margin: 0 0 64px;
}
.cs_review_list .cs_review_item {
  display: flex;
  gap: 12px;
  padding: 32px 0 44px;
  border-bottom: 1px solid var(--border-color);
}
.cs_review_list .cs_review_item:first-child {
  padding-top: 0;
}
.cs_review_list .cs_review_item:last-child {
  border-bottom: 0;
  padding-bottom: 0;
}
.cs_review_list .cs_review_avatar {
  flex-shrink: 0;
  width: 75px;
  height: 75px;
  border-radius: 50%;
}
.cs_review_list .cs_review_avatar img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}
.cs_review_list .cs_review_body .cs_review_stars {
  margin-bottom: 8px;
}
.cs_review_list .cs_review_author {
  margin: 0 0 8px;
}
.cs_review_list .cs_review_meta {
  margin: 0 0 8px;
}

.cs_review_form_wrap .cs_review_form_title {
  margin-bottom: 24px;
}
.cs_review_form_wrap .cs_review_field {
  margin-bottom: 24px;
}
.cs_review_form_wrap .cs_review_field label {
  display: block;
  margin-bottom: 6px;
  color: var(--primary-color);
}
.cs_review_form_wrap .cs_review_field input[type=text],
.cs_review_form_wrap .cs_review_field textarea {
  outline: 0;
  width: 100%;
  padding: 14px 12px;
  background-color: var(--gray-color);
  border: 1px solid transparent;
  transition: border-color 0.3s ease;
}
.cs_review_form_wrap .cs_review_field input[type=text]:focus,
.cs_review_form_wrap .cs_review_field textarea:focus {
  border-color: var(--accent-color);
}
.cs_review_form_wrap .cs_review_field textarea {
  resize: none;
}
.cs_review_form_wrap .cs_btn_style_1 {
  margin-top: -12px;
}
.cs_review_form_wrap .cs_input_rating {
  display: inline-flex;
  font-size: 24px;
  cursor: pointer;
}

/*====================================================
   Related products
====================================================== */
.cs_related_products .cs_section_heading_style_1 {
  margin-bottom: 32px;
}

/*====================================================
   products Layouts
====================================================== */
.cs_quickview {
  position: fixed;
  inset: 0;
  z-index: 1300;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 24px;
  visibility: hidden;
  pointer-events: none;
}
.cs_quickview.active {
  visibility: visible;
  pointer-events: auto;
}
.cs_quickview.active .cs_quickview_overlay {
  opacity: 0.5;
}
.cs_quickview.active .cs_quickview_dialog {
  opacity: 1;
  transform: translateY(0);
}
.cs_quickview .cs_quickview_overlay {
  position: absolute;
  inset: 0;
  opacity: 0;
  cursor: zoom-out;
  background-color: var(--black-color);
  transition: opacity 0.3s ease;
}
.cs_quickview .cs_quickview_dialog {
  position: relative;
  z-index: 1;
  width: min(1180px, 100%);
  max-height: calc(100vh - 48px);
  overflow-y: auto;
  display: grid;
  grid-template-columns: minmax(0, 0.85fr) minmax(0, 1.15fr);
  border-radius: 8px;
  background-color: var(--white-color);
  opacity: 0;
  transform: translateY(24px);
  transition: all 0.35s cubic-bezier(0.4, 0.3, 0.5, 0.55);
}
.cs_quickview .cs_quickview_close {
  position: absolute;
  top: 14px;
  right: 14px;
  z-index: 3;
  width: 38px;
  height: 38px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 22px;
  line-height: 1;
  border: none;
  border-radius: 50%;
  color: var(--primary-color);
  background-color: var(--gray-color);
  transition: all 0.3s ease;
}
.cs_quickview .cs_quickview_close:hover {
  color: var(--white-color);
  background-color: var(--accent-color);
}
.cs_quickview .cs_quickview_media {
  position: relative;
  min-height: 100%;
  overflow: hidden;
  background-color: var(--gray-color);
}
.cs_quickview .cs_quickview_media img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}
.cs_quickview .cs_quickview_zoom {
  position: absolute;
  top: 24px;
  right: 24px;
  z-index: 2;
  width: 50px;
  height: 50px;
  font-size: 22px;
  color: var(--primary-color);
  border: 1px solid var(--gray2-color);
  background-color: var(--white-color);
  transition: all 0.3s ease;
}
.cs_quickview .cs_quickview_zoom:hover {
  color: var(--white-color);
  border-color: var(--accent-color);
  background-color: var(--accent-color);
}
.cs_quickview .cs_quickview_body {
  display: flex;
  flex-direction: column;
  padding: 40px;
}
.cs_quickview .cs_product_meta {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 6px;
}
.cs_quickview .cs_product_tag {
  color: var(--accent-color);
}
.cs_quickview .cs_product_stock {
  color: var(--success-color);
}
.cs_quickview .cs_product_stock.out {
  color: var(--error-color);
}
.cs_quickview .cs_quickview_title {
  margin-bottom: 12px;
  color: var(--primary-color);
}
.cs_quickview .cs_product_rating_row {
  display: flex;
  align-items: center;
  gap: 20px;
  margin-bottom: 12px;
}
.cs_quickview .cs_rating {
  width: 88px;
}
.cs_quickview .cs_quickview_rating_text {
  margin-left: -7px;
  color: var(--secondary-color);
}
.cs_quickview .cs_product_scarcity {
  position: relative;
  padding-left: 20px;
  color: var(--error-color);
}
.cs_quickview .cs_product_scarcity::before {
  content: "";
  position: absolute;
  left: 0;
  top: 50%;
  width: 1px;
  height: 16px;
  transform: translateY(-50%);
  background-color: var(--gray3-color);
}
.cs_quickview .cs_product_price_row {
  display: flex;
  align-items: baseline;
  gap: 8px;
  margin-bottom: 12px;
}
.cs_quickview .cs_quickview_price {
  margin: 0;
  color: var(--primary-color);
}
.cs_quickview .cs_quickview_price_old {
  color: var(--secondary-color);
  text-decoration: line-through;
}
.cs_quickview .cs_quickview_price_old:empty {
  display: none;
}
.cs_quickview .cs_quickview_desc {
  margin-bottom: 24px;
  color: var(--secondary-color);
}
.cs_quickview .cs_quickview_option {
  margin-bottom: 24px;
}
.cs_quickview .cs_product_option_title {
  margin-bottom: 12px;
  color: var(--primary-color);
}
.cs_quickview .cs_product_swatches {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}
.cs_quickview .cs_product_swatch {
  padding: 9px 17px;
  color: var(--primary-color);
  background-color: var(--gray5-color);
  border: 1px solid var(--accent-color);
  border-radius: 100px;
  transition: all 0.3s ease;
}
.cs_quickview .cs_product_swatch:hover, .cs_quickview .cs_product_swatch.active {
  color: var(--primary-color);
  background-color: var(--gray4-color);
}
.cs_quickview .cs_quickview_actions {
  width: min(100%, 500px);
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 12px;
  margin-bottom: 24px;
}
.cs_quickview .cs_quickview_buy_label,
.cs_quickview .cs_quickview_share_label {
  font-family: var(--primary-font);
  color: var(--primary-color);
}
.cs_quickview .cs_qty_stepper {
  display: inline-flex;
  align-items: center;
  justify-content: space-between;
  width: 112px;
  height: 43px;
  background-color: var(--white-color);
  border: 1px solid var(--gray4-color);
}
.cs_quickview .cs_qty_stepper .cs_qty_btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 36px;
  height: 100%;
  padding: 0;
  border: 0;
  background: transparent;
  color: var(--primary-color);
  cursor: pointer;
  transition: color 0.3s ease;
}
.cs_quickview .cs_qty_stepper .cs_qty_btn:hover {
  color: var(--accent-color);
}
.cs_quickview .cs_qty_stepper .cs_qty_input {
  width: 40px;
  height: 100%;
  border: 0;
  background: transparent;
  text-align: center;
  color: var(--primary-color);
}
.cs_quickview .cs_qty_stepper .cs_qty_input:focus {
  outline: none;
}
.cs_quickview .cs_product_btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 9px 24px;
  white-space: nowrap;
  color: var(--white-color);
  border-radius: 0;
  background-color: var(--primary-color);
  border: 1px solid var(--primary-color);
  transition: all 0.3s ease;
}
.cs_quickview .cs_product_btn:hover {
  border-color: var(--accent-color);
  background-color: var(--accent-color);
}
.cs_quickview .cs_quickview_buy_btn {
  color: var(--white-color);
  background-color: var(--accent-color);
  border-color: var(--accent-color);
}
.cs_quickview .cs_quickview_buy_btn:hover {
  color: var(--white-color);
  background-color: var(--primary-color);
  border-color: var(--primary-color);
}
.cs_quickview .cs_quickview_share {
  width: min(100%, 494px);
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 16px;
}
.cs_quickview .cs_quickview_social {
  gap: 10px;
}
.cs_quickview .cs_quickview_social a {
  background-color: var(--gray-color);
}
.cs_quickview .cs_quickview_social a:hover {
  color: var(--white-color);
  background-color: var(--accent-color);
}
.cs_quickview .cs_quickview_wishlist {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  margin-left: auto;
  padding: 0;
  white-space: nowrap;
  border: none;
  color: var(--primary-color);
  background-color: transparent;
  transition: color 0.3s ease;
}
.cs_quickview .cs_quickview_wishlist:hover, .cs_quickview .cs_quickview_wishlist.cs_active {
  color: var(--accent-color);
}
@media (max-width: 767px) {
  .cs_quickview .cs_quickview_dialog {
    grid-template-columns: 1fr;
  }
  .cs_quickview .cs_quickview_media {
    min-height: 280px;
    max-height: 360px;
  }
  .cs_quickview .cs_quickview_body {
    padding: 24px;
  }
}
@media (max-width: 575px) {
  .cs_quickview {
    padding: 12px;
  }
  .cs_quickview .cs_quickview_actions .cs_qty_stepper {
    flex: 1 0 100%;
  }
  .cs_quickview .cs_quickview_actions .cs_product_btn {
    flex: 1;
  }
  .cs_quickview .cs_quickview_share .cs_quickview_wishlist {
    margin-left: 0;
    flex: 1 0 100%;
  }
}

.cs_offer_modal {
  position: fixed;
  inset: 0;
  z-index: 1100;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 20px 12px;
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.4s ease, visibility 0.4s ease;
}
.cs_offer_modal .cs_offer_modal_overlay {
  position: absolute;
  inset: 0;
  background: rgba(32, 32, 32, 0.65);
  backdrop-filter: blur(2px);
  cursor: pointer;
}
.cs_offer_modal .cs_offer_modal_in {
  position: relative;
  z-index: 1;
  display: flex;
  width: 100%;
  max-width: 900px;
  background: var(--white-color);
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 25px 70px rgba(0, 0, 0, 0.35);
  transform: translateY(40px) scale(0.96);
  opacity: 0;
  transition: transform 0.5s cubic-bezier(0.16, 1, 0.3, 1) 0.1s, opacity 0.5s ease 0.1s;
}
.cs_offer_modal .cs_offer_modal_thumb {
  flex: 1 1 45%;
  min-height: 100%;
  background-position: center;
  background-size: cover;
  background-repeat: no-repeat;
}
.cs_offer_modal .cs_offer_modal_content {
  flex: 1 1 55%;
  padding: 50px 40px;
  text-align: center;
}
.cs_offer_modal .cs_offer_badge {
  display: inline-block;
  font-family: var(--secondary-font);
  font-size: 14px;
  letter-spacing: 1px;
  text-transform: uppercase;
  color: var(--accent-color);
  padding: 6px 16px;
  border: 1px solid var(--accent-color);
  border-radius: 50px;
  margin-bottom: 22px;
}
.cs_offer_modal .cs_offer_modal_content .cs_offer_discount {
  font-family: var(--primary-font);
  font-size: clamp(36px, 5vw, 64px);
  line-height: 1;
  color: var(--primary-color);
  margin: 0 0 20px;
}
.cs_offer_modal .cs_offer_modal_content .cs_offer_discount span {
  color: var(--accent-color);
}
.cs_offer_modal .cs_offer_modal_content .cs_offer_title {
  font-family: var(--primary-font);
  font-size: clamp(20px, 3vw, 28px);
  color: var(--primary-color);
  margin: 0 0 16px;
}
.cs_offer_modal .cs_offer_coupon {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-family: var(--secondary-font);
  font-size: 14px;
  color: var(--secondary-color);
  margin-bottom: 28px;
}
.cs_offer_modal .cs_offer_coupon b {
  font-size: 14px;
  letter-spacing: 2px;
  color: var(--primary-color);
  border: 1px dashed var(--gray2-color);
  border-radius: 5px;
  padding: 6px 14px;
  background: var(--gray-color);
}
.cs_offer_modal .cs_offer_modal_close {
  position: absolute;
  top: 16px;
  right: 16px;
  z-index: 2;
  width: 38px;
  height: 38px;
  display: flex;
  align-items: center;
  justify-content: center;
  border: none;
  border-radius: 50%;
  background: var(--white-color);
  color: var(--primary-color);
  font-size: 22px;
  line-height: 1;
  cursor: pointer;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
  transition: all 0.3s ease;
}
.cs_offer_modal .cs_offer_modal_close:hover {
  background: var(--accent-color);
  color: var(--white-color);
  transform: rotate(90deg);
}
.cs_offer_modal .cs_btn_style_1 {
  font-weight: 500;
  color: var(--primary-color);
  border: 1px solid var(--primary-color);
}
.cs_offer_modal .cs_btn_style_1:hover {
  color: var(--white-color);
  background-color: var(--primary-color);
}
.cs_offer_modal.active {
  opacity: 1;
  visibility: visible;
}
.cs_offer_modal.active .cs_offer_modal_in {
  transform: translateY(0) scale(1);
  opacity: 1;
}
@media (max-width: 767px) {
  .cs_offer_modal .cs_offer_modal_in {
    flex-direction: column;
    max-width: 400px;
    max-height: 90vh;
    overflow-y: auto;
  }
  .cs_offer_modal .cs_offer_modal_thumb {
    flex: none;
    min-height: 180px;
  }
  .cs_offer_modal .cs_offer_modal_content {
    padding: 24px 15px 30px;
  }
}

/*=====================================================
  21. Cart Page
======================================================*/
.cs_cart_section {
  padding: 62px 0 64px;
}
@media (max-width: 991px) {
  .cs_cart_section {
    padding: 50px 0 52px;
  }
}

/*================================================
  Cart table (real <table>)
=================================================*/
.cs_cart_table_wrap {
  width: 100%;
  overflow-x: auto;
  position: relative;
}

.cs_cart_table {
  width: 100%;
  min-width: 1040px;
  border-collapse: collapse;
  table-layout: fixed;
}
.cs_cart_table .cs_col_price,
.cs_cart_table .cs_col_qty,
.cs_cart_table .cs_col_subtotal {
  width: 224px;
}
.cs_cart_table .cs_sr_only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}
.cs_cart_table .cs_col_remove {
  width: 88px;
}
.cs_cart_table .cs_cart_row,
.cs_cart_table .cs_table_header {
  border-bottom: 1px solid var(--border-color);
}
.cs_cart_table thead th {
  padding: 0 0 12px;
  text-align: left;
  font-weight: 500;
  white-space: nowrap;
  border-bottom: 1px solid var(--border-color);
}
.cs_cart_table tbody td {
  padding: 24px 15px 24px 0;
  vertical-align: middle;
  color: var(--primary-color);
}
.cs_cart_table tbody td:last-child {
  padding-right: 0;
}
.cs_cart_table .cs_cart_product {
  display: flex;
  align-items: center;
}
.cs_cart_table .cs_cart_product .cs_cart_thumb {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  width: 112px;
  height: 127px;
  margin-right: 24px;
  background-color: var(--gray-color);
  overflow: hidden;
  vertical-align: middle;
}
.cs_cart_table .cs_cart_product .cs_cart_thumb img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}
.cs_cart_table .cs_cart_price,
.cs_cart_table .cs_cart_qty,
.cs_cart_table .cs_cart_subtotal {
  white-space: nowrap;
}
.cs_cart_table .cs_qty_stepper {
  display: inline-flex;
  align-items: center;
  justify-content: space-between;
  width: 112px;
  height: 43px;
  background-color: var(--white-color);
  border: 1px solid var(--gray4-color);
}
.cs_cart_table .cs_qty_stepper .cs_qty_btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 36px;
  height: 100%;
  padding: 0;
  border: 0;
  background: transparent;
  color: var(--primary-color);
  cursor: pointer;
  transition: color 0.3s ease;
}
.cs_cart_table .cs_qty_stepper .cs_qty_btn:hover {
  color: var(--accent-color);
}
.cs_cart_table .cs_qty_stepper .cs_qty_input {
  width: 40px;
  height: 100%;
  border: 0;
  background: transparent;
  text-align: center;
  color: var(--primary-color);
}
.cs_cart_table .cs_qty_stepper .cs_qty_input:focus {
  outline: none;
}
.cs_cart_table .cs_qty_stepper .cs_qty_input::-webkit-outer-spin-button, .cs_cart_table .cs_qty_stepper .cs_qty_input::-webkit-inner-spin-button {
  -webkit-appearance: none;
  margin: 0;
}
.cs_cart_table .cs_cart_remove {
  text-align: left;
}
.cs_cart_table .cs_cart_remove .cs_remove_btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0;
  border: 0;
  background: transparent;
  color: var(--error-color);
  cursor: pointer;
  transition: transform 0.3s cubic-bezier(0.455, 0.3, 0.515, 1.5);
}
.cs_cart_table .cs_cart_remove .cs_remove_btn:hover {
  transform: scale(1.1);
}

/*================================================
  Wishlist table (reuses the cart table)
=================================================*/
.cs_wishlist_table {
  min-width: 1100px;
}
.cs_wishlist_table .cs_col_stock {
  width: 200px;
}
.cs_wishlist_table .cs_col_action {
  width: 320px;
}
.cs_wishlist_table .cs_wishlist_stock .cs_stock_in {
  color: var(--success-color);
}
.cs_wishlist_table .cs_wishlist_stock .cs_stock_out {
  color: var(--error-color);
}
.cs_wishlist_table .cs_wishlist_action {
  white-space: nowrap;
}
.cs_wishlist_table .cs_wishlist_action .cs_btn_style_1 {
  vertical-align: middle;
}
.cs_wishlist_table .cs_wishlist_action .cs_remove_btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  margin-left: 80px;
  padding: 0;
  border: 0;
  background: transparent;
  color: var(--error-color);
  cursor: pointer;
  vertical-align: middle;
  transition: transform 0.3s cubic-bezier(0.455, 0.3, 0.515, 1.5);
}
.cs_wishlist_table .cs_wishlist_action .cs_remove_btn:hover {
  transform: scale(1.1);
}

/*================================================
 Cart actions (coupon + update)
==================================================*/
.cs_cart_actions {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  margin-top: 40px;
}
.cs_cart_actions .cs_coupon {
  flex: 1;
  display: flex;
  align-items: stretch;
  gap: 16px;
}
.cs_cart_actions .cs_coupon .cs_btn_style_1 {
  padding: 9px 24px;
  border: 1px solid var(--primary-color);
}
.cs_cart_actions .cs_coupon .cs_btn_style_1:hover {
  color: var(--white-color);
  background-color: var(--primary-color);
}
.cs_cart_actions .cs_coupon_input {
  width: min(100%, 424px);
  max-width: 100%;
  padding: 8px 16px 9px;
  outline: 0;
  background-color: var(--gray-color);
  border: 1px solid var(--border-color);
  color: var(--primary-color);
}
.cs_cart_actions .cs_coupon_input::-moz-placeholder {
  color: var(--gray2-color);
}
.cs_cart_actions .cs_coupon_input::placeholder {
  color: var(--gray2-color);
}
.cs_cart_actions .cs_coupon_input:focus {
  border-color: var(--accent-color);
}

/*==============================================
  Cart totals
================================================*/
.cs_cart_totals_wrap {
  display: flex;
  justify-content: flex-end;
  margin-top: 64px;
}
.cs_cart_totals_wrap .cs_cart_totals {
  width: 424px;
  max-width: 100%;
}
.cs_cart_totals_wrap .cs_cart_totals_title {
  margin-bottom: 9px;
  padding-bottom: 6px;
  border-bottom: 1px solid var(--border-color);
}
.cs_cart_totals_wrap .cs_cart_totals_row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 18px 0;
  border-bottom: 1px solid var(--border-color);
  color: var(--secondary-color);
}
.cs_cart_totals_wrap .cs_cart_totals_row.cs_cart_totals_grand {
  color: var(--primary-color);
}
.cs_cart_totals_wrap .cs_checkout_btn {
  margin-top: 24px;
}
.cs_cart_totals_wrap .cs_checkout_btn:hover {
  color: var(--white-color);
}
@media (max-width: 767px) {
  .cs_cart_totals_wrap {
    justify-content: stretch;
  }
  .cs_cart_totals_wrap .cs_cart_totals {
    width: 100%;
  }
}

/*================================================
  Empty state
================================================*/
.cs_cart_empty a {
  color: var(--accent-color);
}
.cs_cart_empty a:hover {
  text-decoration: underline;
}

.page-shell {
  width: min(100%, 1920px);
  margin: 0 auto;
}

/*=====================================================
  Checkout Page
======================================================*/
.cs_checkout_form .cs_checkout_info_wrap {
  width: min(100%, 760px);
}
.cs_checkout_form .cs_checkout_fields {
  display: grid;
  gap: 12px 24px;
  margin-top: 24px;
  grid-template-columns: repeat(2, 1fr);
}
.cs_checkout_form .cs_checkout_fields .cs_full {
  grid-column: 1/-1;
}
.cs_checkout_form label {
  display: block;
  margin-bottom: 6px;
  color: var(--primary-color);
}
.cs_checkout_form input,
.cs_checkout_form select {
  width: 100%;
  display: block;
  outline: 0;
  padding: 14px 16px;
  color: var(--primary-color);
  background-color: var(--gray-color);
  border: 1px solid transparent;
  transition: border-color 0.3s ease-in-out;
}
.cs_checkout_form input::-moz-placeholder, .cs_checkout_form select::-moz-placeholder {
  color: var(--gray2-color);
}
.cs_checkout_form input::placeholder,
.cs_checkout_form select::placeholder {
  color: var(--gray2-color);
}
.cs_checkout_form input:focus,
.cs_checkout_form select:focus {
  border-color: var(--accent-color);
}
.cs_checkout_form .nice-select {
  width: 100%;
  float: none;
  height: 55px;
  display: flex;
  align-items: center;
  font-size: 16px;
  line-height: 1.5em;
  padding: 0 40px 0 16px;
  border-radius: 0;
  color: var(--gray2-color);
  border: 1px solid transparent;
  background-color: var(--gray-color);
  transition: border-color 0.3s ease-in-out;
}
.cs_checkout_form .nice-select:hover {
  border-color: transparent;
}
.cs_checkout_form .nice-select.open, .cs_checkout_form .nice-select:active, .cs_checkout_form .nice-select:focus {
  border-color: var(--accent-color);
}
.cs_checkout_form .nice-select::after {
  width: 8px;
  height: 8px;
  right: 16px;
  margin-top: -6px;
  border-bottom: 2px solid var(--secondary-color);
  border-right: 2px solid var(--secondary-color);
}
.cs_checkout_form .nice-select.open::after {
  border-color: var(--accent-color);
}
.cs_checkout_form .nice-select .current {
  display: block;
  overflow: hidden;
  text-overflow: ellipsis;
  color: var(--primary-color);
}
.cs_checkout_form .nice-select .list {
  width: 100%;
  margin-top: 4px;
  border-radius: 0;
  border: 1px solid var(--gray-color);
}
.cs_checkout_form .nice-select .option {
  padding: 6px 12px;
  transition: background-color 0.2s ease-in-out, color 0.2s ease-in-out;
}
.cs_checkout_form .nice-select .option:hover, .cs_checkout_form .nice-select .option.focus, .cs_checkout_form .nice-select .option.selected.focus {
  background-color: var(--gray5-color);
  color: var(--primary-color);
}
.cs_checkout_form .nice-select .option.selected {
  font-weight: 400;
  color: var(--primary-color);
}
.cs_checkout_form .cs_btn_style_1 {
  margin-top: 12px;
}
.cs_checkout_form .cs_payment_info_wrap {
  margin-top: 64px;
}
.cs_checkout_form .cs_card_fields {
  margin-top: 12px;
}
.cs_checkout_form .cs_payment_methods {
  display: flex;
  gap: 12px;
  flex-direction: column;
  margin-top: 24px;
}
.cs_checkout_form .cs_payment_methods .cs_payment_method {
  margin: 0;
  cursor: pointer;
}
.cs_checkout_form .cs_payment_methods .cs_payment_method input {
  position: absolute;
  width: 1px;
  height: 1px;
  opacity: 0;
  pointer-events: none;
}
.cs_checkout_form .cs_payment_methods .cs_payment_method .cs_payment_method_in {
  display: flex;
  align-items: center;
  gap: 12px;
  height: 55px;
  padding: 0 16px;
  background-color: var(--gray-color);
  border: 1px solid transparent;
  transition: border-color 0.3s ease-in-out, background-color 0.3s ease-in-out;
}
.cs_checkout_form .cs_payment_methods .cs_payment_method .cs_payment_method_label {
  color: var(--gray2-color);
  transition: color 0.3s ease-in-out;
}
.cs_checkout_form .cs_payment_methods .cs_payment_method input:checked ~ .cs_payment_method_in {
  border-color: var(--accent-color);
  background-color: var(--gray5-color);
}
.cs_checkout_form .cs_payment_methods .cs_payment_method input:checked ~ .cs_payment_method_in .cs_payment_method_label {
  color: var(--primary-color);
}
@media (max-width: 991px) {
  .cs_checkout_form {
    width: 100%;
  }
}

/*============================================
  Order summary
==============================================*/
.cs_order_summary .cs_order_summary_title {
  margin-bottom: 12px;
  padding-bottom: 6px;
  border-bottom: 1px solid var(--border-color);
}
.cs_order_summary .cs_order_items {
  display: flex;
  gap: 12px;
  flex-direction: column;
}
.cs_order_summary .cs_order_item {
  display: flex;
  align-items: center;
  gap: 12px;
  padding-bottom: 12px;
  border-bottom: 1px solid var(--border-color);
}
.cs_order_summary .cs_order_item .cs_order_thumb {
  flex-shrink: 0;
  width: 66px;
  height: 75px;
  background-color: var(--gray-color);
}
.cs_order_summary .cs_order_item .cs_order_thumb img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}
.cs_order_summary .cs_order_item .cs_order_item_name {
  flex: 1;
  color: var(--primary-color);
}
.cs_order_summary .cs_order_item .cs_order_item_qty {
  flex-shrink: 0;
}
.cs_order_summary .cs_order_totals {
  margin-top: 12px;
}
.cs_order_summary .cs_order_totals li {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 12px 0;
}
.cs_order_summary .cs_order_totals li.cs_order_total {
  color: var(--primary-color);
  padding-bottom: 0;
  border-top: 1px solid var(--border-color);
}
.cs_order_summary .cs_order_note {
  margin-top: 18px;
  padding: 10px;
  border-radius: 100px;
  background-color: var(--gray5-color);
  border: 1px solid var(--accent-color);
}

/*=================================================
  Toast notifications
===================================================*/
.cs_toast_container {
  position: fixed;
  top: 24px;
  right: 24px;
  z-index: 9999;
  display: flex;
  flex-direction: column;
  gap: 12px;
  max-width: calc(100% - 48px);
}
@media (max-width: 575px) {
  .cs_toast_container {
    top: 16px;
    right: 16px;
    left: 16px;
    max-width: none;
  }
}

.cs_toast {
  display: flex;
  align-items: center;
  gap: 10px;
  min-width: 280px;
  max-width: 360px;
  padding: 14px 16px;
  border-radius: 10px;
  background-color: var(--white-color);
  color: var(--primary-color);
  font-family: var(--secondary-font);
  font-size: 15px;
  line-height: 1.4;
  box-shadow: 0 12px 30px rgba(32, 32, 32, 0.16);
  border-left: 4px solid var(--accent-color);
  opacity: 0;
  transform: translateX(120%);
  transition: opacity 0.3s ease, transform 0.3s ease;
}
@media (max-width: 575px) {
  .cs_toast {
    min-width: 0;
    max-width: none;
    width: 100%;
  }
}
.cs_toast.cs_toast_show {
  opacity: 1;
  transform: translateX(0);
}
.cs_toast .cs_toast_icon {
  display: inline-flex;
  font-size: 22px;
  line-height: 1;
}
.cs_toast .cs_toast_msg {
  flex: 1;
}
.cs_toast .cs_toast_close {
  flex-shrink: 0;
  display: inline-flex;
  padding: 0;
  border: 0;
  background: transparent;
  color: var(--gray2-color);
  font-size: 18px;
  line-height: 1;
  cursor: pointer;
  transition: color 0.2s ease;
}
.cs_toast .cs_toast_close:hover {
  color: var(--primary-color);
}
.cs_toast.cs_toast_success {
  border-left-color: var(--success-color);
}
.cs_toast.cs_toast_success .cs_toast_icon {
  color: var(--success-color);
}
.cs_toast.cs_toast_info {
  border-left-color: var(--accent-color);
}
.cs_toast.cs_toast_info .cs_toast_icon {
  color: var(--accent-color);
}

/*=====================================================
  Cart Drawer (mini cart)
=======================================================*/
.cs_no_scroll {
  overflow: hidden;
}

.cs_cart_drawer {
  position: fixed;
  inset: 0;
  z-index: 1200;
  visibility: hidden;
  cursor: zoom-out;
  pointer-events: none;
}
.cs_cart_drawer.active {
  visibility: visible;
  pointer-events: auto;
}
.cs_cart_drawer.active .cs_cart_drawer_overlay {
  opacity: 0.45;
}
.cs_cart_drawer.active .cs_cart_drawer_panel {
  opacity: 1;
  transform: translateX(0);
}
.cs_cart_drawer .cs_cart_drawer_overlay {
  position: absolute;
  inset: 0;
  opacity: 0;
  background-color: var(--black-color);
  transition: opacity 0.3s ease;
}
.cs_cart_drawer .cs_cart_drawer_panel {
  width: min(500px, 100%);
  height: 100%;
  padding: 34px 24px;
  position: absolute;
  top: 0;
  right: 0;
  display: flex;
  flex-direction: column;
  overflow: hidden;
  background-color: var(--white-color);
  transform: translateX(100%);
  transition: all 0.3s cubic-bezier(0.4, 0.3, 0.5, 0.55);
}
.cs_cart_drawer .cs_continue_shopping_btn {
  color: var(--accent-color);
}
.cs_cart_drawer .cs_continue_shopping_btn:hover {
  text-decoration: underline;
}
.cs_cart_drawer .cs_cart_drawer_head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-shrink: 0;
  margin-bottom: 34px;
}
.cs_cart_drawer .cs_cart_drawer_title {
  font-family: var(--secondary-font);
}
.cs_cart_drawer .cs_cart_drawer_close {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  width: 50px;
  height: 50px;
  border-radius: 50%;
  font-size: 16px;
  line-height: 1;
  cursor: pointer;
  color: var(--primary-color);
  background: transparent;
  border: 1px solid var(--gray2-color);
  transition: color 0.3s ease, border-color 0.3s ease, transform 0.3s ease;
}
.cs_cart_drawer .cs_cart_drawer_close:hover {
  color: var(--error-color);
  border-color: var(--error-color);
  transform: rotate(90deg);
}
.cs_cart_drawer .cs_cart_drawer_body {
  overflow-y: auto;
  margin-bottom: 12px;
  scrollbar-width: none;
  -ms-overflow-style: none;
}
.cs_cart_drawer .cs_cart_drawer_body::-webkit-scrollbar {
  display: none;
}
.cs_cart_drawer .cs_cart_drawer_list {
  display: flex;
  gap: 24px;
  flex-direction: column;
}
.cs_cart_drawer .cs_cart_drawer_item {
  display: flex;
  align-items: center;
  gap: 12px;
  padding-bottom: 24px;
  border-bottom: 1px solid var(--border-color);
}
.cs_cart_drawer .cs_cart_drawer_thumb {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  width: 66px;
  height: 75px;
  overflow: hidden;
  background-color: var(--gray-color);
}
.cs_cart_drawer .cs_cart_drawer_thumb img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}
.cs_cart_drawer .cs_cart_drawer_item_main {
  display: flex;
  flex-direction: column;
  flex: 1;
  min-width: 0;
}
.cs_cart_drawer .cs_cart_drawer_item_title {
  font-family: var(--secondary-font);
}
.cs_cart_drawer .cs_cart_drawer_item_title a:hover {
  color: var(--accent-color);
}
.cs_cart_drawer .cs_cart_drawer_item_price_row {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-top: 6px;
}
.cs_cart_drawer .cs_qty_stepper {
  flex-shrink: 0;
  width: 92px;
  height: 43px;
  display: inline-flex;
  align-items: center;
  justify-content: space-between;
  background-color: var(--white-color);
  border: 1px solid var(--gray4-color);
}
.cs_cart_drawer .cs_qty_stepper .cs_qty_btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 30px;
  height: 100%;
  padding: 0;
  border: 0;
  background: transparent;
  color: var(--primary-color);
  cursor: pointer;
  transition: color 0.3s ease;
}
.cs_cart_drawer .cs_qty_stepper .cs_qty_btn:hover {
  color: var(--accent-color);
}
.cs_cart_drawer .cs_qty_stepper .cs_qty_input {
  width: 32px;
  height: 100%;
  border: 0;
  background: transparent;
  text-align: center;
  color: var(--primary-color);
  font-family: var(--secondary-font);
}
.cs_cart_drawer .cs_qty_stepper .cs_qty_input:focus {
  outline: none;
}
.cs_cart_drawer .cs_cart_drawer_remove {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  padding: 0;
  border: 0;
  background: transparent;
  color: var(--error-color);
  font-size: 16px;
  line-height: 1;
  cursor: pointer;
  transition: transform 0.3s ease;
}
.cs_cart_drawer .cs_cart_drawer_remove:hover {
  transform: scale(1.1);
}
.cs_cart_drawer .cs_cart_drawer_empty {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 14px;
  padding: 80px 20px;
  text-align: center;
  color: var(--secondary-color);
}
.cs_cart_drawer .cs_cart_drawer_empty[hidden] {
  display: none;
}
.cs_cart_drawer .cs_cart_drawer_empty i {
  font-size: 56px;
  color: var(--gray2-color);
}
.cs_cart_drawer .cs_cart_drawer_foot {
  flex-shrink: 0;
}
.cs_cart_drawer .cs_cart_drawer_subtotal {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 33px;
  color: var(--primary-color);
}
.cs_cart_drawer .cs_cart_drawer_actions {
  display: flex;
  gap: 14px;
}
.cs_cart_drawer .cs_cart_drawer_btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  flex: 1;
  padding: 13px 20px;
  border: 1px solid var(--primary-color);
  background-color: var(--primary-color);
  color: var(--white-color);
  font-weight: 500;
  text-align: center;
  transition: background-color 0.3s ease, color 0.3s ease, border-color 0.3s ease;
}
.cs_cart_drawer .cs_cart_drawer_btn:hover {
  background-color: var(--accent-color);
  border-color: var(--accent-color);
  color: var(--white-color);
}
.cs_cart_drawer .cs_cart_drawer_btn.cs_cart_drawer_btn_outline {
  background-color: transparent;
  color: var(--primary-color);
}
.cs_cart_drawer .cs_cart_drawer_btn.cs_cart_drawer_btn_outline:hover {
  background-color: var(--primary-color);
  border-color: var(--primary-color);
  color: var(--white-color);
}
@media (max-width: 575px) {
  .cs_cart_drawer .cs_cart_drawer_head {
    padding: 20px 18px 16px;
  }
  .cs_cart_drawer .cs_cart_drawer_foot {
    padding: 18px 18px 22px;
  }
}

/*========================================================
  22. Utility
==========================================================*/
.cs_terms_wrap .cs_terms_updated {
  margin-bottom: 24px;
}
.cs_terms_wrap .cs_article_wrap {
  display: flex;
  gap: 32px;
  flex-direction: column;
}
.cs_terms_wrap .cs_terms_article .cs_terms_title {
  margin-bottom: 24px;
}
.cs_terms_wrap .cs_terms_article p {
  margin-bottom: 12px;
}
.cs_terms_wrap .cs_terms_article p:last-child {
  margin-bottom: 0;
}
.cs_terms_wrap .cs_terms_list {
  margin: 0;
  padding-left: 24px;
  list-style: disc;
  display: flex;
  gap: 7px;
  flex-direction: column;
}
.cs_terms_wrap .cs_terms_list strong {
  color: var(--primary-color);
  font-weight: 500;
}
.cs_terms_wrap .cs_text_link {
  color: var(--accent-color);
}
.cs_terms_wrap .cs_text_link:hover {
  text-decoration: underline;
}
.cs_terms_wrap .cs_privacy_cards {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  margin-top: 24px;
}
@media (max-width: 767px) {
  .cs_terms_wrap .cs_privacy_cards {
    grid-template-columns: 1fr;
  }
}
.cs_terms_wrap .cs_privacy_card {
  background-color: var(--gray-color);
  padding: 24px;
}
.cs_terms_wrap .cs_privacy_card .cs_privacy_card_title {
  margin-bottom: 12px;
}
.cs_terms_wrap .cs_privacy_card p {
  margin-bottom: 0;
}
.cs_terms_wrap .cs_terms_contact {
  display: flex;
  gap: 12px;
  flex-direction: column;
}
.cs_terms_wrap .cs_terms_contact li span {
  font-weight: 500;
  color: var(--primary-color);
}
.cs_terms_wrap .cs_terms_contact li a:hover {
  color: var(--accent-color);
}
@media (max-width: 991px) {
  .cs_terms_wrap .cs_terms_updated {
    margin-bottom: 20px;
  }
}

/*========================================================
  Error 404
==========================================================*/
.cs_error_section {
  padding: 120px 0;
}
.cs_error_section .cs_error_404 {
  display: flex;
  gap: 10px;
  margin-bottom: 24px;
}
.cs_error_section .cs_error_404 .cs_error_digit {
  font-size: clamp(280px, 20vw, 240px);
  line-height: 0.35em;
  color: var(--primary-color);
}
.cs_error_section .cs_error_404 .cs_error_thumb {
  flex-shrink: 0;
  width: clamp(120px, 17vw, 216px);
  height: clamp(120px, 17vw, 216px);
  border-radius: 50%;
  overflow: hidden;
}
.cs_error_section .cs_error_404 .cs_error_thumb img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}
.cs_error_section .cs_error_title {
  margin-bottom: 12px;
}
.cs_error_section .cs_error_subtitle {
  margin-bottom: 32px;
}
@media (max-width: 991px) {
  .cs_error_section {
    padding: 50px 0;
  }
  .cs_error_section .cs_error_subtitle {
    margin-bottom: 24px;
  }
}

/*========================================================
  Coming Soon
==========================================================*/
.cs_coming_soon {
  height: 100vh;
  max-height: 1080px;
  padding: 150px 0;
  background-color: var(--gray5-color);
  background-position: center right;
}
.cs_coming_soon .container-fluid {
  height: 100%;
  padding: 0 6%;
}
.cs_coming_soon .cs_coming_soon_in {
  max-width: 648px;
  height: 100%;
  text-align: center;
  display: flex;
  flex-direction: column;
}
.cs_coming_soon .cs_coming_soon_brand {
  margin-bottom: 22px;
}
.cs_coming_soon .cs_coming_soon_logo {
  display: inline-block;
  max-width: 100px;
}
.cs_coming_soon .cs_coming_soon_title {
  margin-bottom: 12px;
}
.cs_coming_soon .cs_coming_soon_subtitle {
  margin-bottom: 32px;
}
.cs_coming_soon .cs_newsletter_form {
  max-width: 648px;
  position: relative;
  margin-bottom: 32px;
}
.cs_coming_soon .cs_newsletter_form input {
  display: block;
  width: 100%;
  border: 0;
  outline: 0;
  padding: 15px 15px;
  border: 1px solid transparent;
  background-color: var(--white-color);
}
.cs_coming_soon .cs_newsletter_form input:focus {
  border-color: var(--accent-color);
}
.cs_coming_soon .cs_newsletter_form .cs_btn_style_1 {
  position: absolute;
  top: 6px;
  right: 6px;
  bottom: 6px;
}
.cs_coming_soon .cs_coming_soon_footer {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 16px 32px;
  margin-top: auto;
}
.cs_coming_soon .cs_coming_soon_social {
  display: flex;
  gap: 12px;
  align-items: center;
}
.cs_coming_soon .cs_social_btns_style_1 {
  gap: 6px;
}
.cs_coming_soon .cs_social_btns_style_1 a {
  overflow: hidden;
  color: var(--primary-color);
  background-color: var(--white-color);
}
.cs_coming_soon .cs_social_btns_style_1 a i {
  text-shadow: -30px 0px 0px currentColor;
}
.cs_coming_soon .cs_social_btns_style_1 a:hover {
  color: var(--white-color);
  background-color: var(--primary-color);
}
.cs_coming_soon .cs_social_btns_style_1 a:hover i {
  transform: translateX(30px);
  transition: transform 0.3s cubic-bezier(0.45, 0.25, 0.65, 1);
}
.cs_coming_soon .cs_back_home {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-weight: 500;
  color: var(--primary-color);
  text-decoration: underline;
}
.cs_coming_soon .cs_back_home:hover {
  color: var(--accent-color);
  text-decoration: none;
}
@media (max-width: 991px) {
  .cs_coming_soon {
    min-height: auto;
    padding: 64px 0;
  }
  .cs_coming_soon::before {
    position: absolute;
    inset: 0;
    content: "";
    background-color: rgba(254, 250, 245, 0.85);
  }
}
@media (max-width: 767px) {
  .cs_coming_soon {
    padding: 50px 0;
  }
}

/*========================================================
  Countdown
==========================================================*/
.cs_countdown {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 24px;
  margin-bottom: 50px;
}
.cs_countdown .cs_countdown_item {
  min-width: 96px;
  padding: 10px 30px;
  text-align: center;
  background-color: var(--gray4-color);
}
.cs_countdown .cs_countdown_number,
.cs_countdown .cs_countdown_label {
  display: block;
}
@media (max-width: 575px) {
  .cs_countdown {
    gap: 12px;
  }
  .cs_countdown .cs_countdown_item {
    min-width: 72px;
    padding: 8px 16px;
  }
}
.cs_countdown.cs_style_1 {
  flex-wrap: wrap;
  justify-content: flex-start;
  gap: 11px;
  margin-bottom: 0;
}
.cs_countdown.cs_style_1 .cs_countdown_item {
  min-width: 100px;
  padding: 8px 12px;
  background-color: var(--accent-color);
}
.cs_countdown.cs_style_1 .cs_countdown_number {
  line-height: 1.25em;
}
.cs_countdown.cs_style_1 .cs_countdown_label {
  margin-top: 2px;
}
@media (max-width: 575px) {
  .cs_countdown.cs_style_1 {
    gap: 8px;
  }
  .cs_countdown.cs_style_1 .cs_countdown_item {
    min-width: 68px;
    padding: 6px 10px;
  }
}

.cs_account_thumb img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}

.cs_login_box {
  width: min(100%, 536px);
  height: 100%;
  display: flex;
  flex-direction: column;
  justify-content: center;
}
.cs_login_box .cs_login_head {
  margin-bottom: 24px;
}
.cs_login_box .cs_login_head .cs_login_title {
  margin-bottom: 6px;
}
.cs_login_box .cs_social_login_wrap {
  margin-top: 32px;
}
.cs_login_box .cs_social_login {
  gap: 10px;
  margin-top: 28px;
}
.cs_login_box .cs_social_login a {
  width: 50px;
  height: 50px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  color: var(--primary-color);
  background-color: var(--gray-color);
  border: 1px solid var(--gray3-color);
}
.cs_login_box .cs_social_login a:hover {
  color: var(--white-color);
  background-color: var(--primary-color);
  border-color: var(--primary-color);
}
.cs_login_box .cs_login_footer {
  margin-top: 48px;
  padding-top: 32px;
  border-top: 1px solid var(--gray3-color);
}
.cs_login_box .cs_login_footer .cs_login_signup a {
  color: var(--accent-color);
  text-decoration: underline;
  text-underline-offset: 2px;
  transition: color 0.3s ease-in-out;
}
.cs_login_box .cs_login_footer .cs_login_signup a:hover {
  text-decoration: none;
}
.cs_login_box .cs_login_footer .cs_login_secure {
  font-size: 12px;
  line-height: 1.5;
  margin-top: 12px;
}
.cs_login_box .cs_login_form .cs_form_field {
  margin-bottom: 12px;
}
.cs_login_box .cs_login_form .cs_form_field label {
  display: block;
  margin-bottom: 6px;
  color: var(--primary-color);
}
.cs_login_box .cs_login_form .cs_form_field input {
  width: 100%;
  display: block;
  outline: 0;
  padding: 14px 12px;
  color: var(--primary-color);
  background-color: var(--gray-color);
  border: 1px solid transparent;
  transition: border-color 0.3s ease-in-out;
}
.cs_login_box .cs_login_form .cs_form_field input::-moz-placeholder {
  color: var(--gray2-color);
}
.cs_login_box .cs_login_form .cs_form_field input::placeholder {
  color: var(--gray2-color);
}
.cs_login_box .cs_login_form .cs_form_field input:focus {
  border-color: var(--accent-color);
}
.cs_login_box .cs_login_options {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  margin: 0 0 24px;
}
.cs_login_box .cs_checkbox {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  margin: 0;
  cursor: pointer;
  -webkit-user-select: none;
     -moz-user-select: none;
          user-select: none;
}
.cs_login_box .cs_checkbox input {
  position: absolute;
  width: 1px;
  height: 1px;
  opacity: 0;
  pointer-events: none;
}
.cs_login_box .cs_checkbox .cs_checkbox_box {
  width: 16px;
  height: 16px;
  flex-shrink: 0;
  position: relative;
  background-color: var(--gray-color);
  border: 1px solid var(--gray4-color);
  transition: all 0.3s ease-in-out;
}
.cs_login_box .cs_checkbox .cs_checkbox_box::after {
  content: "";
  position: absolute;
  top: 2px;
  left: 5px;
  width: 4px;
  height: 8px;
  opacity: 0;
  border: solid var(--white-color);
  border-width: 0 2px 2px 0;
  transform: rotate(45deg);
  transition: opacity 0.2s ease-in-out;
}
.cs_login_box .cs_checkbox .cs_checkbox_label {
  font-size: 16px;
  line-height: 24px;
  color: var(--secondary-color);
}
.cs_login_box .cs_checkbox input:checked + .cs_checkbox_box {
  background-color: var(--accent-color);
  border-color: var(--accent-color);
}
.cs_login_box .cs_checkbox input:checked + .cs_checkbox_box::after {
  opacity: 1;
}
.cs_login_box .cs_checkbox input:focus-visible + .cs_checkbox_box {
  outline: 2px solid var(--accent-color);
  outline-offset: 2px;
}
.cs_login_box .cs_forgot_link {
  text-wrap: nowrap;
  text-decoration: underline;
  text-underline-offset: 2px;
  transition: color 0.3s ease-in-out;
}
.cs_login_box .cs_forgot_link:hover {
  color: var(--accent-color);
}

/*========================================================
  Order Tracking
==========================================================*/
.cs_order_tracking_section .cs_section_heading_style_1 {
  margin-bottom: 32px;
}
.cs_order_tracking_section .cs_section_heading_style_1 .cs_section_title {
  margin-bottom: 12px;
}
.cs_order_tracking_section .cs_section_heading_style_1 .cs_order_tracking_label {
  margin-bottom: 6px;
}

.cs_order_tracking_wrap {
  width: min(100%, 636px);
  margin: 0 auto;
}
.cs_order_tracking_wrap .cs_order_tracking_fields {
  display: flex;
  gap: 24px;
}
.cs_order_tracking_wrap .cs_form_field {
  flex: 1;
}
.cs_order_tracking_wrap .cs_form_field label {
  display: block;
  margin-bottom: 6px;
  color: var(--primary-color);
}
.cs_order_tracking_wrap .cs_form_field input {
  width: 100%;
  display: block;
  outline: 0;
  padding: 14px 12px;
  color: var(--primary-color);
  background-color: var(--gray-color);
  border: 1px solid transparent;
  transition: border-color 0.3s ease-in-out;
}
.cs_order_tracking_wrap .cs_form_field input::-moz-placeholder {
  color: var(--gray2-color);
}
.cs_order_tracking_wrap .cs_form_field input::placeholder {
  color: var(--gray2-color);
}
.cs_order_tracking_wrap .cs_form_field input:focus {
  border-color: var(--accent-color);
}
.cs_order_tracking_wrap .cs_btn_style_1 {
  margin-top: 24px;
}
.cs_order_tracking_wrap .cs_order_tracking_help {
  display: flex;
  gap: 24px;
  margin-top: 32px;
}
.cs_order_tracking_wrap .cs_order_tracking_help_item {
  flex: 1;
}
.cs_order_tracking_wrap .cs_order_tracking_help_item h3 {
  margin-bottom: 12px;
}
.cs_order_tracking_wrap .cs_order_tracking_help_item a {
  color: var(--accent-color);
}
.cs_order_tracking_wrap .cs_order_tracking_help_item a:hover {
  text-decoration: underline;
}
@media (max-width: 575px) {
  .cs_order_tracking_wrap .cs_order_tracking_help {
    flex-direction: column;
  }
}

/*========================================================
  Order State (Track My Order)
==========================================================*/
.cs_order_details_section .cs_section_heading_style_1 {
  margin-bottom: 32px;
}
.cs_order_details_section .cs_section_heading_style_1 .cs_section_title {
  margin-bottom: 12px;
}

.cs_order_details {
  width: min(100%, 872px);
}
.cs_order_details .cs_order_summary {
  display: flex;
  gap: 24px;
}
.cs_order_details .cs_order_summary .cs_order_summary_item {
  flex: 1;
}
.cs_order_details .cs_order_summary .cs_order_summary_item h3 {
  margin-bottom: 6px;
}
.cs_order_details .cs_timeline_wrap {
  margin-top: 35px;
}
.cs_order_details .cs_order_timeline {
  margin-bottom: 32px;
}
.cs_order_details .cs_order_timeline .cs_timeline_item {
  position: relative;
  display: flex;
  gap: 12px;
  padding: 24px 0 0;
}
.cs_order_details .cs_order_timeline .cs_timeline_item:first-child {
  padding-top: 0;
}
.cs_order_details .cs_order_timeline .cs_timeline_item:last-child {
  padding-bottom: 0;
}
.cs_order_details .cs_order_timeline .cs_timeline_item:not(:last-child)::before {
  content: "";
  position: absolute;
  top: 37px;
  bottom: -37px;
  left: 38px;
  width: 1px;
  background-color: var(--gray3-color);
}
.cs_order_details .cs_order_timeline .cs_timeline_item.completed .cs_timeline_icon {
  background-color: var(--gray4-color);
}
.cs_order_details .cs_order_timeline .cs_timeline_item.active .cs_timeline_icon {
  background-color: var(--gray4-color);
  border-color: var(--accent-color);
}
.cs_order_details .cs_order_timeline .cs_timeline_item.pending .cs_timeline_icon {
  background-color: var(--gray5-color);
}
.cs_order_details .cs_order_timeline .cs_timeline_icon {
  position: relative;
  z-index: 1;
  flex-shrink: 0;
  width: 75px;
  height: 75px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  border: 1px solid transparent;
}
.cs_order_details .cs_order_timeline .cs_timeline_icon img {
  width: 35px;
  flex: none;
  border-radius: 0;
}
.cs_order_details .cs_order_timeline .cs_timeline_body {
  flex: 1;
  padding-bottom: 24px;
  border-bottom: 1px solid var(--border-color);
}
.cs_order_details .cs_order_timeline .cs_timeline_body .cs_timeline_title {
  margin-bottom: 6px;
}
.cs_order_details .cs_order_timeline .cs_timeline_body p {
  margin-bottom: 8px;
}
.cs_order_details .cs_order_timeline .cs_timeline_body .cs_timeline_date {
  display: block;
}
@media (max-width: 575px) {
  .cs_order_details .cs_order_timeline .cs_timeline_item {
    padding: 12px 0 0;
  }
  .cs_order_details .cs_order_timeline .cs_timeline_item:not(:last-child)::before {
    bottom: -25px;
  }
  .cs_order_details .cs_order_timeline .cs_timeline_body {
    padding-bottom: 22px;
  }
  .cs_order_details .cs_order_timeline .cs_timeline_icon {
    width: 60px;
    height: 60px;
  }
  .cs_order_details .cs_order_timeline .cs_timeline_icon img {
    width: 24px;
  }
  .cs_order_details .cs_order_timeline .cs_timeline_item:not(:last-child)::before {
    top: 30px;
    left: 30px;
  }
}
.cs_order_details .cs_order_map iframe {
  display: block;
  width: 100%;
  height: 350px;
  -o-object-fit: cover;
     object-fit: cover;
  filter: brightness(100%) grayscale(0.5);
}
@media (max-width: 575px) {
  .cs_order_details .cs_order_map iframe {
    height: 240px;
  }
}

/*========================================================
  List Categories
==========================================================*/
.cs_categories_toolbar, .cs_shop_toolbar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  margin-bottom: 24px;
}
.cs_categories_toolbar .cs_category_search, .cs_shop_toolbar .cs_category_search {
  position: relative;
  width: min(100%, 424px);
}
.cs_categories_toolbar .cs_category_search input, .cs_shop_toolbar .cs_category_search input {
  width: 100%;
  display: block;
  outline: 0;
  padding: 13px 40px 13px 12px;
  color: var(--primary-color);
  background-color: var(--gray-color);
  border: 1px solid transparent;
  transition: border-color 0.3s ease-in-out;
}
.cs_categories_toolbar .cs_category_search input::-moz-placeholder, .cs_shop_toolbar .cs_category_search input::-moz-placeholder {
  color: var(--secondary-color);
}
.cs_categories_toolbar .cs_category_search input::placeholder, .cs_shop_toolbar .cs_category_search input::placeholder {
  color: var(--secondary-color);
}
.cs_categories_toolbar .cs_category_search input:focus, .cs_shop_toolbar .cs_category_search input:focus {
  border-color: var(--accent-color);
}
.cs_categories_toolbar .cs_category_search input::-webkit-search-cancel-button, .cs_shop_toolbar .cs_category_search input::-webkit-search-cancel-button {
  -webkit-appearance: none;
  appearance: none;
}
.cs_categories_toolbar .cs_category_search button, .cs_shop_toolbar .cs_category_search button {
  position: absolute;
  top: 50%;
  right: 15px;
  transform: translateY(-50%);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0;
  color: var(--primary-color);
  background-color: transparent;
  border: 0;
  cursor: pointer;
  transition: color 0.3s ease-in-out;
}
.cs_categories_toolbar .cs_category_search button:hover, .cs_shop_toolbar .cs_category_search button:hover {
  color: var(--accent-color);
}
.cs_categories_toolbar .cs_category_sort, .cs_shop_toolbar .cs_category_sort, .cs_shop_toolbar .cs_shop_sort {
  flex-shrink: 0;
}
.cs_categories_toolbar .cs_category_sort .nice-select, .cs_shop_toolbar .cs_category_sort .nice-select, .cs_shop_toolbar .cs_shop_sort .nice-select {
  width: 220px;
  height: auto;
  font-size: 16px;
  line-height: 1.5em;
  padding: 8px 26px 8px 10px;
  color: var(--secondary-color);
  background-color: var(--gray-color);
  border: 0;
  border-radius: 0;
}
.cs_categories_toolbar .cs_category_sort .nice-select::after, .cs_shop_toolbar .cs_category_sort .nice-select::after, .cs_shop_toolbar .cs_shop_sort .nice-select::after {
  right: 10px;
  width: 8px;
  height: 8px;
  border-color: var(--primary-color);
}
.cs_categories_toolbar .cs_category_sort .nice-select .list, .cs_shop_toolbar .cs_category_sort .nice-select .list, .cs_shop_toolbar .cs_shop_sort .nice-select .list {
  width: 100%;
  border-radius: 0;
}
@media (max-width: 575px) {
  .cs_categories_toolbar .cs_category_sort .nice-select, .cs_shop_toolbar .cs_category_sort .nice-select, .cs_shop_toolbar .cs_shop_sort .nice-select {
    width: 100%;
  }
}
@media (max-width: 575px) {
  .cs_categories_toolbar, .cs_shop_toolbar {
    flex-direction: column;
    align-items: stretch;
    gap: 16px;
  }
}

.cs_categories_grid {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  gap: 32px 24px;
}
@media (max-width: 1399px) {
  .cs_categories_grid {
    grid-template-columns: repeat(5, 1fr);
  }
}
@media (max-width: 1199px) {
  .cs_categories_grid {
    grid-template-columns: repeat(4, 1fr);
  }
}
@media (max-width: 991px) {
  .cs_categories_grid {
    gap: 24px 16px;
    grid-template-columns: repeat(3, 1fr);
  }
}
@media (max-width: 575px) {
  .cs_categories_grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

.cs_category_card {
  display: block;
}
.cs_category_card .cs_category_thumb {
  display: block;
  overflow: hidden;
  background-color: var(--gray-color);
}
.cs_category_card .cs_category_thumb img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  transition: transform 0.25s cubic-bezier(0.44, 0.35, 0.55, 0.75);
}
.cs_category_card .cs_category_meta {
  display: flex;
  gap: 6px 24px;
  align-items: center;
  justify-content: space-between;
  margin-top: 12px;
}
.cs_category_card .cs_category_name {
  transition: color 0.3s ease-in;
}
.cs_category_card .cs_category_count {
  flex-shrink: 0;
}
.cs_category_card.cs_type_1 {
  gap: 10px;
  padding: 48px 10px 40px;
  border-radius: 500px;
}
.cs_category_card.cs_type_1 .cs_category_thumb {
  background-color: transparent;
}
.cs_category_card:hover .cs_category_thumb img {
  transform: scale(1.04);
}
.cs_category_card:hover .cs_category_name {
  color: var(--accent-color);
}

/*========================================================
  Curated Category 
==========================================================*/
.cs_curated_category .cs_categories_grid {
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
}
@media (max-width: 991px) {
  .cs_curated_category .cs_categories_grid {
    gap: 24px 16px;
  }
}
@media (max-width: 575px) {
  .cs_curated_category .cs_categories_grid {
    grid-template-columns: repeat(2, 1fr);
  }
}
.cs_curated_category .cs_category_card {
  text-align: center;
}
.cs_curated_category .cs_category_card .cs_category_count {
  top: 24px;
  left: 24px;
  padding: 5px 10px;
}
.cs_curated_category .cs_category_card .cs_category_meta {
  justify-content: center;
  margin-top: 24px;
}

/*========================================================
  Preloader
==========================================================*/
.cs_preloader {
  position: fixed;
  inset: 0;
  z-index: 99999;
  display: flex;
  align-items: center;
  justify-content: center;
  background-color: var(--white-color);
  transition: opacity 0.4s ease-in-out, visibility 0.4s ease-in-out;
}
.cs_preloader.cs_loaded {
  opacity: 0;
  visibility: hidden;
}
.cs_preloader .cs_preloader_in {
  position: relative;
  width: 80px;
  height: 80px;
  display: flex;
  align-items: center;
  justify-content: center;
}
.cs_preloader .cs_preloader_ring {
  position: absolute;
  inset: 0;
  border-radius: 50%;
  border: 2px solid var(--gray4-color);
  border-top-color: var(--accent-color);
  animation: cs_preloader_spin 0.9s linear infinite;
}
.cs_preloader .cs_preloader_icon {
  font-size: 30px;
  line-height: 1;
  color: var(--accent-color);
}

@keyframes cs_preloader_spin {
  to {
    transform: rotate(360deg);
  }
}
/*=====================================================
  23. Post — Blog Grid Card
=======================================================*/
/*======================================
  Blog grid section
 ======================================*/
.cs_blog_grid_section .cs_section_heading_style_1,
.cs_blog_list_section .cs_section_heading_style_1,
.cs_blog_journal_section .cs_section_heading_style_1 {
  max-width: 1096px;
}

.cs_blog_journal_section .cs_section_heading_style_1 {
  max-width: 872px;
  margin-bottom: 32px;
}
.cs_blog_journal_section .cs_section_title {
  line-height: 1.25em;
}
.cs_blog_journal_grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  align-items: stretch;
  padding-top: 48px;
}
.cs_blog_journal_grid .cs_post_style_4, .cs_blog_journal_grid .cs_post_style_6 {
  height: 100%;
}
.cs_blog_journal_grid .cs_post_style_4::before, .cs_blog_journal_grid .cs_post_style_6::before {
  background: linear-gradient(180deg, rgba(255, 255, 255, 0) 55%, #f4dcce 100%);
}
.cs_blog_journal_grid .cs_post_style_4 .cs_post_content, .cs_blog_journal_grid .cs_post_style_6 .cs_post_content {
  padding: 24px;
}
.cs_blog_journal_grid .cs_post_style_4 .cs_post_thumbnail, .cs_blog_journal_grid .cs_post_style_6 .cs_post_thumbnail {
  max-height: none;
}
.cs_blog_journal_grid .cs_newsletter_style_1 {
  transform: translateY(-48px);
}
@media (max-width: 991px) {
  .cs_blog_journal_grid {
    padding-top: 0;
    grid-template-columns: 1fr 1fr;
  }
  .cs_blog_journal_grid .cs_newsletter_style_1 {
    order: 2;
    grid-column: 1/-1;
    transform: translateY(0);
  }
  .cs_blog_journal_grid .cs_post_style_4 .cs_post_thumbnail, .cs_blog_journal_grid .cs_post_style_6 .cs_post_thumbnail {
    min-height: 360px;
  }
}
@media (max-width: 575px) {
  .cs_blog_journal_grid {
    grid-template-columns: 1fr;
  }
  .cs_blog_journal_grid .cs_post_style_4 .cs_post_content, .cs_blog_journal_grid .cs_post_style_6 .cs_post_content {
    padding: 24px 15px;
  }
}

.cs_blog_showcase_grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr;
  gap: 24px;
}
@media (max-width: 1399px) {
  .cs_blog_showcase_grid .cs_post_style_4 .cs_post_content, .cs_blog_showcase_grid .cs_post_style_6 .cs_post_content {
    padding: 32px 20px;
  }
  .cs_blog_showcase_grid .cs_post_style_4 .cs_post_meta, .cs_blog_showcase_grid .cs_post_style_6 .cs_post_meta {
    gap: 8px 20px;
  }
  .cs_blog_showcase_grid .cs_post_style_4.cs_type_1 .cs_post_content, .cs_blog_showcase_grid .cs_type_1.cs_post_style_6 .cs_post_content {
    padding: 32px;
  }
  .cs_blog_showcase_grid .cs_post_style_4.cs_type_1 .cs_post_title, .cs_blog_showcase_grid .cs_type_1.cs_post_style_6 .cs_post_title {
    margin-bottom: 32px;
  }
}
@media (max-width: 1199px) {
  .cs_blog_showcase_grid {
    grid-template-columns: 1.5fr 1fr 1fr;
  }
  .cs_blog_showcase_grid .cs_post_style_6 .cs_post_content {
    padding: 32px 18px;
  }
  .cs_blog_showcase_grid .cs_post_style_6 .cs_post_meta {
    gap: 8px 16px;
  }
}
@media (max-width: 991px) {
  .cs_blog_showcase_grid {
    grid-template-columns: 1fr 1fr;
  }
  .cs_blog_showcase_grid .cs_post_style_6.cs_type_1 {
    grid-column: 1/-1;
  }
}
@media (max-width: 575px) {
  .cs_blog_showcase_grid {
    grid-template-columns: 1fr;
  }
  .cs_blog_showcase_grid .cs_post_style_6 {
    max-height: 500px;
  }
  .cs_blog_showcase_grid .cs_post_style_6 .cs_post_content {
    padding: 24px 15px;
  }
  .cs_blog_showcase_grid .cs_post_style_6.cs_type_1 {
    min-height: 420px;
  }
  .cs_blog_showcase_grid .cs_post_style_6.cs_type_1 .cs_post_content {
    padding: 24px 15px;
  }
  .cs_blog_showcase_grid .cs_post_style_6.cs_type_1 .cs_post_title {
    margin-bottom: 24px;
  }
}

/*======================================
  Post cards
 ======================================*/
.cs_post_style_1 .cs_post_thumbnail, .cs_post_style_5 .cs_post_thumbnail, .cs_post_style_4 .cs_post_thumbnail, .cs_post_style_6 .cs_post_thumbnail, .cs_post_style_3 .cs_post_thumbnail, .cs_post_style_2 .cs_post_thumbnail {
  position: relative;
  display: block;
  overflow: hidden;
  margin-bottom: 22px;
}
.cs_post_style_1 .cs_post_thumbnail img, .cs_post_style_5 .cs_post_thumbnail img, .cs_post_style_4 .cs_post_thumbnail img, .cs_post_style_6 .cs_post_thumbnail img, .cs_post_style_3 .cs_post_thumbnail img, .cs_post_style_2 .cs_post_thumbnail img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  transition: transform 0.7s cubic-bezier(0.45, 0.5, 0.36, 0.75);
}
.cs_post_style_1 .cs_post_thumbnail::before, .cs_post_style_5 .cs_post_thumbnail::before, .cs_post_style_4 .cs_post_thumbnail::before, .cs_post_style_6 .cs_post_thumbnail::before, .cs_post_style_3 .cs_post_thumbnail::before, .cs_post_style_2 .cs_post_thumbnail::before {
  content: "";
  position: absolute;
  inset: 12px;
  z-index: 1;
  border: 1px solid rgba(255, 255, 255, 0.75);
  opacity: 0;
  transition: opacity 0.4s ease;
  pointer-events: none;
}
.cs_post_style_1 .cs_post_thumbnail::after, .cs_post_style_5 .cs_post_thumbnail::after, .cs_post_style_4 .cs_post_thumbnail::after, .cs_post_style_6 .cs_post_thumbnail::after, .cs_post_style_3 .cs_post_thumbnail::after, .cs_post_style_2 .cs_post_thumbnail::after {
  content: "";
  position: absolute;
  top: 0;
  left: -75%;
  z-index: 2;
  width: 30%;
  height: 100%;
  background: linear-gradient(120deg, rgba(255, 255, 255, 0) 0%, rgba(255, 255, 255, 0.35) 50%, rgba(255, 255, 255, 0) 100%);
  transform: skewX(-25deg);
  pointer-events: none;
}
.cs_post_style_1 .cs_post_thumbnail:hover::before, .cs_post_style_5 .cs_post_thumbnail:hover::before, .cs_post_style_4 .cs_post_thumbnail:hover::before, .cs_post_style_6 .cs_post_thumbnail:hover::before, .cs_post_style_3 .cs_post_thumbnail:hover::before, .cs_post_style_2 .cs_post_thumbnail:hover::before {
  opacity: 1;
}
.cs_post_style_1 .cs_post_thumbnail:hover::after, .cs_post_style_5 .cs_post_thumbnail:hover::after, .cs_post_style_4 .cs_post_thumbnail:hover::after, .cs_post_style_6 .cs_post_thumbnail:hover::after, .cs_post_style_3 .cs_post_thumbnail:hover::after, .cs_post_style_2 .cs_post_thumbnail:hover::after {
  animation: cs_post_sheen 0.6s ease;
}
.cs_post_style_1 .cs_posted_by, .cs_post_style_5 .cs_posted_by, .cs_post_style_4 .cs_posted_by, .cs_post_style_6 .cs_posted_by, .cs_post_style_3 .cs_posted_by, .cs_post_style_2 .cs_posted_by {
  position: absolute;
  top: 12px;
  left: 12px;
  z-index: 3;
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 10px;
}
.cs_post_style_1 .cs_posted_by i, .cs_post_style_5 .cs_posted_by i, .cs_post_style_4 .cs_posted_by i, .cs_post_style_6 .cs_posted_by i, .cs_post_style_3 .cs_posted_by i, .cs_post_style_2 .cs_posted_by i {
  font-size: 16px;
}
.cs_post_style_1 .cs_post_meta, .cs_post_style_5 .cs_post_meta, .cs_post_style_4 .cs_post_meta, .cs_post_style_6 .cs_post_meta, .cs_post_style_3 .cs_post_meta, .cs_post_style_2 .cs_post_meta {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 8px 32px;
  margin-bottom: 16px;
}
.cs_post_style_1 .cs_post_meta li, .cs_post_style_5 .cs_post_meta li, .cs_post_style_4 .cs_post_meta li, .cs_post_style_6 .cs_post_meta li, .cs_post_style_3 .cs_post_meta li, .cs_post_style_2 .cs_post_meta li {
  display: inline-flex;
  align-items: center;
  gap: 10px;
}
.cs_post_style_1 .cs_post_title, .cs_post_style_5 .cs_post_title, .cs_post_style_4 .cs_post_title, .cs_post_style_6 .cs_post_title, .cs_post_style_3 .cs_post_title, .cs_post_style_2 .cs_post_title {
  margin-bottom: 32px;
}
.cs_post_style_1 .cs_post_title a:hover, .cs_post_style_5 .cs_post_title a:hover, .cs_post_style_4 .cs_post_title a:hover, .cs_post_style_6 .cs_post_title a:hover, .cs_post_style_3 .cs_post_title a:hover, .cs_post_style_2 .cs_post_title a:hover {
  color: var(--accent-color);
}
.cs_post_style_1 .cs_post_btn, .cs_post_style_5 .cs_post_btn, .cs_post_style_4 .cs_post_btn, .cs_post_style_6 .cs_post_btn, .cs_post_style_3 .cs_post_btn, .cs_post_style_2 .cs_post_btn {
  display: inline-block;
  overflow: hidden;
}
.cs_post_style_1 .cs_post_btn span, .cs_post_style_5 .cs_post_btn span, .cs_post_style_4 .cs_post_btn span, .cs_post_style_6 .cs_post_btn span, .cs_post_style_3 .cs_post_btn span, .cs_post_style_2 .cs_post_btn span {
  display: inline-block;
  text-shadow: 0px -28px 0px currentColor;
  transition: transform 0.4s cubic-bezier(0.455, 0.03, 0.515, 1);
}
.cs_post_style_1 .cs_post_btn:hover span, .cs_post_style_5 .cs_post_btn:hover span, .cs_post_style_4 .cs_post_btn:hover span, .cs_post_style_6 .cs_post_btn:hover span, .cs_post_style_3 .cs_post_btn:hover span, .cs_post_style_2 .cs_post_btn:hover span {
  color: var(--accent-color);
  transform: translateY(28px);
}
.cs_post_style_1:hover .cs_post_thumbnail img, .cs_post_style_5:hover .cs_post_thumbnail img, .cs_post_style_4:hover .cs_post_thumbnail img, .cs_post_style_6:hover .cs_post_thumbnail img, .cs_post_style_3:hover .cs_post_thumbnail img, .cs_post_style_2:hover .cs_post_thumbnail img {
  transform: scale(1.06);
}
@media (max-width: 991px) {
  .cs_post_style_1 .cs_post_meta, .cs_post_style_5 .cs_post_meta, .cs_post_style_4 .cs_post_meta, .cs_post_style_6 .cs_post_meta, .cs_post_style_3 .cs_post_meta, .cs_post_style_2 .cs_post_meta {
    margin-bottom: 10px;
  }
  .cs_post_style_1 .cs_post_title, .cs_post_style_5 .cs_post_title, .cs_post_style_4 .cs_post_title, .cs_post_style_6 .cs_post_title, .cs_post_style_3 .cs_post_title, .cs_post_style_2 .cs_post_title {
    margin-bottom: 16px;
  }
}

.cs_post_style_2 {
  display: grid;
  gap: 24px;
  grid-template-columns: 1fr 1fr;
}
.cs_post_style_2 .cs_post_thumbnail {
  width: min(100%, 424px);
  margin-bottom: 0;
}
.cs_post_style_2 .cs_post_content {
  width: 100%;
  height: 100%;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  justify-content: center;
}
.cs_post_style_2 .cs_post_title {
  margin-bottom: 12px;
}
.cs_post_style_2 .cs_post_subtitle {
  margin-bottom: 33px;
}
@media (max-width: 767px) {
  .cs_post_style_2 {
    grid-template-columns: 1fr;
    gap: 20px;
  }
  .cs_post_style_2 .cs_post_thumbnail {
    width: 100%;
  }
  .cs_post_style_2 .cs_post_thumbnail img {
    max-height: 300px;
  }
  .cs_post_style_2 .cs_post_subtitle {
    margin-bottom: 20px;
  }
}

.cs_post_style_3 .cs_post_thumbnail {
  display: block;
  max-height: 550px;
  margin-bottom: 22px;
}
.cs_post_style_3 .cs_post_title {
  margin-bottom: 12px;
}
.cs_post_style_3 .cs_post_subtitle {
  margin-bottom: 24px;
}
@media (max-width: 991px) {
  .cs_post_style_3 .cs_post_subtitle {
    margin-bottom: 20px;
  }
}

.cs_post_style_4, .cs_post_style_6 {
  position: relative;
  display: block;
  overflow: hidden;
}
.cs_post_style_4::before, .cs_post_style_6::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 2;
  background: linear-gradient(180deg, rgba(32, 32, 32, 0) 46.49%, #202020 100%);
  pointer-events: none;
}
.cs_post_style_4 .cs_post_thumbnail, .cs_post_style_6 .cs_post_thumbnail {
  height: 100%;
  max-height: 475px;
  margin-bottom: 0;
}
.cs_post_style_4 .cs_post_content, .cs_post_style_6 .cs_post_content {
  position: absolute;
  inset: auto 0 0 0;
  z-index: 3;
  padding: 30px 30px 32px;
}
.cs_post_style_4 .cs_post_meta, .cs_post_style_6 .cs_post_meta {
  margin-bottom: 16px;
}
.cs_post_style_4 .cs_post_title, .cs_post_style_6 .cs_post_title {
  margin-bottom: 0;
}
@media (max-width: 575px) {
  .cs_post_style_4 .cs_post_content, .cs_post_style_6 .cs_post_content {
    padding: 24px 15px;
  }
}

.cs_post_style_5 .cs_post_thumbnail {
  height: 500px;
  clip-path: inset(10% 0 0 0);
}
.cs_post_style_5 .cs_post_thumbnail::before {
  display: none;
}
.cs_post_style_5 .cs_post_title {
  margin-bottom: 24px;
}
.cs_post_style_5:hover .cs_post_thumbnail {
  clip-path: inset(0 0 0 0);
}
@media (max-width: 991px) {
  .cs_post_style_5 .cs_post_thumbnail {
    height: auto;
    clip-path: inset(0 0 0 0);
  }
  .cs_post_style_5 .cs_post_meta {
    margin-bottom: 10px;
  }
  .cs_post_style_5 .cs_post_title {
    margin-bottom: 16px;
  }
}

.cs_post_style_6 {
  min-height: 600px;
}
.cs_post_style_6::before {
  background: linear-gradient(180deg, rgba(32, 32, 32, 0) 34.89%, var(--black-color) 100%);
}
.cs_post_style_6 .cs_post_thumbnail {
  max-height: 100%;
}
.cs_post_style_6 .cs_post_thumbnail::before, .cs_post_style_6 .cs_post_thumbnail::after {
  display: none;
}
.cs_post_style_6 .cs_btn_style_1 {
  margin-top: 48px;
  border: 1px solid var(--accent-color);
}
.cs_post_style_6.cs_type_1 .cs_post_content {
  padding: 48px;
}
.cs_post_style_6.cs_type_1 .cs_post_title {
  margin-bottom: 48px;
}
.cs_post_style_6.cs_type_1 .cs_btn_style_1 {
  margin-top: 0;
}

/*======================================
  Blog sidebar
 ======================================*/
.cs_post_sidebar {
  width: min(100%, 312px);
  display: flex;
  gap: 24px;
  flex-direction: column;
}
.cs_post_sidebar .cs_sidebar_widget_title {
  margin-bottom: 12px;
}
.cs_post_sidebar .cs_sidebar_search_form {
  position: relative;
}
.cs_post_sidebar .cs_sidebar_search_form input {
  width: 100%;
  height: 55px;
  padding: 0 50px 0 20px;
  background-color: var(--gray-color);
  border: 0;
  outline: 0;
  color: var(--primary-color);
}
.cs_post_sidebar .cs_sidebar_search_form input::-moz-placeholder {
  color: var(--gray2-color);
}
.cs_post_sidebar .cs_sidebar_search_form input::placeholder {
  color: var(--gray2-color);
}
.cs_post_sidebar .cs_sidebar_search_form button {
  position: absolute;
  top: 50%;
  right: 16px;
  transform: translateY(-50%);
  display: inline-flex;
  padding: 0;
  font-size: 24px;
  line-height: 1;
  color: var(--primary-color);
  background-color: transparent;
  border: none;
  transition: color 0.3s ease;
}
.cs_post_sidebar .cs_sidebar_search_form button:hover {
  color: var(--accent-color);
}
.cs_post_sidebar .cs_sidebar_category_list {
  display: flex;
  gap: 7px;
  flex-direction: column;
}
.cs_post_sidebar .cs_sidebar_category_list li a {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  color: var(--primary-color);
  transition: color 0.3s ease;
}
.cs_post_sidebar .cs_sidebar_category_list li a:hover {
  color: var(--accent-color);
}
.cs_post_sidebar .cs_sidebar_tags {
  display: flex;
  flex-wrap: wrap;
  gap: 5px;
}
.cs_post_sidebar .cs_sidebar_tags a {
  display: inline-flex;
  align-items: center;
  padding: 5px 10px;
  font-size: 14px;
  line-height: 1.43em;
  color: var(--secondary-color);
  background-color: var(--gray-color);
  transition: color 0.3s ease, background-color 0.3s ease;
}
.cs_post_sidebar .cs_sidebar_tags a:hover {
  color: var(--white-color);
  background-color: var(--accent-color);
}
@media (max-width: 991px) {
  .cs_post_sidebar {
    width: 100%;
  }
}

/*======================================
  Recent post — style 1
 ======================================*/
.cs_recent_posts_list {
  display: flex;
  gap: 12px;
  flex-direction: column;
}

.cs_recent_post_1 {
  display: flex;
  gap: 25px;
}
.cs_recent_post_1 .cs_post_thumb {
  width: 88px;
  height: 100px;
  flex: none;
  overflow: hidden;
}
.cs_recent_post_1 .cs_post_thumb img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  transition: transform 0.4s cubic-bezier(0.39, 0.575, 0.565, 1);
}
.cs_recent_post_1 .cs_post_thumb:hover img {
  transform: scale(1.06);
}
.cs_recent_post_1 .cs_post_info {
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 8px;
}
.cs_recent_post_1 .cs_post_date {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  color: var(--accent-color);
}
.cs_recent_post_1 .cs_post_date i {
  font-size: 16px;
}
.cs_recent_post_1 .cs_post_title a:hover {
  color: var(--accent-color);
}

@keyframes cs_post_sheen {
  100% {
    left: 125%;
  }
}
/*======================================
 Pagination
 ====================================== */
.cs_pagination {
  display: flex;
  align-items: center;
  gap: 22px;
  margin-top: 48px;
}
.cs_pagination .cs_pagination_arrow {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 50px;
  height: 50px;
  padding: 10px;
  background-color: transparent;
  border: none;
}
.cs_pagination .cs_pagination_item,
.cs_pagination .cs_pagination_arrow {
  color: var(--primary-color);
  transition: color 0.3s ease;
}
.cs_pagination .cs_pagination_item:hover,
.cs_pagination .cs_pagination_arrow:hover {
  color: var(--accent-color);
}
.cs_pagination .cs_pagination_item.cs_active {
  color: var(--accent-color);
  font-weight: 500;
}
.cs_pagination .cs_pagination_arrow {
  font-size: 24px;
}
@media (max-width: 991px) {
  .cs_pagination {
    margin-top: 40px;
  }
}

/*=====================================================
  24. Post Details — Single Blog Post
=======================================================*/
/*======================================
  Blog details component
 ======================================*/
.cs_blog_details .cs_post_banner {
  position: relative;
  margin-bottom: 22px;
}
.cs_blog_details .cs_post_banner img {
  width: 100%;
  height: 100%;
  max-height: 550px;
  -o-object-fit: cover;
     object-fit: cover;
}
.cs_blog_details .cs_posted_date {
  position: absolute;
  top: 12px;
  left: 12px;
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 10px;
}
.cs_blog_details .cs_posted_date i {
  font-size: 16px;
}
.cs_blog_details .cs_post_meta {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 8px 32px;
  margin-bottom: 16px;
  color: var(--secondary-color);
}
.cs_blog_details .cs_post_meta li {
  display: inline-flex;
  align-items: center;
  gap: 10px;
}
.cs_blog_details .cs_post_meta .cs_meta_icon {
  font-size: 16px;
}
.cs_blog_details .cs_post_title {
  margin-bottom: 24px;
}
.cs_blog_details article {
  margin-bottom: 32px;
}
.cs_blog_details article:last-child {
  margin-bottom: 0;
}
.cs_blog_details article h2,
.cs_blog_details article h3,
.cs_blog_details article h4,
.cs_blog_details article h5,
.cs_blog_details article h6 {
  margin-bottom: 12px;
}
.cs_blog_details article > p {
  margin-bottom: 12px;
}
.cs_blog_details article > p:last-child {
  margin-bottom: 0;
}
.cs_blog_details .cs_post_body > p {
  margin-bottom: 24px;
}
.cs_blog_details .cs_post_body > p:last-child {
  margin-bottom: 0;
}
.cs_blog_details .cs_post_body strong {
  font-weight: 500;
  color: var(--primary-color);
}
.cs_blog_details .cs_post_body .cs_blog_list {
  padding-left: 24px;
  list-style: disc;
  display: flex;
  gap: 7px;
  flex-direction: column;
  margin-bottom: 0;
}
.cs_blog_details .cs_post_body .cs_blog_list strong {
  font-weight: 500;
  color: var(--primary-color);
}
.cs_blog_details .cs_metal_cards {
  display: grid;
  gap: 24px;
  margin-bottom: 32px;
  grid-template-columns: repeat(3, 1fr);
}
.cs_blog_details .cs_metal_card {
  padding: 24px;
  background-color: var(--gray-color);
}
.cs_blog_details .cs_metal_card .cs_card_title {
  margin-bottom: 12px;
}
.cs_blog_details .cs_metal_card p {
  margin-bottom: 0;
}
.cs_blog_details .cs_blog_quote {
  padding: 24px;
  font-style: normal;
  margin-bottom: 32px;
  background-color: var(--gray5-color);
}
.cs_blog_details .cs_blog_quote p {
  font-size: 18px;
  line-height: 1.45em;
  color: var(--primary-color);
  margin-bottom: 24px;
}
.cs_blog_details .cs_blog_quote cite {
  display: block;
  font-size: 16px;
  line-height: 1.5em;
  font-style: normal;
  color: var(--primary-color);
}
.cs_blog_details .cs_blog_quote cite span {
  color: var(--secondary-color);
}
.cs_blog_details .cs_post_details_footer {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 16px 24px;
  margin-top: 40px;
  padding: 24px 0;
  border-top: 1px solid var(--border-color);
  border-bottom: 1px solid var(--border-color);
}
.cs_blog_details .cs_blog_tags {
  margin: 0;
}
.cs_blog_details .cs_blog_tags span {
  font-weight: 500;
  color: var(--primary-color);
}
.cs_blog_details .cs_blog_share {
  display: inline-flex;
  align-items: center;
  gap: 16px;
}
.cs_blog_details .cs_blog_share span {
  font-weight: 500;
  color: var(--primary-color);
}
.cs_blog_details .cs_social_btns_style_1 {
  gap: 6px;
}
.cs_blog_details .cs_social_btns_style_1 a {
  color: var(--primary-color);
  background-color: var(--border-color);
}
.cs_blog_details .cs_social_btns_style_1 a:hover {
  color: var(--white-color);
  background-color: var(--accent-color);
}
.cs_blog_details .cs_blog_navigation {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  margin-top: 32px;
}
.cs_blog_details .cs_blog_navigation a {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-weight: 500;
  color: var(--primary-color);
}
.cs_blog_details .cs_blog_navigation a:hover {
  color: var(--accent-color);
}

/*======================================
  Comment form component
 ======================================*/
.cs_comment_wrap {
  margin-top: 64px;
}
.cs_comment_wrap .cs_comment_heading {
  margin-bottom: 24px;
}

.cs_comment_form {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 12px;
}
.cs_comment_form .cs_form_field_full {
  grid-column: 1/-1;
}
.cs_comment_form label {
  display: block;
  margin-bottom: 6px;
  color: var(--primary-color);
}
.cs_comment_form input,
.cs_comment_form textarea {
  width: 100%;
  border: 0;
  outline: 0;
  resize: none;
  padding: 15px 12px;
  color: var(--primary-color);
  font-family: var(--secondary-font);
  background-color: var(--gray-color);
}
.cs_comment_form input::-moz-placeholder, .cs_comment_form textarea::-moz-placeholder {
  color: var(--gray2-color);
}
.cs_comment_form input::placeholder,
.cs_comment_form textarea::placeholder {
  color: var(--gray2-color);
}
.cs_comment_form input:focus,
.cs_comment_form textarea:focus {
  box-shadow: inset 0 0 0 1px var(--accent-color);
}
@media (max-width: 767px) {
  .cs_comment_form {
    grid-template-columns: 1fr;
  }
}

/*====================================================
  25. Contact
======================================================*/
.cs_contact_section .cs_contact_heading {
  margin-bottom: 24px;
}

.cs_contact_form {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
}
.cs_contact_form .cs_form_field.cs_form_field_full {
  grid-column: 1/-1;
}
.cs_contact_form .cs_form_field label {
  margin-bottom: 6px;
  color: var(--primary-color);
}
.cs_contact_form .cs_form_field input,
.cs_contact_form .cs_form_field select,
.cs_contact_form .cs_form_field textarea {
  width: 100%;
  display: block;
  outline: 0;
  resize: none;
  padding: 14px 12px;
  color: var(--primary-color);
  background-color: var(--gray-color);
  border: 1px solid transparent;
  transition: border-color 0.3s ease-in-out;
}
.cs_contact_form .cs_form_field input::-moz-placeholder, .cs_contact_form .cs_form_field select::-moz-placeholder, .cs_contact_form .cs_form_field textarea::-moz-placeholder {
  color: var(--gray2-color);
}
.cs_contact_form .cs_form_field input::placeholder,
.cs_contact_form .cs_form_field select::placeholder,
.cs_contact_form .cs_form_field textarea::placeholder {
  color: var(--gray2-color);
}
.cs_contact_form .cs_form_field input:focus,
.cs_contact_form .cs_form_field select:focus,
.cs_contact_form .cs_form_field textarea:focus {
  border-color: var(--accent-color);
}
.cs_contact_form .cs_select_field .nice-select {
  width: 100%;
  float: none;
  height: auto;
  font-size: 16px;
  line-height: 1.5em;
  padding: 14px 40px 14px 12px;
  border-radius: 0;
  color: var(--gray2-color);
  border: 1px solid transparent;
  background-color: var(--gray-color);
  transition: border-color 0.3s ease-in-out;
}
.cs_contact_form .cs_select_field .nice-select:hover {
  border-color: transparent;
}
.cs_contact_form .cs_select_field .nice-select.open, .cs_contact_form .cs_select_field .nice-select:active, .cs_contact_form .cs_select_field .nice-select:focus {
  border-color: var(--accent-color);
}
.cs_contact_form .cs_select_field .nice-select::after {
  width: 8px;
  height: 8px;
  right: 16px;
  margin-top: -6px;
  border-bottom: 2px solid var(--secondary-color);
  border-right: 2px solid var(--secondary-color);
}
.cs_contact_form .cs_select_field .nice-select.open::after {
  border-color: var(--accent-color);
}
.cs_contact_form .cs_select_field .nice-select .current {
  display: block;
  overflow: hidden;
  text-overflow: ellipsis;
  color: var(--primary-color);
}
.cs_contact_form .cs_select_field .nice-select .list {
  width: 100%;
  margin-top: 6px;
  border-radius: 0;
  border: 1px solid var(--gray-color);
}
.cs_contact_form .cs_select_field .nice-select .option {
  padding: 6px 15px;
  color: var(--secondary-color);
  transition: background-color 0.2s ease-in-out, color 0.2s ease-in-out;
}
.cs_contact_form .cs_select_field .nice-select .option:hover, .cs_contact_form .cs_select_field .nice-select .option.focus, .cs_contact_form .cs_select_field .nice-select .option.selected.focus {
  background-color: var(--gray5-color);
  color: var(--primary-color);
}
.cs_contact_form .cs_select_field .nice-select .option.selected {
  font-weight: 400;
  color: var(--primary-color);
}
.cs_contact_form .cs_btn_style_1 {
  width: -moz-max-content;
  width: max-content;
}
.cs_contact_form .cs_btn_style_1:hover {
  border-color: var(--accent-color);
}
@media (max-width: 575px) {
  .cs_contact_form {
    grid-template-columns: 1fr;
  }
}

.cs_contact_info_wrap {
  width: min(100%, 312px);
  display: flex;
  gap: 32px;
  margin-left: auto;
  flex-direction: column;
}
.cs_contact_info_wrap .cs_contact_info_title {
  margin-bottom: 12px;
}
.cs_contact_info_wrap .cs_contact_social_title {
  margin-bottom: 24px;
}
.cs_contact_info_wrap .cs_contact_info_text {
  font-family: var(--secondary-font);
  font-size: 16px;
  line-height: 24px;
  color: var(--secondary-color);
  margin-bottom: 16px;
}
.cs_contact_info_wrap .cs_contact_info_text a {
  color: var(--secondary-color);
  transition: color 0.3s ease-in-out;
}
.cs_contact_info_wrap .cs_contact_info_text a:hover {
  color: var(--accent-color);
}
.cs_contact_info_wrap .cs_social_btns_style_1 {
  gap: 6px;
}
.cs_contact_info_wrap .cs_social_btns_style_1 a {
  color: var(--primary-color);
  background-color: var(--border-color);
}
.cs_contact_info_wrap .cs_social_btns_style_1 a:hover {
  color: var(--white-color);
  background-color: var(--accent-color);
}
@media (max-width: 991px) {
  .cs_contact_info_wrap {
    width: 100%;
  }
}

/*===================================================
  Contact Map
=====================================================*/
.cs_contact_map iframe {
  width: 100%;
  height: 650px;
  position: relative;
  z-index: 1;
  margin-bottom: -124px;
  filter: brightness(90%) grayscale(0.6);
  background-color: var(--gray-color);
}
@media (max-width: 991px) {
  .cs_contact_map iframe {
    height: 480px;
  }
}
@media (max-width: 767px) {
  .cs_contact_map iframe {
    height: 360px;
  }
}

/*===================================================
  Store Location
=====================================================*/
.cs_location_section .cs_section_heading_style_1 {
  max-width: 648px;
  margin-bottom: 32px;
}
.cs_location_section .cs_section_heading_style_1 .cs_section_title {
  margin-bottom: 6px;
}

.cs_location_card_1 .cs_card_thumb {
  overflow: hidden;
  margin-bottom: 24px;
}
.cs_location_card_1 .cs_card_thumb img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  transition: transform 0.4s ease-in-out;
}
.cs_location_card_1 .cs_card_title {
  margin-bottom: 12px;
}
.cs_location_card_1 .cs_card_meta {
  display: flex;
  gap: 12px;
  flex-direction: column;
  color: var(--gray2-color);
}
.cs_location_card_1 .cs_card_meta li {
  display: flex;
  gap: 5px;
}
.cs_location_card_1 .cs_card_meta strong {
  font-weight: 400;
  text-wrap: nowrap;
  color: var(--primary-color);
}
.cs_location_card_1 .cs_card_meta a {
  color: var(--gray2-color);
}
.cs_location_card_1 .cs_card_meta a:hover {
  color: var(--accent-color);
  text-decoration: underline;
}
.cs_location_card_1:hover .cs_card_thumb img {
  transform: scale(1.04);
}

/*===================================================
  Interactive Store Map
=====================================================*/
.cs_location_map_section {
  padding-bottom: 64px;
}
.cs_location_map_section .cs_contact_map iframe {
  height: 500px;
  margin-top: 32px;
  margin-bottom: 0;
}
@media (max-width: 991px) {
  .cs_location_map_section .cs_contact_map iframe {
    height: 420px;
  }
}
@media (max-width: 767px) {
  .cs_location_map_section .cs_contact_map iframe {
    height: 320px;
  }
}
@media (max-width: 991px) {
  .cs_location_map_section {
    padding-bottom: 50px;
  }
}

/*=============================================
 26. FAQ Section
===============================================*/
.cs_faq_section .cs_section_heading_style_1 {
  max-width: 648px;
  margin-bottom: 32px;
}
.cs_faq_section .cs_section_heading_style_1 .cs_section_title {
  margin-bottom: 12px;
}

/*=============================================
 FAQ Search Box
===============================================*/
.cs_faq_search {
  position: relative;
  max-width: 648px;
  margin: 0 auto 40px;
}
.cs_faq_search input {
  width: 100%;
  height: 55px;
  border: none;
  outline: none;
  color: var(--primary-color);
  background-color: var(--gray-color);
  padding: 0 50px 0 24px;
}
.cs_faq_search input::-moz-placeholder {
  opacity: 0.5;
  color: var(--secondary-color);
}
.cs_faq_search input::placeholder {
  opacity: 0.5;
  color: var(--secondary-color);
}
.cs_faq_search .cs_faq_search_icon {
  top: 50%;
  right: 20px;
  font-size: 22px;
  line-height: 1;
  position: absolute;
  color: var(--primary-color);
  transform: translateY(-50%);
  pointer-events: none;
}

/*=============================================
 FAQ Filter Tabs
===============================================*/
.cs_faq_filter {
  display: flex;
  gap: 14px 60px;
  flex-wrap: wrap;
  justify-content: center;
  margin-bottom: 32px;
  border-bottom: 1px solid var(--border-color);
}
.cs_faq_filter a {
  display: block;
  padding-bottom: 10px;
  margin-bottom: -1px;
  border-bottom: 2px solid transparent;
}
.cs_faq_filter a:hover {
  color: var(--accent-color);
}
.cs_faq_filter li.active a {
  color: var(--accent-color);
  border-color: var(--primary-color);
}
@media (max-width: 991px) {
  .cs_faq_filter {
    gap: 10px 24px;
  }
}
@media (max-width: 575px) {
  .cs_faq_filter a {
    font-size: 16px;
  }
}

/*=============================================
 Accordian Item — individual component
===============================================*/
.cs_accordian .cs_accordian_head {
  position: relative;
  cursor: pointer;
  padding: 0 40px 10px 0;
  border-bottom: 1px solid var(--border-color);
}
.cs_accordian .cs_accordian_head .cs_accordian_title {
  display: block;
  transition: all 0.3s ease;
}
.cs_accordian .cs_accordian_head .cs_accordian_toggle {
  width: 16px;
  height: 16px;
  position: absolute;
  top: 5px;
  right: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--primary-color);
  transition: transform 0.3s ease;
}
.cs_accordian .cs_accordian_body {
  padding-top: 24px;
}
.cs_accordian .cs_accordian_body ul {
  list-style: disc;
  display: flex;
  gap: 8px;
  flex-direction: column;
  color: var(--primary-color);
  margin-bottom: 0;
}
.cs_accordian .cs_accordian_body p {
  margin: 0;
}
.cs_accordian.active .cs_accordian_head {
  pointer-events: none;
}
.cs_accordian.active .cs_accordian_head .cs_accordian_toggle {
  transform: rotate(180deg);
}
.cs_accordian.active .cs_accordian_title {
  color: var(--accent-color);
}

.cs_accordians_style_1 {
  display: flex;
  gap: 24px;
  flex-direction: column;
}
.cs_accordians_style_1 .cs_accordian {
  margin-bottom: 24px;
}
.cs_accordians_style_1 .cs_accordian:last-child {
  margin-bottom: 0;
}

/*=============================================
 Still Have Questions — Support Section
===============================================*/
.cs_support_section .cs_section_heading_style_1 {
  max-width: 648px;
  margin-bottom: 32px;
}

.cs_support_card {
  display: flex;
  align-items: center;
  gap: 24px;
}
.cs_support_card .cs_support_icon {
  flex-shrink: 0;
  width: 88px;
  height: 88px;
  padding: 16px;
  background-color: var(--gray5-color);
}
.cs_support_card .cs_support_icon img {
  border-radius: 0;
}
.cs_support_card a:hover {
  color: var(--accent-color);
}

/*================================================================
  27. Offer Modal
==================================================================*//*# sourceMappingURL=style.css.map */