:root {
  --default-font: "IBM Plex Sans", sans-serif;
  --heading-font: "IBM Plex Sans", sans-serif;
  --nav-font: "IBM Plex Sans", sans-serif;
}

/* Global Colors - The following color variables are used throughout the website. Updating them here will change the color scheme of the entire website */

:root {
  --background-color: #f5e9e4;
  --default-color: #a1573c;
  --heading-color: #000000;
  --accent-color: #e3773d;
  --surface-color: #ffffff;
  --contrast-color: #ffffff;
}

/* Smooth scroll */

:root {
  scroll-behavior: smooth;
}

/*--------------------------------------------------------------
# General Styling & Shared Classes
--------------------------------------------------------------*/

body {
  color: black;
  background-color: var(--background-color);
  font-family: var(--default-font);
}

a {
  color: var(--accent-color);
  text-decoration: none;
  transition: 0.3s;
}

a:hover {
  color: color-mix(in srgb, var(--accent-color), transparent 25%);
  text-decoration: none;
}

h1,
h2,
h3,
h4,
h5,
h6 {
  color: var(--heading-color);
  font-family: var(--heading-font);
}

/*--------------------------------------------------------------
# Global Header
--------------------------------------------------------------*/
.logo-icon-circle {
  height: 100px;
  width: auto;
}

.logo-icon-circle img {
  height: 100%;
  width: 100%;
}

.warehouse-title {
  font-size: 22px;
  line-height: 1.1;
  font-weight: 700;
  color: var(--gw-dark-grey);
}
.nav-link-main {
  font-weight: 600;
  font-size: 18px;
  color: black;
  text-transform: uppercase;
}
.nav-link-main:hover {
  color: var(--default-color) !important;
}
.sub-nav-link {
  font-size: 0.9rem;
  color: white;
  opacity: 0.9;
  display: inline-block;
  padding-top: 0.25rem;
  padding-bottom: 0.25rem;
  text-align: center;
}

.sub-nav-link::after {
  content: "";
  display: inline-block;
  height: 8px;
  width: 8px;
  background-color: rgb(209, 197, 197);
  border-radius: 50%;
  margin-left: 80px;
}

.sub-nav-link:last-child::after {
  display: none;
}

.nav-sticky-wrapper {
  z-index: 1030;
  width: 100%;
}

.is-sticky {
  position: fixed;
  top: 0;
  width: 100%;
  box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
  background-color: #f7f7f7;
}

.branding-section {
  position: relative;
  z-index: 0;
  overflow: hidden;
}

.branding-shape-container {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}

.branding-shape-container::after {
  content: "";
  position: absolute;
  top: 0;
  left: 30%;
  height: 100%;
  width: 40%;
  background-color: #f5c7b6;
  transform: skewX(-20deg);
  z-index: 2;
}

.branding-content {
  position: relative;
  z-index: 3;
}

.social-icon-btn {
  width: 45px;
  height: 45px;
  font-size: 20px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  color: white;
  border-radius: 0.25rem;
  transition: transform 0.2s;
}
.social-icon-btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 2px 5px rgba(0, 0, 0, 0.2);
}
.btn-linkedin {
  background-color: #0077b5;
}
.btn-facebook {
  background-color: #1877f2;
}
.btn-youtube {
  background-color: #ff0000;
}

.sub-nav-bar {
  background-color: var(--default-color);
  padding: 0.5rem 0;
  box-shadow: inset 0 3px 5px rgba(0, 0, 0, 0.1);
  color: white;
}

.offcanvas-header {
  background-color: var(--gw-blue);
  color: white;
}

@media screen and (min-width: 768px) and (max-width: 1250px) {
  .nav-link-main {
    font-size: 15px;
  }
}

/*--------------------------------------------------------------
# Global Footer
--------------------------------------------------------------*/

.footer {
  color: rgb(0, 0, 0);
  background-color: #f0d6c8;
  font-size: 14px;
  position: relative;
}

.footer .footer-top {
  padding-top: 50px;
}

.footer .footer-about .logo {
  line-height: 1;
  margin-bottom: 25px;
}

.footer .footer-about .logo img {
  max-height: 120px;
  margin-right: 6px;
}

.footer .footer-about .logo span {
  color: black;
  font-family: var(--heading-font);
  font-size: 26px;
  font-weight: 700;
  letter-spacing: 1px;
}

.footer .footer-about p {
  font-size: 14px;
  font-family: var(--heading-font);
}

.footer .social-links a {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  border: 1px solid rgb(0, 0, 0);
  font-size: 16px;
  color: black;
  margin-right: 10px;
  transition: 0.3s;
}

.footer .social-links a:hover {
  color: white;
  border-color: var(--accent-color);
  background-color: var(--accent-color);
}

.footer h4 {
  font-size: 16px;
  font-weight: bold;
  position: relative;
  padding-bottom: 12px;
  color: black;
}

.footer .footer-links {
  margin-bottom: 30px;
}

.footer .footer-links ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

.footer .footer-links ul i {
  padding-right: 2px;
  font-size: 12px;
  line-height: 0;
}

.footer .footer-links ul li {
  padding: 10px 0;
  display: flex;
  align-items: center;
}

.footer .footer-links ul li:first-child {
  padding-top: 0;
}

.footer .footer-links ul a {
  color: black;
  display: inline-block;
  line-height: 1;
}

.footer .footer-links ul a:hover {
  color: var(--accent-color);
}

.footer .footer-contact p {
  margin-bottom: 5px;
}

.footer .copyright {
  padding: 25px 0;
  border-top: 1px solid
    color-mix(in srgb, var(--default-color), transparent 90%);
  background-color: #111111;
}

.footer .copyright p {
  margin-bottom: 0;
  color: white;
}

.footer .credits {
  margin-top: 8px;
  font-size: 13px;
  color: white;
}

/*--------------------------------------------------------------
# Scroll Top Button
--------------------------------------------------------------*/

.scroll-top {
  position: fixed;
  visibility: hidden;
  opacity: 0;
  right: 15px;
  bottom: -15px;
  z-index: 99999;
  background-color: var(--accent-color);
  width: 44px;
  height: 44px;
  border-radius: 50px;
  transition: all 0.4s;
}

.scroll-top i {
  font-size: 24px;
  color: var(--contrast-color);
  line-height: 0;
}

.scroll-top:hover {
  background-color: color-mix(in srgb, var(--accent-color), transparent 20%);
  color: var(--contrast-color);
}

.scroll-top.active {
  visibility: visible;
  opacity: 1;
  bottom: 15px;
}

/*--------------------------------------------------------------
# Disable aos animation delay on mobile devices
--------------------------------------------------------------*/

@media screen and (max-width: 768px) {
  [data-aos-delay] {
    transition-delay: 0 !important;
  }
}

/*--------------------------------------------------------------
# Global Sections
--------------------------------------------------------------*/

section,
.section {
  background-color: var(--background-color);
  padding: 60px 0;
  scroll-margin-top: 90px;
  overflow: clip;
}

@media (max-width: 1199px) {
  section,
  .section {
    scroll-margin-top: 45px;
  }
}

/* Header Button */

/*--------------------------------------------------------------
# Hero Section
--------------------------------------------------------------*/

.hero {
  background-image: url("../img/hero/hero1.webp");
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
  background-attachment: scroll;
  overflow: visible;
  box-shadow: inset 0 0 0 2000px #461a0bb6;
  height: 80vh;
  width: 100%;
  display: flex;
  align-items: center;
}

.hero_content {
  width: 70%;
}

.hero_content h1 {
  color: white;
  font-size: 60px;
  font-weight: bold;
  text-align: left;
  text-transform: uppercase;
}

.hero_left_content {
  width: 100%;
  text-align: left;
  padding-top: 40px;
}

.hero_left_content p {
  font-size: 18px;
  color: white;
}

.hero_single_image {
  position: absolute;
  bottom: -1px;
  left: 16%;
  z-index: 1;
}

.hero_single_image {
  width: 290px;
  height: auto;
}

.hero_single_image img {
  width: 100%;
  height: 100%;
  animation: float-badge 4s ease-in-out infinite;
  will-change: transform;
}

@keyframes float-badge {
  0% {
    transform: translateY(0);
  }
  50% {
    transform: translateX(-80px);
  }
  100% {
    transform: translateY(0);
  }
}

@media (max-width: 1100px) {
  .hero {
    height: 70vh;
  }
  .hero_content {
    width: 100%;
  }
  .hero_content h1 {
    font-size: 30px;
  }

  .hero_left_content {
    width: 100%;
    text-align: left;
    padding-top: 40px;
  }

  .hero_left_content p {
    font-size: 16px;
  }
}

/*--------------------------------------------------------------
# About US Section
--------------------------------------------------------------*/

.about_section {
  position: relative;
}

.about_us_content h4 {
  color: black;
  font-size: 40px;
  font-weight: bold;
  text-align: left;
  margin-bottom: 40px;
  width: 90%;
  text-transform: uppercase;
}

.about_us_content_below {
  width: 90%;
}

.about_us_content_below p {
  font-size: 18px;
  text-align: justify;
}

.about_number {
  margin-top: 20px;
  margin-right: 40px;
  text-align: left;
}

.about_image {
  height: 100%;
  width: 100%;
}

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

@media (max-width: 1199px) {
  .about_us_content h4 {
    font-size: 30px;
    width: 100%;
  }

  .about_us_content_below {
    width: 100%;
  }

  .about_us_content_below p {
    font-size: 16px;
    text-align: justify;
  }
  .about_image {
    margin-top: 20px;
  }
}

/*--------------------------------------------------------------
# Home Product
--------------------------------------------------------------*/

.home_category_title {
  font-size: 40px;
  font-weight: 500;
  font-weight: bold;
  text-transform: uppercase;
}

.home_category_sub {
  text-align: right;
}

.home_category_sub p {
  font-size: 15px;
  font-weight: normal;
}

.cellexa_custom_btn {
  border-radius: 0;
  font-size: 14px;
  padding: 10px 25px;
  background-color: var(--default-color);
  color: white;
}

.cellexa_item_box {
  background-color: white;
  display: flex;
  flex-direction: column;
  align-items: center;
  box-shadow: 2px 2px 6px #adabab;
  padding: 20px 10px;
  height: 100%;
}

.cellexa_item_box_img {
  height: 200px;
  width: auto;
  text-align: center;
}

.cellexa_item_box_img1 {
  height: 300px;
  width: auto;
  text-align: center;
  margin-bottom: 15px;
}

.cellexa_item_box_img img {
  height: 100%;
  width: 100%;
  object-fit: contain;
}

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

.cellexa_item_box_text h1 {
  font-size: 20px;
  font-weight: 700;
  text-transform: uppercase;
  text-align: center;
}

.cellexa_item_box_text1 h1 {
  font-size: 20px;
  font-weight: 700;
  text-transform: uppercase;
  text-align: center;
  margin-bottom: 15px;
  height: 60px;
}

.cellexa_item_box_list ul li {
  font-size: 16px;
  color: black;
}

@media (max-width: 1199px) {
  .home_category_title {
    font-size: 30px;
  }
  .home_category_sub {
    text-align: left;
  }
  .cellexa_item_box_img {
    height: 180px;
  }
}

/*--------------------------------------------------------------
# Home Details
--------------------------------------------------------------*/

.home_details {
  background-color: #111111;
}

.home_details_left h4 {
  text-align: left;
  font-size: 20px;
  color: white;
}

.home_details_left img {
  margin-left: 15px;
  height: 250px;
  width: auto;
}

.home_details_left h2 {
  text-align: left;
  font-size: 30px;
  color: white;
}

.home_details_right {
  padding-right: 10%;
  border-right: 1px solid white;
}

.home_details_right h2 {
  text-align: left;
  font-size: 40px;
  color: white;
  text-transform: uppercase;
}

.home_details_right h3 {
  text-align: left;
  font-size: 40px;
  color: #777777;
  padding-top: 30px;
}

.home_details_right p {
  text-align: left;
  font-size: 16px;
  color: white;
  padding-top: 30px;
}

.home_details_right ul li {
  text-align: left;
  font-size: 16px;
  color: white;
}

.home_details_bottom_left {
  height: 100%;
}

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

.home_details_bottom_middle {
  background-color: #95533a;
  padding: 20px;
  height: 100%;
}

.home_details_bottom_middle h4 {
  text-align: left;
  font-size: 30px;
  text-transform: uppercase;
  color: white;
  margin-bottom: 40px;
}

.home_details_bottom_middle p {
  text-align: left;
  font-size: 18px;
  color: rgb(240, 239, 239);
  margin-top: 10px;
}

.home_details_bottom_right {
  background-color: #212121;
  padding: 20px;
  height: 100%;
}

.home_details_bottom_right h4 {
  text-align: left;
  font-size: 30px;
  color: white;
  text-transform: uppercase;
}

.home_details_bottom_right h2 {
  text-align: left;
  font-size: 60px;
  font-weight: bold;
  color: white;
  margin-top: 40px;
}

.home_details_bottom_right p {
  text-align: left;
  font-size: 18px;
  color: rgb(240, 239, 239);
  margin-top: 40px;
}

@media (max-width: 1199px) {
  .home_details_right h2 {
    font-size: 30px;
  }
  .home_details_bottom_middle h4 {
    font-size: 30px;
  }
}

/*--------------------------------------------------------------
# Faq Section
--------------------------------------------------------------*/

.faq .faq-container .faq-item {
  position: relative;
  padding: 20px;
  margin-bottom: 25px;
  border-radius: 0px;
  overflow: hidden;
  border-bottom: 1px solid black;
}

.faq .faq-container .faq-item:last-child {
  margin-bottom: 0;
}

.faq .faq-container .faq-item h3 {
  font-weight: 900;
  font-size: 20px;
  line-height: 24px;
  margin: 0 30px 0 0;
  transition: 0.3s;
  cursor: pointer;
  display: flex;
  align-items: center;
  color: black;
}

.faq .faq-container .faq-item h3 span {
  font-size: 20px;
  list-style: 24px;
  color: black;
  border-radius: 50%;
  border: 1px solid black;
  height: 35px;
  width: 35px;
  padding: 5px;
  text-align: center;
  margin-right: 20px;
}

.faq .faq-container .faq-item h3:hover {
  color: var(--accent-color);
}

.faq .faq-container .faq-item .faq-content {
  display: grid;
  grid-template-rows: 0fr;
  transition: 0.3s ease-in-out;
  visibility: hidden;
  opacity: 0;
}

.faq .faq-container .faq-item .faq-content p {
  margin-bottom: 0;
  overflow: hidden;
  font-size: 16px;
}

.faq .faq-container .faq-item .faq-toggle {
  position: absolute;
  top: 20px;
  right: 20px;
  font-size: 16px;
  line-height: 0;
  transition: 0.3s;
  cursor: pointer;
}

.faq .faq-container .faq-active .faq-content {
  grid-template-rows: 1fr;
  visibility: visible;
  opacity: 1;
  padding-top: 10px;
}

.faq .faq-container .faq-active .faq-toggle {
  transform: rotate(90deg);
  color: var(--accent-color);
}

.home_faq {
  height: 100%;
}

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

@media (max-width: 1199px) {
  .home_faq {
    height: 100%;
    margin-top: 15px;
  }
}

/*--------------------------------------------------------------
# Product Page
--------------------------------------------------------------*/

.productpage_category_box {
  border-right: 1px solid black;
  border-bottom: 1px solid black;
  padding: 30px 25px;
  color: black;
  width: 25%;
  height: 100%;
}

.productpage_category_box:nth-child(4) {
  border-right: none;
}

.productpage_category_box:nth-child(8) {
  border-right: none;
  border-bottom: none;
}

.productpage_category_box:nth-child(5) {
  border-bottom: none;
}

.productpage_category_box:nth-child(6) {
  border-bottom: none;
}

.productpage_category_box:nth-child(7) {
  border-bottom: none;
}

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

.productpage_category_box p {
  font-size: 20px;
  margin: 0;
  padding: 0;
  text-align: center;
}

.company_box {
  background-color: white;
  box-shadow: 4px 3px 9px 0px rgba(0, 0, 0, 0.75);
  padding: 20px 10px;
  text-align: center;
  height: 100%;
}

.company_box img {
  height: 180px;
  width: auto;
  object-fit: cover;
}

.company_box p {
  font-size: 20px;
  color: black;
  font-weight: bold;
}

@media (max-width: 1199px) {
  .productpage_category_box {
    border: 0px;
    width: 50%;
  }
}

/*--------------------------------------------------------------
# Company Page
--------------------------------------------------------------*/

.product_breadcumb {
  background-color: rgb(230, 226, 226);
  padding: 15px 10px;
  margin-top: 20px;
}

.product_breadcumb p {
  font-size: 14px;
  color: black;
  margin: 0;
  padding: 0;
}

.product_breadcumb p a {
  color: black;
}

.category_company_filter_box {
  background-color: white;
  padding: 30px 15px;
}

.category_company_filter_box h3 {
  font-size: 18px;
  color: black;
}

.category_company_filter_box ul li a {
  color: black;
}

.company_category_box {
  text-align: left;
  padding: 30px 10px;
  background-color: var(--background-color);
}

.company_category_box h5 {
  font-size: 20px;
  color: black;
  margin: 0;
  height: 80px;
}

.company_listing_image {
  height: 100px;
  width: auto;
}

/*--------------------------------------------------------------
# History Section
--------------------------------------------------------------*/

.history .about-content h2 {
  font-size: 30px;
  margin-bottom: 20px;
  font-weight: 700;
  text-transform: uppercase;
}

.history .about-content h3 {
  color: var(--accent-color);
  font-weight: 600;
  margin-bottom: 10px;
  font-size: 1.1rem;
}

.history .about-content p {
  margin-bottom: 30px;
  font-size: 18px;
}

.about-image {
  height: 100%;
  width: 100%;
}

.about-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.history .about-image .mission-vision {
  margin-top: 30px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
}

.achievement-badge {
  border: 2px solid color-mix(in srgb, var(--accent-color), transparent 80%);
  padding: 15px 2rem;
  text-align: left;
  transition: all 0.4s ease;
  height: 100%;
}

.badge-title {
  text-transform: uppercase;
  font-size: 25px;
}

.history .core-values {
  margin-top: 30px;
}

.history .core-values h3 {
  font-size: 30px;
  font-weight: 700;
  text-align: left;
  text-transform: uppercase;
}

.history .core-values .value-card {
  background-color: var(--surface-color);
  padding: 30px 20px;
  text-align: center;
  height: 100%;
  transition: all 0.3s ease;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
}

.history .core-values .value-card .value-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 70px;
  height: 70px;
  border-radius: 50%;
  background-color: color-mix(in srgb, var(--accent-color), transparent 90%);
  margin-bottom: 20px;
}

.history .core-values .value-card .value-icon i {
  font-size: 32px;
  color: var(--accent-color);
}

.history .core-values .value-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1);
  background-color: #e3773d;
}

.history .core-values .value-card:hover .value-icon i {
  color: white;
}

.history .core-values .value-card h4 {
  font-size: 25px;
  margin-bottom: 15px;
  font-weight: 600;
  text-transform: uppercase;
}

.history .core-values .value-card p {
  font-size: 18px;
  margin-bottom: 0;
}

/*--------------------------------------------------------------
# Leadership Section
--------------------------------------------------------------*/

.leadership .intro-wrapper {
  margin-bottom: 5rem;
}

.leadership .subtitle {
  display: block;
  color: var(--accent-color);
  font-size: 1rem;
  font-weight: 600;
  text-transform: uppercase;
  margin-bottom: 1rem;
  letter-spacing: 1px;
}

.leadership .title {
  color: var(--heading-color);
  font-size: 2.5rem;
  font-weight: 700;
  margin-bottom: 1.5rem;
  line-height: 1.3;
}

.leadership .description {
  font-size: 1.05rem;
  line-height: 1.7;
  margin-bottom: 2rem;
}

.leadership .intro-image {
  position: relative;
  overflow: hidden;
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
}

.leadership .intro-image img {
  width: 100%;
  transform: scale(1.01);
}

.leadership .intro-image .experience-badge {
  position: absolute;
  bottom: 30px;
  left: -20px;
  background-color: var(--accent-color);
  color: var(--contrast-color);
  padding: 15px 25px;
  border-radius: 8px;
  box-shadow: 0 10px 20px rgba(0, 0, 0, 0.15);
}

.leadership .intro-image .experience-badge .years {
  display: block;
  font-size: 2.2rem;
  font-weight: 700;
  line-height: 1.1;
}

.leadership .intro-image .experience-badge .text {
  display: block;
  font-size: 0.9rem;
  font-weight: 500;
  max-width: 140px;
}

.leadership .highlights {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}

.leadership .highlights .highlight-item {
  display: flex;
  gap: 1.25rem;
  align-items: flex-start;
}

.leadership .highlights .highlight-item .icon-box {
  width: 50px;
  height: 50px;
  background-color: color-mix(in srgb, var(--accent-color), transparent 85%);
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.leadership .highlights .highlight-item .icon-box i {
  color: var(--accent-color);
  font-size: 1.5rem;
}

.leadership .highlights .highlight-item .content h2 {
  font-size: 30px;
  text-transform: uppercase;
  font-weight: 600;
  margin-bottom: 0.5rem;
}

.leadership .highlights .highlight-item .content p {
  font-size: 18px;
  line-height: 1.6;
  margin-bottom: 0;
}

.leadership .leadership-section {
  margin-top: 2rem;
}

.leadership .leadership-section .section-header {
  max-width: 700px;
  margin: 0 auto 3rem;
}

.leadership .leadership-section .section-header .description {
  margin-bottom: 0;
}

.leadership .team-card {
  height: 380px;
  margin-bottom: 15px;
  perspective: 1000px;
  border: 1px solid color-mix(in srgb, var(--default-color), transparent 90%);
  border-radius: 12px;
  overflow: hidden;
}

.leadership .team-card .card-inner {
  position: relative;
  width: 100%;
  height: 100%;
  text-align: center;
  overflow: hidden;
}

.leadership .team-card .card-front,
.leadership .team-card .card-back {
  position: absolute;
  width: 100%;
  height: 100%;
  border-radius: 12px;
  overflow: hidden;
}

.leadership .team-card .card-front {
  background-color: var(--surface-color);
  box-shadow: 0 5px 20px rgba(0, 0, 0, 0.08);
  z-index: 1;
}

.leadership .team-card .card-front .member-image {
  height: 280px;
  overflow: hidden;
}

.leadership .team-card .card-front .member-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s;
}

.leadership .team-card .card-front .member-info {
  padding: 15px;
}

.leadership .team-card .card-front .member-info h4 {
  font-size: 1.15rem;
  font-weight: 700;
  margin-bottom: 3px;
}

.leadership .team-card .card-front .member-info p {
  color: var(--accent-color);
  font-size: 0.9rem;
  font-weight: 500;
  margin: 0;
}

.leadership .team-card .card-back {
  background: var(--surface-color);
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  padding: 25px;
  bottom: -100%;
  z-index: 2;
  transition: bottom 0.3s ease-in-out;
}

.leadership .team-card .card-back h4 {
  font-size: 1.25rem;
  margin-bottom: 5px;
}

.leadership .team-card .card-back .position {
  color: color-mix(in srgb, var(--default-color), transparent 20%);
  font-size: 1rem;
  font-weight: 600;
  margin-bottom: 20px;
}

.leadership .team-card .card-back .bio {
  font-size: 0.9rem;
  line-height: 1.6;
  margin-bottom: 20px;
}

.leadership .team-card .card-back .social-links {
  display: flex;
  gap: 10px;
}

.leadership .team-card .card-back .social-links a {
  width: 40px;
  height: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  background-color: rgba(255, 255, 255, 0.15);
  border-radius: 50%;
  color: var(--contrast-color);
  font-size: 1.1rem;
  transition: all 0.3s;
}

.leadership .team-card .card-back .social-links a:hover {
  background-color: var(--accent-color);
  transform: translateY(-3px);
}

.leadership .team-card:hover .card-back {
  bottom: 0;
}

@media (max-width: 1199px) {
  .leadership .team-card {
    height: 360px;
  }
}

@media (max-width: 991px) {
  .leadership .title {
    font-size: 2.2rem;
  }
  .leadership .intro-image .experience-badge {
    bottom: 20px;
    left: -10px;
    padding: 12px 20px;
  }
  .leadership .intro-image .experience-badge .years {
    font-size: 1.8rem;
  }
  .leadership .intro-image .experience-badge .text {
    font-size: 0.8rem;
  }
  .leadership .team-card {
    height: 380px;
  }
}

@media (max-width: 767px) {
  .leadership .intro-wrapper {
    margin-bottom: 3rem;
  }
  .leadership .title {
    font-size: 1.8rem;
  }
  .leadership .description {
    font-size: 1rem;
  }
  .leadership .highlights .highlight-item .icon-box {
    width: 45px;
    height: 45px;
  }
  .leadership .leadership-section .section-header {
    margin-bottom: 2rem;
  }
}

@media (max-width: 575px) {
  .leadership .team-card {
    height: 360px;
  }
}

@media (max-width: 1160px) {
  .history .about-image .mission-vision {
    grid-template-columns: 1fr;
  }
  .history .about-content p {
    font-size: 16px;
  }
  .history .core-values .value-card p {
    font-size: 16px;
  }
  .leadership .highlights .highlight-item .content h2 {
    font-size: 24px;
  }
  .leadership .highlights .highlight-item .content p {
    font-size: 16px;
  }
}

/*--------------------------------------------------------------
# Contact Section
--------------------------------------------------------------*/

.contact .contact-main-wrapper {
  position: relative;
  display: grid;
  grid-template-columns: 1fr;
  gap: 30px;
}

@media (min-width: 992px) {
  .contact .contact-main-wrapper {
    grid-template-columns: 45% 55%;
    min-height: 600px;
  }
}

.contact .map-wrapper {
  height: 300px;
  width: 100%;
  border-radius: 16px;
  overflow: hidden;
}

@media (min-width: 992px) {
  .contact .map-wrapper {
    height: 100%;
    position: sticky;
    top: 100px;
  }
}

.contact .contact-content {
  display: flex;
  flex-direction: column;
  gap: 30px;
}

.contact .contact-cards-container {
  display: grid;
  grid-template-columns: 1fr;
  gap: 15px;
}

@media (min-width: 576px) {
  .contact .contact-cards-container {
    grid-template-columns: repeat(2, 1fr);
  }
}

.contact .contact-card {
  background-color: var(--surface-color);
  padding: 20px;
  display: flex;
  align-items: flex-start;
  gap: 15px;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.04);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.contact .contact-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.08);
}

.contact .contact-card .icon-box {
  width: 50px;
  height: 50px;
  flex-shrink: 0;
  background-color: color-mix(in srgb, var(--accent-color), transparent 90%);
  display: flex;
  justify-content: center;
  align-items: center;
}

.contact .contact-card .icon-box i {
  font-size: 22px;
  color: var(--accent-color);
}

.contact .contact-card .contact-text h4 {
  font-size: 22px;
  text-transform: uppercase;
  font-weight: 600;
  margin-bottom: 8px;
  color: var(--heading-color);
}

.contact .contact-card .contact-text p {
  font-size: 14px;
  line-height: 1.5;
  color: var(--default-color);
  margin-bottom: 0;
}

.contact .contact-form-container {
  background-color: var(--surface-color);
  padding: 30px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
}

.contact .contact-form-container h3 {
  font-size: 22px;
  font-weight: 700;
  margin-bottom: 15px;
  color: var(--heading-color);
  position: relative;
  padding-left: 15px;
  text-transform: uppercase;
}

.contact .contact-form-container h3:before {
  content: "";
  position: absolute;
  left: 0;
  top: 0;
  height: 100%;
  width: 4px;
  background-color: var(--accent-color);
  border-radius: 2px;
}

.contact .contact-form-container > p {
  font-size: 15px;
  line-height: 1.6;
  margin-bottom: 25px;
  color: var(--default-color);
}

.contact .contact-form-container .php-email-form .form-control {
  height: auto;
  padding: 14px 20px;
  border-radius: 0px;
  background-color: color-mix(in srgb, var(--background-color), #f5f8fd 30%);
  border: 1px solid color-mix(in srgb, var(--default-color), transparent 90%);
  color: var(--default-color);
  transition: all 0.3s ease;
}

.contact .contact-form-container .php-email-form .form-control:focus {
  background-color: var(--surface-color);
  border-color: var(--accent-color);
  box-shadow: 0 0 0 3px color-mix(in srgb, var(--accent-color), transparent 85%);
}

.contact .contact-form-container .php-email-form .form-control::placeholder {
  color: color-mix(in srgb, var(--default-color), transparent 60%);
}

.contact .contact-form-container .php-email-form textarea.form-control {
  min-height: 140px;
}

.contact .contact-form-container .php-email-form .form-submit {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 20px;
  margin-top: 10px;
}

@media (max-width: 576px) {
  .contact .contact-form-container .php-email-form .form-submit {
    flex-direction: column;
    align-items: flex-start;
  }
}

.contact .contact-form-container .php-email-form button {
  background-color: var(--accent-color);
  color: var(--contrast-color);
  border: none;
  padding: 12px 28px;
  font-weight: 600;
  font-size: 15px;
  letter-spacing: 0.5px;
  transition: all 0.3s ease;
}

.contact .contact-form-container .php-email-form button:hover {
  background-color: color-mix(in srgb, var(--accent-color), #000 15%);
  transform: translateY(-2px);
  box-shadow: 0 6px 15px
    color-mix(in srgb, var(--accent-color), transparent 75%);
}

.contact .contact-form-container .php-email-form .social-links {
  display: flex;
  gap: 12px;
}

.contact .contact-form-container .php-email-form .social-links a {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 38px;
  height: 38px;
  border-radius: 50%;
  background-color: color-mix(in srgb, var(--background-color), #f5f8fd 20%);
  color: var(--heading-color);
  font-size: 16px;
  transition: all 0.3s ease;
}

.contact .contact-form-container .php-email-form .social-links a:hover {
  background-color: var(--accent-color);
  color: var(--contrast-color);
  transform: translateY(-3px);
}

@media (max-width: 768px) {
  .contact .contact-form-container {
    padding: 25px 20px;
  }
  .contact .contact-form-container h3 {
    font-size: 22px;
  }
}

/*--------------------------------------------------------------
# Register Section
--------------------------------------------------------------*/

.register .registration-form-wrapper {
  position: relative;
  background-color: var(--surface-color);
  border-radius: 20px;
  padding: 3rem 2rem;
  margin: 60px 0;
  overflow: hidden;
  box-shadow: 0 15px 35px rgba(0, 0, 0, 0.05);
}

.register .decorative-elements {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 0;
  overflow: hidden;
  pointer-events: none;
}

.register .decorative-elements .circle {
  position: absolute;
  border-radius: 50%;
}

.register .decorative-elements .circle.circle-1 {
  top: -50px;
  right: -50px;
  width: 200px;
  height: 200px;
  background: linear-gradient(
    135deg,
    color-mix(in srgb, var(--accent-color), transparent 85%),
    color-mix(in srgb, var(--accent-color), transparent 95%)
  );
}

.register .decorative-elements .circle.circle-2 {
  bottom: -80px;
  left: -80px;
  width: 250px;
  height: 250px;
  background: linear-gradient(
    135deg,
    color-mix(in srgb, var(--heading-color), transparent 90%),
    color-mix(in srgb, var(--heading-color), transparent 97%)
  );
}

.register .decorative-elements .circle.circle-3 {
  top: 40%;
  right: 10%;
  width: 60px;
  height: 60px;
  background: linear-gradient(
    135deg,
    color-mix(in srgb, var(--accent-color), transparent 70%),
    color-mix(in srgb, var(--accent-color), transparent 90%)
  );
}

.register .decorative-elements .square {
  position: absolute;
  transform: rotate(45deg);
}

.register .decorative-elements .square.square-1 {
  top: 20%;
  left: 5%;
  width: 40px;
  height: 40px;
  background: linear-gradient(
    135deg,
    color-mix(in srgb, var(--accent-color), transparent 80%),
    color-mix(in srgb, var(--accent-color), transparent 95%)
  );
}

.register .decorative-elements .square.square-2 {
  bottom: 15%;
  right: 10%;
  width: 60px;
  height: 60px;
  background: linear-gradient(
    135deg,
    color-mix(in srgb, var(--heading-color), transparent 85%),
    color-mix(in srgb, var(--heading-color), transparent 95%)
  );
}

.register .form-header {
  position: relative;
  z-index: 1;
  margin-bottom: 2.5rem;
}

.register .form-header h2 {
  font-size: 2.2rem;
  font-weight: 700;
  margin-bottom: 0.75rem;
  background: linear-gradient(
    135deg,
    var(--heading-color),
    var(--accent-color)
  );
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.register .form-header p {
  font-size: 1.1rem;
  color: color-mix(in srgb, var(--default-color), transparent 30%);
}

.register form {
  position: relative;
  z-index: 1;
}

.register form .form-floating {
  margin-bottom: 1rem;
}

.register form .form-floating .form-control,
.register form .form-floating .form-select {
  height: 60px;
  padding: 1rem 1rem 0.5rem;
  border-radius: 12px;
  border: 2px solid color-mix(in srgb, var(--default-color), transparent 85%);
  background-color: color-mix(in srgb, var(--surface-color), transparent 30%);
  backdrop-filter: blur(5px);
  transition: all 0.3s;
  color: var(--default-color);
}

.register form .form-floating .form-control:focus,
.register form .form-floating .form-select:focus {
  border-color: var(--accent-color);
  box-shadow: none;
}

.register form .form-floating .form-control:focus ~ label,
.register form .form-floating .form-select:focus ~ label {
  color: var(--accent-color);
}

.register form .form-floating .form-control:focus ~ label:after,
.register form .form-floating .form-select:focus ~ label:after {
  background: transparent;
}

.register form .form-floating .form-control::placeholder,
.register form .form-floating .form-select::placeholder {
  color: transparent;
}

.register form .form-floating .form-control:not(:placeholder-shown) ~ label,
.register form .form-floating .form-select:not(:placeholder-shown) ~ label {
  color: color-mix(in srgb, var(--default-color), transparent 40%);
}

.register
  form
  .form-floating
  .form-control:not(:placeholder-shown)
  ~ label:after,
.register
  form
  .form-floating
  .form-select:not(:placeholder-shown)
  ~ label:after {
  background: transparent;
}

.register form .form-floating label {
  padding: 1rem 1rem 0;
  color: color-mix(in srgb, var(--default-color), transparent 40%);
  font-weight: 500;
}

.register form .form-floating label:after {
  background: transparent;
}

.register form .form-check {
  padding-left: 1.8rem;
  margin-top: 1rem;
}

.register form .form-check .form-check-input {
  width: 1.2rem;
  height: 1.2rem;
  margin-left: -1.8rem;
  margin-top: 0.15rem;
  border: 2px solid color-mix(in srgb, var(--default-color), transparent 70%);
}

.register form .form-check .form-check-input:checked {
  background-color: var(--accent-color);
  border-color: var(--accent-color);
}

.register form .form-check .form-check-input:focus {
  border-color: var(--accent-color);
  box-shadow: 0 0 0 0.25rem
    color-mix(in srgb, var(--accent-color), transparent 85%);
}

.register form .form-check .form-check-label {
  font-size: 0.9rem;
  color: color-mix(in srgb, var(--default-color), transparent 25%);
}

.register form .form-check .form-check-label a {
  color: var(--accent-color);
  text-decoration: none;
  font-weight: 600;
}

.register form .form-check .form-check-label a:hover {
  text-decoration: underline;
}

.register .btn-register {
  position: relative;
  height: 56px;
  font-size: 1.1rem;
  font-weight: 600;
  border-radius: 12px;
  background: linear-gradient(
    135deg,
    var(--accent-color),
    color-mix(in srgb, var(--accent-color), var(--heading-color) 30%)
  );
  color: var(--contrast-color);
  border: none;
  overflow: hidden;
  transition: all 0.3s;
}

.register .btn-register::before {
  content: "";
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(
    90deg,
    transparent,
    rgba(255, 255, 255, 0.2),
    transparent
  );
  transition: all 0.6s;
}

.register .btn-register:hover {
  transform: translateY(-3px);
  box-shadow: 0 10px 20px
    color-mix(in srgb, var(--accent-color), transparent 85%);
}

.register .btn-register:hover::before {
  left: 100%;
}

.register .btn-register:active {
  transform: translateY(0);
}

.register .login-link {
  margin-top: 1.5rem;
}

.register .login-link p {
  font-size: 0.95rem;
  color: color-mix(in srgb, var(--default-color), transparent 30%);
}

.register .login-link p a {
  color: var(--accent-color);
  font-weight: 600;
  text-decoration: none;
}

.register .login-link p a:hover {
  text-decoration: underline;
}

.register .social-login {
  position: relative;
  z-index: 1;
  margin-top: 2rem;
}

.register .social-login .divider {
  position: relative;
  text-align: center;
  margin-bottom: 1.5rem;
}

.register .social-login .divider::before {
  content: "";
  position: absolute;
  top: 50%;
  left: 0;
  right: 0;
  height: 1px;
  background-color: color-mix(in srgb, var(--default-color), transparent 85%);
}

.register .social-login .divider span {
  position: relative;
  background-color: var(--surface-color);
  padding: 0 1rem;
  font-size: 0.9rem;
  color: color-mix(in srgb, var(--default-color), transparent 40%);
}

.register .social-login .social-buttons {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1rem;
}

.register .social-login .social-buttons .btn-social {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  height: 48px;
  border-radius: 12px;
  background-color: var(--surface-color);
  border: 2px solid color-mix(in srgb, var(--default-color), transparent 85%);
  color: var(--default-color);
  font-weight: 500;
  transition: all 0.3s;
  text-decoration: none;
}

.register .social-login .social-buttons .btn-social i {
  font-size: 1.2rem;
}

.register .social-login .social-buttons .btn-social i.bi-google {
  color: #db4437;
}

.register .social-login .social-buttons .btn-social i.bi-facebook {
  color: #4267b2;
}

.register .social-login .social-buttons .btn-social i.bi-apple {
  color: #000000;
}

.register .social-login .social-buttons .btn-social:hover {
  transform: translateY(-3px);
  border-color: color-mix(in srgb, var(--default-color), transparent 70%);
  background-color: color-mix(in srgb, var(--surface-color), transparent 50%);
}

.register .social-login .social-buttons .btn-social:active {
  transform: translateY(0);
}

@media (max-width: 767.98px) {
  .register {
    padding: 2rem 1.5rem;
    margin: 40px 0;
  }
  .register .form-header h2 {
    font-size: 1.8rem;
  }
  .register .form-header p {
    font-size: 1rem;
  }
  .register .social-buttons {
    grid-template-columns: 1fr;
  }
}

/*--------------------------------------------------------------
# Account Section
--------------------------------------------------------------*/

.account .mobile-menu .mobile-menu-toggle {
  width: 100%;
  background-color: var(--surface-color);
  border: 1px solid rgba(0, 0, 0, 0.08);
  border-radius: 16px;
  padding: 14px 20px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  font-weight: 500;
  color: var(--heading-color);
  transition: all 0.3s ease;
}

.account .mobile-menu .mobile-menu-toggle i {
  font-size: 20px;
}

.account .mobile-menu .mobile-menu-toggle:hover {
  background-color: color-mix(in srgb, var(--accent-color), transparent 92%);
}

.account .profile-menu {
  background-color: var(--surface-color);
  border-radius: 24px;
  padding: 24px;
  height: 100%;
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.04);
}

.account .profile-menu .user-info {
  text-align: center;
  padding-bottom: 24px;
  margin-bottom: 24px;
  border-bottom: 1px solid rgba(0, 0, 0, 0.06);
}

.account .profile-menu .user-info .user-avatar {
  position: relative;
  width: 96px;
  height: 96px;
  margin: 0 auto 16px;
}

.account .profile-menu .user-info .user-avatar img {
  width: 100%;
  height: 100%;
  border-radius: 50%;
  object-fit: cover;
  border: 4px solid var(--surface-color);
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
}

.account .profile-menu .user-info .user-avatar .status-badge {
  position: absolute;
  bottom: 0;
  right: 0;
  width: 32px;
  height: 32px;
  background-color: var(--accent-color);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  border: 4px solid var(--surface-color);
}

.account .profile-menu .user-info .user-avatar .status-badge i {
  color: var(--contrast-color);
  font-size: 14px;
}

.account .profile-menu .user-info h4 {
  margin: 0 0 8px;
  font-size: 18px;
  font-weight: 600;
}

.account .profile-menu .user-info .user-status {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 6px 12px;
  background-color: color-mix(in srgb, var(--accent-color), transparent 92%);
  color: var(--accent-color);
  border-radius: 20px;
  font-size: 13px;
}

.account .profile-menu .user-info .user-status i {
  font-size: 14px;
}

.account .profile-menu .menu-nav .nav-link {
  display: flex;
  align-items: center;
  padding: 12px 16px;
  border-radius: 12px;
  color: var(--default-color);
  margin-bottom: 4px;
  transition: all 0.3s ease;
}

.account .profile-menu .menu-nav .nav-link i {
  font-size: 20px;
  margin-right: 12px;
  color: color-mix(in srgb, var(--default-color), transparent 40%);
  transition: all 0.3s ease;
}

.account .profile-menu .menu-nav .nav-link span {
  flex: 1;
}

.account .profile-menu .menu-nav .nav-link .badge {
  font-size: 14px;
  font-weight: 600;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-left: auto;
  flex: 0;
}

.account .profile-menu .menu-nav .nav-link .badge {
  background-color: var(--accent-color);
  color: var(--contrast-color);
}

.account .profile-menu .menu-nav .nav-link:hover {
  background-color: color-mix(in srgb, var(--accent-color), transparent 92%);
  color: var(--accent-color);
}

.account .profile-menu .menu-nav .nav-link:hover i {
  color: var(--accent-color);
}

.account .profile-menu .menu-nav .nav-link.active {
  background-color: var(--accent-color);
  color: var(--contrast-color);
  font-weight: 500;
}

.account .profile-menu .menu-nav .nav-link.active i {
  color: var(--contrast-color);
}

.account .profile-menu .menu-nav .nav-link.active .badge {
  background-color: var(--contrast-color);
  color: var(--accent-color);
}

.account .profile-menu .menu-footer {
  margin-top: 32px;
  padding-top: 24px;
  border-top: 1px solid rgba(0, 0, 0, 0.06);
}

.account .profile-menu .menu-footer a {
  display: flex;
  align-items: center;
  padding: 12px 16px;
  color: var(--default-color);
  border-radius: 12px;
  margin-bottom: 4px;
  transition: all 0.3s ease;
}

.account .profile-menu .menu-footer a i {
  font-size: 20px;
  margin-right: 12px;
  color: color-mix(in srgb, var(--default-color), transparent 40%);
  transition: all 0.3s ease;
}

.account .profile-menu .menu-footer a:hover {
  background-color: color-mix(in srgb, var(--accent-color), transparent 92%);
  color: var(--accent-color);
}

.account .profile-menu .menu-footer a:hover i {
  color: var(--accent-color);
}

.account .profile-menu .menu-footer a.logout-link {
  color: #ef4444;
}

.account .profile-menu .menu-footer a.logout-link i {
  color: #ef4444;
}

.account .profile-menu .menu-footer a.logout-link:hover {
  background-color: rgba(239, 68, 68, 0.08);
}

.account .content-area {
  background-color: var(--surface-color);
  border-radius: 24px;
  padding: 24px;
  height: 100%;
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.04);
}

.account .content-area .section-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 24px;
  flex-wrap: wrap;
  gap: 16px;
}

.account .content-area .section-header h2 {
  margin: 0;
  font-size: 24px;
  font-weight: 600;
}

.account .content-area .section-header .header-actions {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
}

.account .content-area .section-header .header-actions .search-box {
  position: relative;
}

.account .content-area .section-header .header-actions .search-box i {
  position: absolute;
  left: 16px;
  top: 50%;
  transform: translateY(-50%);
  color: color-mix(in srgb, var(--default-color), transparent 40%);
  font-size: 16px;
}

.account .content-area .section-header .header-actions .search-box input {
  width: 240px;
  height: 44px;
  padding: 0 16px 0 44px;
  border: 1px solid rgba(0, 0, 0, 0.08);
  border-radius: 12px;
  font-size: 14px;
  transition: all 0.3s ease;
}

.account .content-area .section-header .header-actions .search-box input:focus {
  outline: none;
  border-color: var(--accent-color);
  box-shadow: 0 0 0 4px color-mix(in srgb, var(--accent-color), transparent 90%);
}

.account .content-area .section-header .header-actions .filter-btn {
  height: 44px;
  padding: 0 20px;
  background-color: var(--surface-color);
  border: 1px solid rgba(0, 0, 0, 0.08);
  border-radius: 12px;
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 14px;
  color: var(--default-color);
  transition: all 0.3s ease;
}

.account .content-area .section-header .header-actions .filter-btn i {
  font-size: 16px;
}

.account .content-area .section-header .header-actions .filter-btn:hover {
  background-color: color-mix(in srgb, var(--accent-color), transparent 92%);
  color: var(--accent-color);
}

.account .content-area .orders-grid {
  display: grid;
  gap: 20px;
  margin-bottom: 32px;
}

.account .content-area .orders-grid .order-card {
  background-color: var(--surface-color);
  border: 1px solid rgba(0, 0, 0, 0.08);
  border-radius: 16px;
  padding: 20px;
  transition: all 0.3s ease;
}

.account .content-area .orders-grid .order-card:hover {
  border-color: var(--accent-color);
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.08);
}

.account .content-area .orders-grid .order-card .order-header {
  display: flex;
  justify-content: space-between;
  margin-bottom: 20px;
  padding-bottom: 16px;
  border-bottom: 1px dashed rgba(0, 0, 0, 0.08);
}

.account .content-area .orders-grid .order-card .order-header .order-id .label {
  font-size: 13px;
  color: color-mix(in srgb, var(--default-color), transparent 40%);
  margin-right: 6px;
}

.account .content-area .orders-grid .order-card .order-header .order-id .value {
  font-weight: 500;
  font-family: var(--heading-font);
}

.account .content-area .orders-grid .order-card .order-header .order-date {
  font-size: 13px;
  color: color-mix(in srgb, var(--default-color), transparent 40%);
}

.account .content-area .orders-grid .order-card .tracking-info,
.account .content-area .orders-grid .order-card .order-details {
  margin-top: 20px;
  background-color: #fafafa;
  border-radius: 12px;
  overflow: hidden;
  transition: all 0.3s ease;
}

.account
  .content-area
  .orders-grid
  .order-card
  .tracking-info.collapse:not(.show),
.account
  .content-area
  .orders-grid
  .order-card
  .order-details.collapse:not(.show) {
  display: none;
}

.account .content-area .orders-grid .order-card .tracking-info.collapsing,
.account .content-area .orders-grid .order-card .order-details.collapsing {
  height: 0;
  overflow: hidden;
  transition: height 0.35s ease;
}

.account
  .content-area
  .orders-grid
  .order-card
  .tracking-info
  .tracking-timeline {
  position: relative;
  padding: 24px 24px 24px 56px;
}

.account
  .content-area
  .orders-grid
  .order-card
  .tracking-info
  .tracking-timeline:before {
  content: "";
  position: absolute;
  left: 39px;
  top: 24px;
  bottom: 24px;
  width: 2px;
  background-color: #e5e7eb;
}

.account
  .content-area
  .orders-grid
  .order-card
  .tracking-info
  .tracking-timeline
  .timeline-item {
  position: relative;
  padding-bottom: 24px;
}

.account
  .content-area
  .orders-grid
  .order-card
  .tracking-info
  .tracking-timeline
  .timeline-item:last-child {
  padding-bottom: 0;
}

.account
  .content-area
  .orders-grid
  .order-card
  .tracking-info
  .tracking-timeline
  .timeline-item
  .timeline-icon {
  position: absolute;
  left: -32px;
  width: 32px;
  height: 32px;
  background-color: #ffffff;
  border: 2px solid #e5e7eb;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 1;
}

.account
  .content-area
  .orders-grid
  .order-card
  .tracking-info
  .tracking-timeline
  .timeline-item
  .timeline-icon
  i {
  font-size: 14px;
  color: #9ca3af;
}

.account
  .content-area
  .orders-grid
  .order-card
  .tracking-info
  .tracking-timeline
  .timeline-item
  .timeline-content {
  padding-left: 16px;
}

.account
  .content-area
  .orders-grid
  .order-card
  .tracking-info
  .tracking-timeline
  .timeline-item
  .timeline-content
  h5 {
  margin: 0 0 4px;
  font-size: 16px;
  font-weight: 600;
}

.account
  .content-area
  .orders-grid
  .order-card
  .tracking-info
  .tracking-timeline
  .timeline-item
  .timeline-content
  p {
  margin: 0 0 4px;
  font-size: 14px;
  color: color-mix(in srgb, var(--default-color), transparent 30%);
}

.account
  .content-area
  .orders-grid
  .order-card
  .tracking-info
  .tracking-timeline
  .timeline-item
  .timeline-content
  .timeline-date {
  font-size: 13px;
  color: color-mix(in srgb, var(--default-color), transparent 40%);
}

.account
  .content-area
  .orders-grid
  .order-card
  .tracking-info
  .tracking-timeline
  .timeline-item
  .timeline-content
  .shipping-info {
  margin-top: 8px;
  padding: 8px 12px;
  background-color: #ffffff;
  border-radius: 8px;
  font-size: 13px;
}

.account
  .content-area
  .orders-grid
  .order-card
  .tracking-info
  .tracking-timeline
  .timeline-item
  .timeline-content
  .shipping-info
  .tracking-number {
  font-family: var(--heading-font);
  font-weight: 500;
}

.account
  .content-area
  .orders-grid
  .order-card
  .tracking-info
  .tracking-timeline
  .timeline-item.completed
  .timeline-icon {
  background-color: #f0fdf4;
  border-color: #22c55e;
}

.account
  .content-area
  .orders-grid
  .order-card
  .tracking-info
  .tracking-timeline
  .timeline-item.completed
  .timeline-icon
  i {
  color: #22c55e;
}

.account
  .content-area
  .orders-grid
  .order-card
  .tracking-info
  .tracking-timeline
  .timeline-item.active
  .timeline-icon {
  background-color: #fff7ed;
  border-color: #f97316;
}

.account
  .content-area
  .orders-grid
  .order-card
  .tracking-info
  .tracking-timeline
  .timeline-item.active
  .timeline-icon
  i {
  color: #f97316;
}

.account
  .content-area
  .orders-grid
  .order-card
  .tracking-info
  .tracking-timeline
  .timeline-item.active
  .timeline-content
  h5 {
  color: #f97316;
}

.account
  .content-area
  .orders-grid
  .order-card
  .order-details
  .details-content {
  padding: 24px;
}

.account
  .content-area
  .orders-grid
  .order-card
  .order-details
  .details-content
  .detail-section {
  margin-bottom: 24px;
  padding-bottom: 24px;
  border-bottom: 1px solid rgba(0, 0, 0, 0.06);
}

.account
  .content-area
  .orders-grid
  .order-card
  .order-details
  .details-content
  .detail-section:last-child {
  margin-bottom: 0;
  padding-bottom: 0;
  border-bottom: none;
}

.account
  .content-area
  .orders-grid
  .order-card
  .order-details
  .details-content
  .detail-section
  h5 {
  margin: 0 0 16px;
  font-size: 16px;
  font-weight: 600;
}

.account
  .content-area
  .orders-grid
  .order-card
  .order-details
  .details-content
  .detail-section
  .info-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 16px;
}

.account
  .content-area
  .orders-grid
  .order-card
  .order-details
  .details-content
  .detail-section
  .info-grid
  .info-item
  .label {
  display: block;
  font-size: 13px;
  color: color-mix(in srgb, var(--default-color), transparent 40%);
  margin-bottom: 4px;
}

.account
  .content-area
  .orders-grid
  .order-card
  .order-details
  .details-content
  .detail-section
  .info-grid
  .info-item
  .value {
  font-size: 14px;
  font-weight: 500;
}

.account
  .content-area
  .orders-grid
  .order-card
  .order-details
  .details-content
  .detail-section
  .order-items
  .item {
  display: flex;
  align-items: center;
  gap: 16px;
  padding: 16px;
  background-color: #ffffff;
  border-radius: 12px;
  margin-bottom: 12px;
}

.account
  .content-area
  .orders-grid
  .order-card
  .order-details
  .details-content
  .detail-section
  .order-items
  .item:last-child {
  margin-bottom: 0;
}

.account
  .content-area
  .orders-grid
  .order-card
  .order-details
  .details-content
  .detail-section
  .order-items
  .item
  img {
  width: 64px;
  height: 64px;
  border-radius: 8px;
  object-fit: cover;
}

.account
  .content-area
  .orders-grid
  .order-card
  .order-details
  .details-content
  .detail-section
  .order-items
  .item
  .item-info {
  flex: 1;
  min-width: 0;
}

.account
  .content-area
  .orders-grid
  .order-card
  .order-details
  .details-content
  .detail-section
  .order-items
  .item
  .item-info
  h6 {
  margin: 0 0 4px;
  font-size: 14px;
  font-weight: 500;
}

.account
  .content-area
  .orders-grid
  .order-card
  .order-details
  .details-content
  .detail-section
  .order-items
  .item
  .item-info
  .item-meta {
  display: flex;
  gap: 12px;
  font-size: 13px;
  color: color-mix(in srgb, var(--default-color), transparent 40%);
}

.account
  .content-area
  .orders-grid
  .order-card
  .order-details
  .details-content
  .detail-section
  .order-items
  .item
  .item-price {
  font-size: 14px;
  font-weight: 600;
  color: var(--heading-color);
}

.account
  .content-area
  .orders-grid
  .order-card
  .order-details
  .details-content
  .detail-section
  .price-breakdown {
  background-color: #ffffff;
  border-radius: 12px;
  padding: 16px;
}

.account
  .content-area
  .orders-grid
  .order-card
  .order-details
  .details-content
  .detail-section
  .price-breakdown
  .price-row {
  display: flex;
  justify-content: space-between;
  padding: 8px 0;
  font-size: 14px;
}

.account
  .content-area
  .orders-grid
  .order-card
  .order-details
  .details-content
  .detail-section
  .price-breakdown
  .price-row:not(.total) {
  color: color-mix(in srgb, var(--default-color), transparent 30%);
}

.account
  .content-area
  .orders-grid
  .order-card
  .order-details
  .details-content
  .detail-section
  .price-breakdown
  .price-row.total {
  padding-top: 12px;
  margin-top: 4px;
  border-top: 1px solid rgba(0, 0, 0, 0.06);
  font-weight: 600;
  color: var(--accent-color);
}

.account
  .content-area
  .orders-grid
  .order-card
  .order-details
  .details-content
  .detail-section
  .address-info {
  background-color: #ffffff;
  border-radius: 12px;
  padding: 16px;
}

.account
  .content-area
  .orders-grid
  .order-card
  .order-details
  .details-content
  .detail-section
  .address-info
  p {
  margin: 0;
  font-size: 14px;
  line-height: 1.6;
}

.account
  .content-area
  .orders-grid
  .order-card
  .order-details
  .details-content
  .detail-section
  .address-info
  p.contact {
  margin-top: 8px;
  color: color-mix(in srgb, var(--default-color), transparent 30%);
}

.account .content-area .orders-grid .order-card .order-content {
  margin-bottom: 20px;
}

.account .content-area .orders-grid .order-card .order-content .product-grid {
  display: flex;
  gap: 12px;
  margin-bottom: 16px;
  overflow-x: auto;
  padding-bottom: 4px;
  -ms-overflow-style: none;
  scrollbar-width: none;
}

.account
  .content-area
  .orders-grid
  .order-card
  .order-content
  .product-grid::-webkit-scrollbar {
  display: none;
}

.account
  .content-area
  .orders-grid
  .order-card
  .order-content
  .product-grid
  img {
  width: 64px;
  height: 64px;
  border-radius: 8px;
  object-fit: cover;
  border: 1px solid rgba(0, 0, 0, 0.04);
}

.account
  .content-area
  .orders-grid
  .order-card
  .order-content
  .product-grid
  .more-items {
  min-width: 64px;
  height: 64px;
  border-radius: 8px;
  background-color: rgba(0, 0, 0, 0.04);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 13px;
  font-weight: 500;
  color: color-mix(in srgb, var(--default-color), transparent 20%);
}

.account
  .content-area
  .orders-grid
  .order-card
  .order-content
  .order-info
  .info-row {
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 14px;
  margin-bottom: 8px;
}

.account
  .content-area
  .orders-grid
  .order-card
  .order-content
  .order-info
  .info-row:last-child {
  margin-bottom: 0;
}

.account
  .content-area
  .orders-grid
  .order-card
  .order-content
  .order-info
  .info-row
  span:first-child {
  color: color-mix(in srgb, var(--default-color), transparent 40%);
}

.account
  .content-area
  .orders-grid
  .order-card
  .order-content
  .order-info
  .info-row
  .status {
  padding: 4px 12px;
  border-radius: 20px;
  font-weight: 500;
}

.account
  .content-area
  .orders-grid
  .order-card
  .order-content
  .order-info
  .info-row
  .status.processing {
  background-color: #fff7ed;
  color: #f97316;
}

.account
  .content-area
  .orders-grid
  .order-card
  .order-content
  .order-info
  .info-row
  .status.shipped {
  background-color: #ecfeff;
  color: #06b6d4;
}

.account
  .content-area
  .orders-grid
  .order-card
  .order-content
  .order-info
  .info-row
  .status.delivered {
  background-color: #f0fdf4;
  color: #22c55e;
}

.account
  .content-area
  .orders-grid
  .order-card
  .order-content
  .order-info
  .info-row
  .status.cancelled {
  background-color: #fef2f2;
  color: #ef4444;
}

.account
  .content-area
  .orders-grid
  .order-card
  .order-content
  .order-info
  .info-row
  .price {
  font-weight: 600;
  color: var(--heading-color);
}

.account .content-area .orders-grid .order-card .order-footer {
  display: flex;
  gap: 12px;
}

.account .content-area .orders-grid .order-card .order-footer button {
  flex: 1;
  height: 40px;
  border-radius: 10px;
  font-size: 14px;
  font-weight: 500;
  transition: all 0.3s ease;
}

.account .content-area .orders-grid .order-card .order-footer button.btn-track {
  background-color: var(--accent-color);
  color: var(--contrast-color);
  border: none;
}

.account
  .content-area
  .orders-grid
  .order-card
  .order-footer
  button.btn-track:hover {
  background-color: color-mix(in srgb, var(--accent-color), transparent 15%);
}

.account
  .content-area
  .orders-grid
  .order-card
  .order-footer
  button.btn-details {
  background-color: color-mix(in srgb, var(--accent-color), transparent 92%);
  color: var(--accent-color);
  border: none;
}

.account
  .content-area
  .orders-grid
  .order-card
  .order-footer
  button.btn-details:hover {
  background-color: color-mix(in srgb, var(--accent-color), transparent 88%);
}

.account
  .content-area
  .orders-grid
  .order-card
  .order-footer
  button.btn-review {
  background-color: #f0fdf4;
  color: #22c55e;
  border: none;
}

.account
  .content-area
  .orders-grid
  .order-card
  .order-footer
  button.btn-review:hover {
  background-color: #dcfce7;
}

.account
  .content-area
  .orders-grid
  .order-card
  .order-footer
  button.btn-reorder {
  background-color: #fef2f2;
  color: #ef4444;
  border: none;
}

.account
  .content-area
  .orders-grid
  .order-card
  .order-footer
  button.btn-reorder:hover {
  background-color: #fee2e2;
}

.account .content-area .pagination-wrapper {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
}

.account .content-area .pagination-wrapper button {
  min-width: 40px;
  height: 40px;
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 14px;
  font-weight: 500;
  border: none;
  transition: all 0.3s ease;
  background-color: transparent;
  color: var(--default-color);
}

.account .content-area .pagination-wrapper button:hover:not(:disabled) {
  background-color: color-mix(in srgb, var(--accent-color), transparent 92%);
  color: var(--accent-color);
}

.account .content-area .pagination-wrapper button.active {
  background-color: var(--accent-color);
  color: var(--contrast-color);
}

.account .content-area .pagination-wrapper button:disabled {
  color: color-mix(in srgb, var(--default-color), transparent 60%);
  cursor: not-allowed;
}

.account .content-area .pagination-wrapper button i {
  font-size: 18px;
}

.account .content-area .pagination-wrapper .page-numbers {
  display: flex;
  align-items: center;
  gap: 8px;
}

.account .content-area .pagination-wrapper .page-numbers span {
  color: color-mix(in srgb, var(--default-color), transparent 40%);
}

@media (max-width: 991.98px) {
  .account .profile-menu {
    margin-bottom: 24px;
  }
}

@media (max-width: 767.98px) {
  .account .content-area {
    padding: 20px;
  }
  .account .content-area .section-header .header-actions {
    width: 100%;
  }
  .account .content-area .section-header .header-actions .search-box {
    flex: 1;
  }
  .account .content-area .section-header .header-actions .search-box input {
    width: 100%;
  }
}

.account .wishlist-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
  gap: 24px;
  margin-bottom: 32px;
}

.account .wishlist-grid .wishlist-card {
  background-color: var(--surface-color);
  border: 1px solid rgba(0, 0, 0, 0.08);
  border-radius: 16px;
  overflow: hidden;
  transition: all 0.3s ease;
}

.account .wishlist-grid .wishlist-card:hover {
  border-color: var(--accent-color);
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.08);
}

.account .wishlist-grid .wishlist-card:hover .wishlist-image img {
  transform: scale(1.05);
}

.account .wishlist-grid .wishlist-card:hover .wishlist-image .btn-remove {
  opacity: 1;
  transform: translateY(0);
}

.account .wishlist-grid .wishlist-card .wishlist-image {
  position: relative;
  height: 280px;
  overflow: hidden;
}

.account .wishlist-grid .wishlist-card .wishlist-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
}

.account .wishlist-grid .wishlist-card .wishlist-image .btn-remove {
  position: absolute;
  top: 12px;
  right: 12px;
  width: 32px;
  height: 32px;
  border-radius: 50%;
  background-color: rgba(255, 255, 255, 0.9);
  border: none;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #ef4444;
  opacity: 0;
  transform: translateY(-10px);
  transition: all 0.3s ease;
  z-index: 1;
}

.account .wishlist-grid .wishlist-card .wishlist-image .btn-remove:hover {
  background-color: #ef4444;
  color: #ffffff;
}

.account .wishlist-grid .wishlist-card .wishlist-image .sale-badge,
.account .wishlist-grid .wishlist-card .wishlist-image .out-of-stock-badge {
  position: absolute;
  top: 12px;
  left: 12px;
  padding: 4px 12px;
  border-radius: 20px;
  font-size: 13px;
  font-weight: 500;
}

.account .wishlist-grid .wishlist-card .wishlist-image .sale-badge {
  background-color: #fef2f2;
  color: #ef4444;
}

.account .wishlist-grid .wishlist-card .wishlist-image .out-of-stock-badge {
  background-color: #f3f4f6;
  color: #6b7280;
}

.account .wishlist-grid .wishlist-card .wishlist-content {
  padding: 20px;
}

.account .wishlist-grid .wishlist-card .wishlist-content h4 {
  margin: 0 0 12px;
  font-size: 16px;
  font-weight: 600;
  line-height: 1.4;
  display: -webkit-box;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

.account .wishlist-grid .wishlist-card .wishlist-content .product-meta {
  margin-bottom: 16px;
}

.account .wishlist-grid .wishlist-card .wishlist-content .product-meta .rating {
  display: flex;
  align-items: center;
  gap: 4px;
  margin-bottom: 8px;
}

.account
  .wishlist-grid
  .wishlist-card
  .wishlist-content
  .product-meta
  .rating
  i {
  color: #f59e0b;
  font-size: 14px;
}

.account
  .wishlist-grid
  .wishlist-card
  .wishlist-content
  .product-meta
  .rating
  span {
  font-size: 13px;
  color: color-mix(in srgb, var(--default-color), transparent 40%);
}

.account .wishlist-grid .wishlist-card .wishlist-content .product-meta .price {
  display: flex;
  align-items: center;
  gap: 8px;
}

.account
  .wishlist-grid
  .wishlist-card
  .wishlist-content
  .product-meta
  .price
  .current {
  font-size: 18px;
  font-weight: 600;
  color: var(--heading-color);
}

.account
  .wishlist-grid
  .wishlist-card
  .wishlist-content
  .product-meta
  .price
  .original {
  font-size: 14px;
  color: color-mix(in srgb, var(--default-color), transparent 40%);
  text-decoration: line-through;
}

.account .wishlist-grid .wishlist-card .wishlist-content .btn-add-cart,
.account .wishlist-grid .wishlist-card .wishlist-content .btn-notify {
  width: 100%;
  height: 40px;
  border-radius: 10px;
  font-size: 14px;
  font-weight: 500;
  transition: all 0.3s ease;
}

.account .wishlist-grid .wishlist-card .wishlist-content .btn-add-cart {
  background-color: var(--accent-color);
  color: var(--contrast-color);
  border: none;
}

.account .wishlist-grid .wishlist-card .wishlist-content .btn-add-cart:hover {
  background-color: color-mix(in srgb, var(--accent-color), transparent 15%);
}

.account .wishlist-grid .wishlist-card .wishlist-content .btn-notify {
  background-color: #f3f4f6;
  color: #6b7280;
  border: none;
}

.account .wishlist-grid .wishlist-card .wishlist-content .btn-notify:hover {
  background-color: #e5e7eb;
}

.account .payment-cards-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
  gap: 24px;
  margin-bottom: 32px;
}

.account .payment-cards-grid .payment-card {
  background-color: var(--surface-color);
  border: 1px solid rgba(0, 0, 0, 0.08);
  border-radius: 16px;
  padding: 20px;
  transition: all 0.3s ease;
}

.account .payment-cards-grid .payment-card:hover {
  border-color: var(--accent-color);
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.08);
}

.account .payment-cards-grid .payment-card.default {
  border-color: var(--accent-color);
}

.account .payment-cards-grid .payment-card .card-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 16px;
}

.account .payment-cards-grid .payment-card .card-header i {
  font-size: 24px;
  color: var(--accent-color);
}

.account .payment-cards-grid .payment-card .card-header .card-badges {
  display: flex;
  align-items: center;
  gap: 8px;
}

.account .payment-cards-grid .payment-card .card-header .card-badges span {
  padding: 4px 12px;
  border-radius: 20px;
  font-size: 13px;
  font-weight: 500;
}

.account
  .payment-cards-grid
  .payment-card
  .card-header
  .card-badges
  .default-badge {
  background-color: color-mix(in srgb, var(--accent-color), transparent 92%);
  color: var(--accent-color);
}

.account
  .payment-cards-grid
  .payment-card
  .card-header
  .card-badges
  .card-type {
  background-color: #f3f4f6;
  color: #6b7280;
}

.account .payment-cards-grid .payment-card .card-body {
  margin-bottom: 16px;
}

.account .payment-cards-grid .payment-card .card-body .card-number {
  font-family: var(--heading-font);
  font-size: 18px;
  font-weight: 500;
  letter-spacing: 1px;
  margin-bottom: 8px;
}

.account .payment-cards-grid .payment-card .card-body .card-info {
  font-size: 13px;
  color: color-mix(in srgb, var(--default-color), transparent 40%);
}

.account .payment-cards-grid .payment-card .card-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.account .payment-cards-grid .payment-card .card-actions button {
  height: 36px;
  padding: 0 16px;
  border-radius: 8px;
  font-size: 13px;
  font-weight: 500;
  display: flex;
  align-items: center;
  gap: 6px;
  transition: all 0.3s ease;
}

.account .payment-cards-grid .payment-card .card-actions button i {
  font-size: 14px;
}

.account .payment-cards-grid .payment-card .card-actions button.btn-edit {
  background-color: #f3f4f6;
  color: #6b7280;
  border: none;
}

.account .payment-cards-grid .payment-card .card-actions button.btn-edit:hover {
  background-color: #e5e7eb;
}

.account .payment-cards-grid .payment-card .card-actions button.btn-remove {
  background-color: #fef2f2;
  color: #ef4444;
  border: none;
}

.account
  .payment-cards-grid
  .payment-card
  .card-actions
  button.btn-remove:hover {
  background-color: #fee2e2;
}

.account
  .payment-cards-grid
  .payment-card
  .card-actions
  button.btn-make-default {
  background-color: color-mix(in srgb, var(--accent-color), transparent 92%);
  color: var(--accent-color);
  border: none;
}

.account
  .payment-cards-grid
  .payment-card
  .card-actions
  button.btn-make-default:hover {
  background-color: color-mix(in srgb, var(--accent-color), transparent 88%);
}

.account .reviews-grid {
  display: grid;
  gap: 24px;
  margin-bottom: 32px;
}

.account .reviews-grid .review-card {
  background-color: var(--surface-color);
  border: 1px solid rgba(0, 0, 0, 0.08);
  border-radius: 16px;
  padding: 20px;
  transition: all 0.3s ease;
}

.account .reviews-grid .review-card:hover {
  border-color: var(--accent-color);
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.08);
}

.account .reviews-grid .review-card .review-header {
  display: flex;
  gap: 16px;
  margin-bottom: 16px;
}

.account .reviews-grid .review-card .review-header .product-image {
  width: 80px;
  height: 80px;
  border-radius: 12px;
  object-fit: cover;
}

.account .reviews-grid .review-card .review-header .review-meta {
  flex: 1;
}

.account .reviews-grid .review-card .review-header .review-meta h4 {
  margin: 0 0 8px;
  font-size: 16px;
  font-weight: 600;
}

.account .reviews-grid .review-card .review-header .review-meta .rating {
  display: flex;
  align-items: center;
  gap: 4px;
  margin-bottom: 8px;
}

.account .reviews-grid .review-card .review-header .review-meta .rating i {
  color: #f59e0b;
  font-size: 14px;
}

.account .reviews-grid .review-card .review-header .review-meta .rating span {
  font-size: 13px;
  color: color-mix(in srgb, var(--default-color), transparent 40%);
}

.account .reviews-grid .review-card .review-header .review-meta .review-date {
  font-size: 13px;
  color: color-mix(in srgb, var(--default-color), transparent 40%);
}

.account .reviews-grid .review-card .review-content {
  margin-bottom: 16px;
  padding-bottom: 16px;
  border-bottom: 1px solid rgba(0, 0, 0, 0.06);
}

.account .reviews-grid .review-card .review-content p {
  margin: 0;
  font-size: 14px;
  line-height: 1.6;
}

.account .reviews-grid .review-card .review-footer {
  display: flex;
  gap: 12px;
}

.account .reviews-grid .review-card .review-footer button {
  height: 36px;
  padding: 0 16px;
  border-radius: 8px;
  font-size: 13px;
  font-weight: 500;
  transition: all 0.3s ease;
}

.account .reviews-grid .review-card .review-footer button.btn-edit {
  background-color: #f3f4f6;
  color: #6b7280;
  border: none;
}

.account .reviews-grid .review-card .review-footer button.btn-edit:hover {
  background-color: #e5e7eb;
}

.account .reviews-grid .review-card .review-footer button.btn-delete {
  background-color: #fef2f2;
  color: #ef4444;
  border: none;
}

.account .reviews-grid .review-card .review-footer button.btn-delete:hover {
  background-color: #fee2e2;
}

.account .addresses-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
  gap: 24px;
  margin-bottom: 32px;
}

.account .addresses-grid .address-card {
  background-color: var(--surface-color);
  border: 1px solid rgba(0, 0, 0, 0.08);
  border-radius: 16px;
  padding: 20px;
  transition: all 0.3s ease;
}

.account .addresses-grid .address-card:hover {
  border-color: var(--accent-color);
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.08);
}

.account .addresses-grid .address-card.default {
  border-color: var(--accent-color);
}

.account .addresses-grid .address-card .card-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 16px;
}

.account .addresses-grid .address-card .card-header h4 {
  margin: 0;
  font-size: 18px;
  font-weight: 600;
}

.account .addresses-grid .address-card .card-header .default-badge {
  padding: 4px 12px;
  border-radius: 20px;
  font-size: 13px;
  font-weight: 500;
  background-color: color-mix(in srgb, var(--accent-color), transparent 92%);
  color: var(--accent-color);
}

.account .addresses-grid .address-card .card-body {
  margin-bottom: 16px;
}

.account .addresses-grid .address-card .card-body .address-text {
  margin: 0 0 12px;
  font-size: 14px;
  line-height: 1.6;
}

.account .addresses-grid .address-card .card-body .contact-info div {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 13px;
  color: color-mix(in srgb, var(--default-color), transparent 30%);
  margin-bottom: 4px;
}

.account .addresses-grid .address-card .card-body .contact-info div:last-child {
  margin-bottom: 0;
}

.account .addresses-grid .address-card .card-body .contact-info div i {
  font-size: 14px;
}

.account .addresses-grid .address-card .card-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.account .addresses-grid .address-card .card-actions button {
  height: 36px;
  padding: 0 16px;
  border-radius: 8px;
  font-size: 13px;
  font-weight: 500;
  display: flex;
  align-items: center;
  gap: 6px;
  transition: all 0.3s ease;
}

.account .addresses-grid .address-card .card-actions button i {
  font-size: 14px;
}

.account .addresses-grid .address-card .card-actions button.btn-edit {
  background-color: #f3f4f6;
  color: #6b7280;
  border: none;
}

.account .addresses-grid .address-card .card-actions button.btn-edit:hover {
  background-color: #e5e7eb;
}

.account .addresses-grid .address-card .card-actions button.btn-remove {
  background-color: #fef2f2;
  color: #ef4444;
  border: none;
}

.account .addresses-grid .address-card .card-actions button.btn-remove:hover {
  background-color: #fee2e2;
}

.account .addresses-grid .address-card .card-actions button.btn-make-default {
  background-color: color-mix(in srgb, var(--accent-color), transparent 92%);
  color: var(--accent-color);
  border: none;
}

.account
  .addresses-grid
  .address-card
  .card-actions
  button.btn-make-default:hover {
  background-color: color-mix(in srgb, var(--accent-color), transparent 88%);
}

.account .settings-content .settings-section {
  background-color: var(--surface-color);
  border: 1px solid rgba(0, 0, 0, 0.08);
  border-radius: 16px;
  padding: 24px;
  margin-bottom: 24px;
}

.account .settings-content .settings-section:last-child {
  margin-bottom: 0;
}

.account .settings-content .settings-section h3 {
  margin: 0 0 20px;
  font-size: 18px;
  font-weight: 600;
}

.account .settings-content .settings-section.danger-zone {
  border-color: #fee2e2;
}

.account .settings-content .settings-section.danger-zone h3 {
  color: #ef4444;
}

.account
  .settings-content
  .settings-section.danger-zone
  .danger-zone-content
  p {
  margin: 0 0 16px;
  font-size: 14px;
  line-height: 1.6;
  color: color-mix(in srgb, var(--default-color), transparent 20%);
}

.account
  .settings-content
  .settings-section.danger-zone
  .danger-zone-content
  .btn-danger {
  height: 40px;
  padding: 0 20px;
  background-color: #ef4444;
  color: #ffffff;
  border: none;
  border-radius: 10px;
  font-size: 14px;
  font-weight: 500;
  transition: all 0.3s ease;
}

.account
  .settings-content
  .settings-section.danger-zone
  .danger-zone-content
  .btn-danger:hover {
  background-color: #dc2626;
}

.account .settings-content .settings-form .form-label {
  font-size: 14px;
  font-weight: 500;
  margin-bottom: 8px;
}

.account .settings-content .settings-form .form-control {
  height: 44px;
  padding: 0 16px;
  border: 1px solid rgba(0, 0, 0, 0.08);
  border-radius: 10px;
  font-size: 14px;
  transition: all 0.3s ease;
}

.account .settings-content .settings-form .form-control:focus {
  border-color: var(--accent-color);
  box-shadow: 0 0 0 4px color-mix(in srgb, var(--accent-color), transparent 90%);
}

.account .settings-content .settings-form .form-buttons {
  display: flex;
  justify-content: flex-end;
  margin-top: 24px;
}

.account .settings-content .settings-form .form-buttons .btn-save {
  height: 40px;
  padding: 0 24px;
  background-color: var(--accent-color);
  color: var(--contrast-color);
  border: none;
  border-radius: 10px;
  font-size: 14px;
  font-weight: 500;
  transition: all 0.3s ease;
}

.account .settings-content .settings-form .form-buttons .btn-save:hover {
  background-color: color-mix(in srgb, var(--accent-color), transparent 15%);
}

.account .settings-content .preferences-list .preference-item {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  padding: 16px 0;
  border-bottom: 1px solid rgba(0, 0, 0, 0.06);
}

.account .settings-content .preferences-list .preference-item:first-child {
  padding-top: 0;
}

.account .settings-content .preferences-list .preference-item:last-child {
  padding-bottom: 0;
  border-bottom: none;
}

.account .settings-content .preferences-list .preference-item .preference-info {
  margin-right: 16px;
}

.account
  .settings-content
  .preferences-list
  .preference-item
  .preference-info
  h4 {
  margin: 0 0 4px;
  font-size: 16px;
  font-weight: 500;
}

.account
  .settings-content
  .preferences-list
  .preference-item
  .preference-info
  p {
  margin: 0;
  font-size: 14px;
  color: color-mix(in srgb, var(--default-color), transparent 40%);
}

.account .settings-content .preferences-list .preference-item .form-check {
  margin: 0;
  min-height: auto;
}

.account
  .settings-content
  .preferences-list
  .preference-item
  .form-check
  .form-check-input {
  width: 3rem;
  height: 1.5rem;
  margin: 0;
}

.account
  .settings-content
  .preferences-list
  .preference-item
  .form-check
  .form-check-input:checked {
  background-color: var(--accent-color);
  border-color: var(--accent-color);
}

.account
  .settings-content
  .preferences-list
  .preference-item
  .form-check
  .form-check-input:focus {
  border-color: var(--accent-color);
  box-shadow: 0 0 0 0.2rem
    color-mix(in srgb, var(--accent-color), transparent 75%);
}

@media (max-width: 575.98px) {
  .account .orders-grid .order-card .order-header {
    flex-direction: column;
    gap: 8px;
  }
  .account .section-header .header-actions {
    width: 100%;
    justify-content: stretch;
  }
  .account .section-header .header-actions .search-box,
  .account .section-header .header-actions .dropdown,
  .account .section-header .header-actions button {
    width: 100%;
  }
  .account .payment-cards-grid,
  .account .addresses-grid {
    grid-template-columns: 1fr;
  }
  .account .review-card .review-header {
    flex-direction: column;
    text-align: center;
  }
  .account .review-card .review-header .product-image {
    margin: 0 auto;
  }
  .account .review-card .review-header .rating {
    justify-content: center;
  }
}

.underconstruct img {
  height: 300px;
  width: auto;
  margin-bottom: 15px;
}

.underconstruct h2 {
  font-size: 30px;
  font-weight: bold;
  letter-spacing: 1px;
  text-align: center;
}
