/* ===== GLOBAL STYLES ===== */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

:root {
  --primary-color: #02b6eb;
  --secondary-color: #fcb61d;
}

body {
  font-family: "Inter", sans-serif;
  line-height: 1.6;
  color: #141414;
  overflow-x: hidden;
}

a {
  text-decoration: none;
  transition: 0.25s;
}

.form-check-input {
  border-color: #02b6eb;
  width: 18px;
  height: 18px;
}

.form-check-input:focus {
  box-shadow: none;
  border-color: #02b6eb;
}

.form-check-input:checked {
  background-color: #02b6eb;
  border-color: #02b6eb;
}

/* ===== HEADER STYLES ===== */
.header {
  background: #f8f8f8;
}

.navbar-nav .nav-link {
  color: #141414 !important;
  font-weight: 500;
  padding: 0.5rem 16px !important;
  transition: color 0.3s ease;
}

.navbar-nav .nav-link:hover {
  color: #02b6eb !important;
}

.header-actions a {
  background: none;
  border: none;
  color: #141414;
  font-size: 18px;
  transition: color 0.3s ease;
  position: relative;
}

.header-actions a:hover {
  color: #02b6eb;
}

.header-actions .badge {
  position: absolute;
  top: -8px;
  right: -8px;
  background: #02b6eb;
  color: white;
  border-radius: 50%;
  width: 18px;
  height: 18px;
  font-size: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.header-actions .btn-logout {
  background: #02b6eb;
  color: #fff;
  margin-left: 15px;
  font-size: 14px;
}

.header-actions .btn-logout i {
  margin-right: 5px;
}

.header-actions .btn-logout:hover {
  color: #fff;
}

/* ===== HERO SECTION ===== */
.hero-section {
  background: #56575c;
  min-height: 70vh;
  display: flex;
  align-items: center;
}

/* .min-vh-75 {
  min-height: inherit;
} */

.hero-swiper {
  width: 100%;
}

.hero-swiper .swiper-inner {
  background: #56575c;
}

.hero-content {
  padding: 2rem 0;
}

.sale-text {
  font-size: 25px;
  font-weight: 600;
  display: inline-block;
  margin-bottom: 16px;
  color: #fff;
}

.hero-title {
  font-size: 65px;
  font-weight: 700;
  color: #fff;
  line-height: 1.2;
  margin-bottom: 2rem;
}

.hero-btn {
  padding: 12px 30px;
  font-weight: 600;
  border-radius: 12px;
  transition: all 0.3s ease;
}

.hero-btn:hover {
  transform: translateY(-2px);
}

.hero-image img {
  width: 100%;
  height: auto;
}

.hero-pagination {
  text-align: center;
  position: absolute;
  width: 100%;
  z-index: 2;
  bottom: 20px !important;
}

/* ===== WHAT'S NEW SECTION ===== */
.whats-new-section {
  padding: 80px 0;
}

.section-title {
  font-size: 2.5rem;
  font-weight: 700;
  color: #141414;
  margin-bottom: 2rem;
}

.category-tabs {
  display: flex;
  justify-content: center;
  margin-bottom: 0;
}

.category-tabs .nav-pills {
  background: none;
  border-radius: 25px;
  padding: 0px;
  display: inline-flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 5px;
}

.category-tabs .nav-link {
  background: transparent;
  border: none;
  color: #000;
  font-weight: 600;
  font-size: 12px;
  padding: 8px 16px;
  border-radius: 0;
  transition: all 0.3s ease;
  white-space: nowrap;
  -webkit-border-radius: 0;
  -moz-border-radius: 0;
  -ms-border-radius: 0;
  -o-border-radius: 0;
}

.category-tabs .nav-link.active {
  background: #f4f4f4;
  color: #000;
}

.category-tabs .nav-link:hover {
  background: #f4f4f4;
}

.whats-new-section-bottom {
  padding: 60px 0;
  background-color: #f4f4f4;
}

/* ===== PRODUCT CARDS ===== */
.product-card {
  position: relative;
  background: white;
  border-radius: 10px;
  overflow: hidden;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  height: 100%;
  border: 1px solid #dedddb;
}

.sale-icon {
  width: 60px;
  height: 60px;
  background-image: url("../images/featured-shape.png");
  background-repeat: no-repeat;
  background-size: 100% 100%;
  display: flex;
  flex-direction: column;
  line-height: 1;
  justify-content: center;
  align-items: center;
  font-size: 10px;
  color: #fff;
  position: absolute;
  right: 10px;
  top: 10px;
}

.sale-icon .sale-value {
  font-size: 14px;
  font-weight: 600;
}

.product-card:hover {
  transform: translateY(-5px);
}

.product-image {
  position: relative;
  overflow: hidden;
  height: 215px;
  display: flex;
  align-items: center;
  justify-content: center;
  padding-top: 30px;
}

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

.product-info {
  padding: 0.75rem;
}

.product-title,
.product-code {
  font-size: 16px;
  font-weight: 600;
  color: #141414;
  margin-bottom: 0.5rem;
  line-height: 1.25;
  text-align: center;
}

.product-title a {
  color: inherit;
}

.product-title a:hover {
  color: #02b6eb;
}

.product-pricing {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 8px;
}

.product-pricing>div {
  display: block;
}

.price-text {
  display: block;
  font-size: 14px;
}

.current-price {
  display: block;
  font-size: 18px;
  font-weight: 500;
  color: #252525;
}

.product-options label {
  display: block;
  font-weight: 600;
  margin-bottom: 0;
  font-size: 14px;
}

.product-quantity {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 0;
}

.product-quantity .product-quantity-control {
  display: flex;
  align-items: center;
}

.product-quantity .product-quantity-control input {
  max-width: 55px;
  background-color: #f8f8f8;
  border: 0;
  height: 35px;
  text-align: center;
  margin-left: -5px;
  margin-right: -5px;
}

.product-quantity .product-quantity-control input:focus {
  outline: 0;
}

.product-quantity .product-quantity-control button {
  background-color: #7367f0;
  border: 0;
  width: 25px;
  height: 25px;
  color: #fff;
  border-radius: 3px;
  position: relative;
  z-index: 2;
  transition: 0.25s all;
}

.product-quantity .product-quantity-control button:hover {
  background-color: #5046bc;
}

.stock-info {
  font-size: 14px;
  color: #666;
  display: flex;
  justify-content: space-between;
}

.stock-count {
  color: #27ae60;
  font-weight: 600;
}

/* ===== ABOUT SECTION ===== */
.about-section {
  padding: 0 0 40px;
}

.about-logo {
  width: 100%;
  max-width: 360px;
}

.logo-large {
  display: flex;
  justify-content: center;
  gap: 5px;
  margin-bottom: 10px;
}

.logo-letter-large {
  width: 80px;
  height: 80px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  font-weight: 700;
  font-size: 40px;
  border-radius: 8px;
}

.logo-letter-large.i {
  background: #02b6eb;
}

.logo-letter-large.p {
  background: var(--secondary-color);
}

.logo-letter-large.l {
  background: #3742fa;
}

.logo-subtitle-large {
  font-weight: 700;
  color: #141414;
  font-size: 24px;
  letter-spacing: 2px;
}

.about-title {
  font-size: 36px;
  font-weight: 700;
  color: #000000;
  margin-bottom: 24px;
}

.about-text {
  font-size: 16px;
  line-height: 1.25;
  color: #000000;
  margin-bottom: 16px;
}

.highlight-title {
  font-size: 28px;
  font-weight: 700;
  color: #02b6eb;
  margin: 20px 0;
}

/* ===== BRAND SECTION ===== */
.brand-section {
  padding: 40px 0;
}

.brand-section h2 {
  font-size: 36px;
  font-weight: 700;
  color: #000000;
  margin-bottom: 24px;
}

.brand-logo {
  display: flex;
  align-items: center;
  justify-content: center;
  height: 100px;
}

.brand-logo img {
  object-fit: contain;
  height: 200px;
}

.brand-pagination {
  text-align: center;
  margin-top: 24px;
}

/* ===== FOOTER STYLES ===== */
.footer {
  padding: 60px 0 20px;
  background: #343434 !important;
}

.footer-about {
  display: flex;
  gap: 16px;
}

.footer-about a {
  color: #fff;
  text-decoration: none;
  transition: 0.25s all;
}

.footer-about a:hover {
  color: var(--secondary-color);
}

.footer-title {
  font-size: 16px;
  font-weight: 600;
  margin-bottom: 16px;
  color: white;
}

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

.footer-links li {
  margin-bottom: 0.5rem;
}

.footer-links a {
  color: #fff;
  text-decoration: none;
  font-size: 14px;
  transition: color 0.3s ease;
}

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

.contact-info p {
  color: rgba(255, 255, 255, 0.9);
  margin-bottom: 0.5rem;
  font-size: 0.9rem;
}

.contact-info p a {
  color: rgba(255, 255, 255, 0.9);
}

.salesLoginbtn {
  background-color: #02b6eb !important;
}

.footer-social-links-container {
  height: 100%;
  display: flex;
  justify-content: end;
  align-items: end;
}

.social-links {
  display: flex;
  gap: 15px;
  margin-bottom: 16px;
}

.social-link {
  color: white;
  font-size: 20px;
  text-decoration: none;
  transition: 0.25s all;
}

.social-link:hover {
  color: var(--secondary-color);
}

.footer-bottom {
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 14px;
}

.footer-bottom .footer-bottom-col-left {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 16px;
}

.footer-bottom .footer-select select {
  background-color: transparent;
  color: #fff;
  border: 0;
}

.footer-language {
  color: rgba(255, 255, 255, 0.8);
  font-size: 0.9rem;
}

.footer-payment img {
  max-height: 25px;
}

/* Product Page */
.page-title-sec-header {
  background-color: #212529;
  padding: 10px 0;
}

.page-title-sec-header h2 {
  margin-bottom: 0;
  font-size: 28px;
  color: #fff;
  font-weight: 600;
  line-height: 1;
}

.page-titile-sec,
.page-title-sec {
  background-color: #fff;
  padding: 25px 0;
}

.page-titile-sec h2,
.page-title-sec h2 {
  margin-bottom: 0;
  font-size: 28px;
  color: #212529;
  font-weight: 600;
  line-height: 1;
}

.product-section {
  padding: 60px 0;
}

.filter-accordion .accordion-button {
  background-color: #e3e3e3 !important;
  color: #000 !important;
  border: none !important;
  font-weight: 500;
  padding: 10px 15px;
  border-radius: 8px !important;
}

.filter-accordion .accordion-button:not(.collapsed) {
  background-color: #e3e3e3 !important;
  color: #000 !important;
  box-shadow: none !important;
}

.filter-accordion .accordion-button:focus {
  box-shadow: none !important;
  border-color: transparent !important;
}

.filter-accordion .accordion-button::after {
  filter: brightness(0) invert(0);
  -webkit-filter: brightness(0) invert(0);
}

.filter-accordion .accordion-body {
  padding: 0;
  background-color: white;
  margin-top: 10px;
}

.filter-accordion .accordion-item {
  border: none !important;
  margin-bottom: 10px;
  border-radius: 8px !important;
  overflow: hidden;
}

.filter-accordion .accordion-button::after {
  width: 1rem;
  height: 1rem;
  background-size: 1rem;
}

.filter-accordion .menu-item {
  padding: 10px 8px;
  color: #666;
  text-decoration: none;
  display: flex;
  justify-content: space-between;
  transition: background-color 0.2s;
  border-bottom: 1px solid #ededed;
}

.filter-accordion .menu-item:last-child {
  border-bottom: 0;
}

.filter-accordion .menu-item:hover {
  background-color: #f8f9fa;
  color: #333;
  text-decoration: none;
}

.filter-accordion .menu-item:last-child {
  border-bottom: none;
}

.filter-accordion .item-count {
  color: #999;
}

.product-container-inner {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.product-container-inner h3 {
  margin-bottom: 0;
}

.product-container-inner>.row:not(:last-of-type) {
  border-bottom: 1px solid #dfdfdf;
  padding-bottom: 15px;
}

/* single product */

.product-details-section {
  padding: 60px 0;
}

.product-gallery {
  padding: 12px;
  /* border: 1px solid #dfdfdf; */
  display: flex;
  max-width: 100%;
  position: relative;
  border-radius: 10px;
  /* background-color: #f8f8f8; */
}

.product-gallery .product-swiper {
  flex: 0 0 80%;
  width: 80%;
  position: relative;
}

.product-gallery .product-swiper .product-img {
  height: 550px;
}

.product-gallery .product-swiper img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  border-radius: 10px;
  overflow: hidden;
}

.product-gallery .product-thumbs {
  flex: 0 0 20%;
  width: 20%;
  padding-right: 10px;
  height: 550px;
}

.swiper-vertical>.swiper-wrapper {
  overflow-y: scroll !important;
  height: 550px;
}

.swiper-vertical>.swiper-wrapper {
  transform: inherit !important;
  -webkit-transform: inherit !important;
  -moz-transform: inherit !important;
  -ms-transform: inherit !important;
  -o-transform: inherit !important;
}

.product-gallery .product-thumbs .swiper-slide {
  opacity: 0.5;
}

.product-gallery .product-thumbs .swiper-slide.swiper-slide-thumb-active {
  opacity: 1;
}

.product-gallery .product-thumbs .product-img {
  width: 100%;
  height: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
  background-color: #fff;
  padding: 10px;
  border-radius: 10px;
}

.product-gallery .product-swiper .product-img {
  background-color: #fff;
}

.product-gallery .product-thumbs img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  object-position: center;
  border-radius: 10px;
}

.product-details .product-details-header {
  /* display: flex; */
  /* gap: 10px; */
  align-items: baseline;
  /* justify-content: space-between; */
}

.product-details .product-details-header .btn-heart {
  border-color: #e9e9e9;
  color: #1f1f1f;
}

.product-details .product-category {
  font-size: 14px;
  color: #605e5e;
}

.product-details .product-details-name {
  font-size: 25px;
  color: #252525;
}

.product-details .product-details-rating i {
  color: #ecb018;
}

.product-details-price {
  display: flex;
  align-items: center;
  gap: 16px;
  line-height: 1;
  margin-bottom: 16px;
}

.product-details-price .product-current-price {
  font-size: 28px;
  font-weight: 600;
}

.product-details-price .product-old-price {
  font-size: 18px;
  color: #b5b6b5;
  padding-left: 16px;
  border-left: 1px solid;
  text-decoration: line-through;
}

.product-details-price .product-discount {
  font-size: 14px;
  color: #1f1f1f;
  font-weight: 700;
  padding: 5px 12px;
  display: inline-block;
  background-color: #d2ef9a;
  border-radius: 20px;
}

.product-short-des {
  color: #6e757d;
  font-size: 15px;
}

.product-details hr {
  margin: 20px 0;
}

.product-details-action-btns {
  margin-top: 16px;
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  column-gap: 30px;
  row-gap: 10px;
}

.product-details-action-btns .product-quantity {
  margin-bottom: 0;
}

.product-details-action-btns .btn-outline-primary {
  flex-grow: 1;
  text-transform: uppercase;
}

.product-details-action-btns .btn-primary {
  width: 100%;
  text-transform: uppercase;
}

.product-details-meta {
  margin-top: 20px;
}

.product-details-meta .info-item {
  display: flex;
  align-items: center;
  margin-bottom: 12px;
  font-size: 14px;
}

.product-details-meta .info-item.item-top {
  display: flex;
  gap: 16px;
}

.product-details-meta .info-item:last-child {
  margin-bottom: 0;
}

.product-details-meta .info-label {
  color: #121212;
  font-weight: 500;
}

.product-details-meta .info-value {
  color: #656565;
  margin-left: 4px;
}

.product-details-meta .category-link,
.tag-link {
  color: #656565;
  text-decoration: none;
}

.product-details-meta .category-link:hover,
.tag-link:hover {
  text-decoration: underline;
}

.product-write-review {
  margin-top: 30px;
  padding: 20px;
  border-radius: 12px;
  background-color: #fffceb;
  font-size: 14px;
}

.product-write-review i {
  color: #de871f;
  transition: 0.25s;
}

.product-write-review a {
  color: #de871f;
  background-color: #ffea95;
  display: inline-block;
  padding: 5px 10px;
  border-radius: 5px;
}

.product-write-review a:hover {
  color: #fff;
  background-color: var(--secondary-color);
}

.product-write-review a:hover i {
  color: #fff;
}

.product-write-review h4 {
  font-size: 20px;
  font-weight: 600;
}

.product-payment-safe {
  padding: 30px 30px 20px;
  border: 2px solid #efefef;
  border-radius: 14px;
  margin-top: 30px;
  position: relative;
}

.product-payment-safe h4 {
  font-size: 20px;
  font-weight: 600;
  text-align: center;
  position: absolute;
  padding: 3px 8px;
  background-color: #fff;
  left: 50%;
  top: 0;
  transform: translate(-50%, -50%);
}

.product-payment-safe img {
  width: 100%;
}

.product-des-section .nav-tabs {
  border-bottom: 0;
  margin-bottom: 30px;
  justify-content: left;
}

.product-des-section .nav-tabs .nav-link {
  border: none;
  color: #6c757d;
  font-weight: 500;
  font-size: 18px;
  padding: 10px 0;
  margin-right: 40px;
  background: none;
}

.product-des-section .nav-tabs .nav-link.active {
  color: #333;
  border-bottom: 2px solid #333;
  background: none;
}

.product-des-section .description-content h3 {
  color: #333;
  font-size: 24px;
  font-weight: 600;
  margin-bottom: 20px;
}

.product-des-section .description-text {
  color: #1f1f1f;
  font-size: 15px;
  line-height: 1.5;
}

.product-des-section .about-section h4 {
  color: #333;
  font-size: 20px;
  font-weight: 600;
  margin-bottom: 20px;
}

.product-des-section .about-list {
  padding: 0;
  padding-left: 20px;
}

.product-des-section .about-list li {
  color: #1f1f1f;
  font-size: 15px;
  line-height: 1.25;
  margin-bottom: 8px;
  position: relative;
}

.product-des-section .feature-icon {
  font-size: 24px;
  color: #6e6e6e;
  margin-bottom: 10px;
}

.product-des-section .feature-title {
  color: #333;
  font-size: 18px;
  font-weight: 600;
  margin-bottom: 8px;
}

.product-des-section .feature-text {
  color: #6c757d;
  font-size: 14px;
  line-height: 1.6;
}

/* Go to Top Button */
.go-top {
  position: fixed;
  bottom: 30px;
  right: 30px;
  width: 45px;
  height: 45px;
  background-color: #1f1f1f;
  color: #ffffff;
  text-align: center;
  line-height: 45px;
  border-radius: 50%;
  font-size: 20px;
  cursor: pointer;
  z-index: 999;
  opacity: 0;
  visibility: hidden;
  transition: all 0.3s ease;
}

.go-top.active {
  opacity: 1;
  visibility: visible;
}

.go-top:hover {
  background-color: var(--secondary-color);
  color: #000;
}

/* widhlist page */

.wishlist-section,
.cart-section {
  padding: 60px 0;
}

.wishlist-filter {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 30px;
}

.wishlist-filter .layout-controller {
  display: flex;
  align-items: center;
  gap: 8px;
}

.wishlist-filter .layout-controller button {
  padding: 8px 8px;
  border: 1px solid #e9e9e9;
  background-color: transparent;
  border-radius: 3px;
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 3px;
}

.wishlist-filter .layout-controller button span {
  width: 3px;
  height: 15px;
  background-color: #a0a0a0;
}

.wishlist-filter .layout-controller button.active {
  border: 1px solid #1f1f1f;
  background-color: #1f1f1f;
}

.wishlist-filter .layout-controller button.active span {
  background-color: #fff;
}

.wishlist-filter .filter-select {
  display: flex;
  gap: 10px;
}

.wishlist-filter .filter-select .select2-container .select2-selection--single,
.wishlist-filter .filter-select .select2-container--default .select2-selection--single .select2-selection__arrow {
  height: 36px;
}

.wishlist-filter .filter-select .select2-container--default .select2-selection--single .select2-selection__rendered {
  line-height: 36px;
}

.select2-container--default .select2-results__option--highlighted[aria-selected] {
  background-color: #fcb61d;
  color: #141414;
}

/* checkout page */

.checkout-section {
  padding: 60px 0;
}

.checkout-product-item {
  display: flex;
  align-items: center;
  margin-bottom: 1.5rem;
}

.checkout-product-image {
  width: 80px;
  height: 80px;
  border-radius: 8px;
  margin-right: 1rem;
  object-fit: cover;
}

.checkout-product-details {
  display: flex;
  align-items: end;
  justify-content: space-between;
}

.checkout-product-details .checkout-product-items {
  flex-shrink: 0;
}

.checkout-product-details h6 {
  font-size: 20px;
  font-weight: 600;
  margin-bottom: 0.25rem;
}

.checkout-product-details small {
  color: #6c757d;
}

.checkout-product-amount-details {
  padding: 0;
  list-style: none;
}

.checkout-product-amount-details li {
  border-top: 1px solid #e9ecef;
  display: flex;
  justify-content: space-between;
  padding-top: 12px;
  margin-top: 12px;
  line-height: 1;
}

.checkout-product-amount-details li h5 {
  margin-bottom: 0;
}

.checkout-payment-option {
  border: 2px solid #e9e9e9;
  background-color: #f9f9f9;
  border-radius: 8px;
  padding: 1rem;
  margin-bottom: 1rem;
  cursor: pointer;
  transition: all 0.3s ease;
  display: flex;
  align-items: center;
  width: 100%;
}

.checkout-payment-option:hover {
  border-color: #1f1f1f;
  background-color: #f7f7f7;
}

.checkout-payment-option:has(input[type="radio"]:checked) {
  border-color: #1f1f1f;
  background-color: #f7f7f7;
  color: #1f1f1f;
}

.checkout-payment-option input[type="radio"]:checked+.checkout-payment-content {
  color: #1f1f1f;
}

.checkout-payment-option input[type="radio"] {
  border-color: #1f1f1f;
  margin-right: 0.75rem;
  margin-top: 0;
}

.checkout-payment-option input[type="radio"]:checked {
  background-color: #1f1f1f;
}

.checkout-payment-option input[type="radio"]:focus {
  box-shadow: none;
}

.checkout-payment-content {
  flex-grow: 1;
  margin: 0;
  cursor: pointer;
}

.checkout-payment-btn {
  background-color: #212529;
  border: none;
  padding: 1rem 2rem;
  font-weight: 600;
  letter-spacing: 0.5px;
  text-transform: uppercase;
  border-radius: 8px;
}

.checkout-payment-btn:hover {
  background-color: #495057;
}

/* My Account Pages */

.my-account-section {
  padding: 60px 0;
  font-size: 14px;
}

.my-acc-nav {
  padding: 20px;
  background-color: #f7f7f7;
  border-radius: 12px;
}

.my-acc-nav .nav-pills .nav-link {
  color: #495057;
  font-weight: 500;
  padding: 0.75rem 1rem;
  margin-bottom: 0.5rem;
  border-radius: 8px;
  display: flex;
  align-items: center;
  transition: all 0.3s ease;
  border: none;
  background: transparent;
}

.my-acc-nav .nav-pills .nav-link:hover {
  background-color: #e9ecef;
  color: #212529;
}

.my-acc-nav .nav-pills .nav-link.active {
  background-color: #ffffff;
  /* color: white; */
}

.my-acc-nav .nav-icon {
  width: 20px;
  height: 20px;
  margin-right: 1rem;
  display: flex;
  align-items: center;
  justify-content: center;
}

.my-acc-nav .nav-text {
  font-size: 1rem;
  flex-grow: 1;
}

/* Profile page */

.avatar-upload {
  display: flex;
  align-items: flex-start;
  gap: 1.5rem;
  margin-bottom: 2rem;
}

.avatar-preview {
  width: 120px;
  height: 120px;
  border-radius: 8px;
  object-fit: cover;
  border: 2px solid #e9ecef;
}

.upload-info {
  flex-grow: 1;
}

.upload-info h6 {
  margin-bottom: 0.5rem;
  font-weight: 600;
}

.upload-info small {
  color: #6c757d;
  display: block;
  margin-bottom: 1rem;
}

.file-input-wrapper {
  position: relative;
  display: inline-block;
}

.file-input {
  position: absolute;
  opacity: 0;
  width: 100%;
  height: 100%;
  cursor: pointer;
}

.file-input-btn {
  background-color: #f8f9fa;
  border: 1px solid #ced4da;
  padding: 0.5rem 1rem;
  border-radius: 5px;
  cursor: pointer;
  font-size: 0.875rem;
  color: #495057;
}

.file-input-btn:hover {
  background-color: #e9ecef;
}

.profile-section-title {
  color: #495057;
  font-weight: 600;
  margin-bottom: 1.5rem;
}

.save-btn {
  background-color: #dc3545;
  border: none;
  padding: 0.75rem 2rem;
  font-weight: 600;
  letter-spacing: 0.5px;
  text-transform: uppercase;
  border-radius: 8px;
  color: white;
}

.save-btn:hover {
  background-color: #c82333;
  color: white;
}

.password-section {
  border-top: 1px solid #f8f9fa;
  padding-top: 1.5rem;
  margin-top: 1.5rem;
}

.required {
  color: #dc3545;
}

.date-input {
  color: #6c757d;
}

.date-input::-webkit-calendar-picker-indicator {
  opacity: 0.6;
}

.account-history-sec {
  margin-top: 40px;
}

.table thead th {
  background-color: #fcb61d;
}

.table-striped>tbody>tr:nth-of-type(odd)>* {
  --bs-table-bg-type: rgb(255 255 255);
}

.table-striped>tbody>tr:nth-of-type(even)>* {
  --bs-table-bg-type: rgb(246 246 246);
}

.account-details-sec .card {
  border-color: #dddddd;
  font-size: 14px;
  border-radius: 12px;
}

.account-details-sec .card .table th {
  padding-left: 0;
  font-weight: 400;
}

.account-details-sec .card .table td {
  padding-right: 0;
  font-weight: 600;
}

/* ===== RESPONSIVE STYLES ===== */
@media (max-width: 1199px) {
  .hero-title {
    font-size: 3rem;
  }

  .section-title {
    font-size: 2.2rem;
  }

  .product-info {
    padding: 0.5rem;
  }

  .product-title,
  .product-code {
    font-size: 18px;
  }

  .price-text {
    font-size: 12px;
  }

  .current-price {
    font-size: 18px;
  }

  .product-options label {
    font-size: 12px;
  }

  .stock-info {
    font-size: 12px;
  }

  .product-gallery {
    padding: 10px;
    flex-direction: column-reverse;
    height: 100%;
  }

  .product-gallery .product-thumbs {
    flex: 0 0 20%;
    width: 100%;
    padding-right: 0;
    padding-top: 16px;
    height: auto;
  }

  .product-gallery .product-swiper {
    flex: 0 0 80%;
    width: 100%;
    height: auto;
  }

  .product-gallery .product-swiper .product-img {
    height: 100%;
    min-height: 300px;
  }

  .product-gallery .product-swiper img {
    height: 100%;
  }

  .footer-about {
    flex-wrap: wrap;
  }
}

@media (max-width: 991px) {
  .hero-title {
    font-size: 2.5rem;
  }

  .header-actions {
    justify-content: center !important;
  }

  .hero-content {
    text-align: center;
    margin-bottom: 2rem;
  }

  .about-logo {
    margin-bottom: 3rem;
  }

  .product-section,
  .product-details-section,
  .wishlist-section,
  .checkout-section {
    padding: 40px 0;
  }

  .footer-bottom {
    flex-direction: column;
    gap: 10px;
  }

  .product-gallery {
    max-width: 400px;
    margin: 0 auto;
  }
}

@media (max-width: 768px) {
  .hero-title {
    font-size: 2rem;
  }

  .section-title {
    font-size: 1.8rem;
  }

  .category-tabs .nav-pills {
    flex-direction: column;
    align-items: center;
  }

  .category-tabs .nav-link {
    margin-bottom: 5px;
    min-width: 200px;
    text-align: center;
  }

  .logo-letter-large {
    width: 50px;
    height: 50px;
    font-size: 24px;
  }

  .logo-subtitle-large {
    font-size: 16px;
  }

  .about-title {
    text-align: center;
    font-size: 1.8rem;
  }

  .brand-section h2 {
    font-size: 1.8rem;
  }

  .product-des-section .nav-tabs .nav-link {
    margin-right: 20px;
    font-size: 16px;
  }

  .product-des-section .feature-card {
    margin-bottom: 30px;
  }

  .footer-social-links-container {
    justify-content: center;
  }
}

@media (max-width: 576px) {
  .hero-title {
    font-size: 1.8rem;
  }

  .hero-btn {
    padding: 10px 25px;
    font-size: 14px;
  }

  .social-links {
    justify-content: center;
  }

  .footer-language {
    text-align: center;
    margin-top: 16px;
  }

  .footer-about {
    gap: 0px;
    flex-direction: column;
  }

  .footer-bottom .footer-bottom-col-left {
    gap: 5px;
    flex-direction: column;
  }

  .footer-payment {
    text-align: center;
  }

  .product-gallery .product-thumbs .product-img {
    padding: 5px;
    border-radius: 5px;
  }

  .product-gallery .product-thumbs img {
    border-radius: 5px;
  }

  .product-des-section .nav-tabs {
    justify-content: start;
  }
}

.brand-swiper .swiper-slide {
  height: auto;
}

/* ===== UTILITY CLASSES ===== */
.bg-primary {
  background-color: #00b8d4 !important;
}

.text-primary {
  color: #02b6eb !important;
}

.btn-primary {
  background-color: #02b6eb;
  border-color: #02b6eb;
}

.btn-primary:hover {
  background-color: #09a2cf;
  border-color: #09a2cf;
}

.btn-outline-primary {
  border-color: #02b6eb;
  color: #02b6eb;
}

.btn-outline-primary:disabled,
.btn-primary:disabled {
  display: inline-block;
  padding: 10px 20px;
  border: 2px solid #02b6eb;
  color: #02b6eb !important;
  font-weight: 600;
  border-radius: 5px;
}

.btn-outline-primary:hover {
  background-color: #02b6eb;
  border-color: #02b6eb;
  color: #fff;
}

/* ===== Additional CSS ===== */
.swiper-pagination-bullets {
  text-align: center;
  margin-top: 20px;
}

.swiper-pagination-bullets .swiper-pagination-bullet {
  background: transparent;
  width: 8px;
  height: 8px;
  opacity: 1;
  margin: 0 8px !important;
  border: 1px solid #1f1f1f;
}

.swiper-pagination-bullets .swiper-pagination-bullet-active {
  background: #1f1f1f;
  position: relative;
}

.swiper-pagination-bullets .swiper-pagination-bullet-active::before {
  content: "";
  position: absolute;
  width: 18px;
  height: 18px;
  left: 50%;
  top: 50%;
  border: 1px solid #1f1f1f;
  border-radius: 50%;
  transform: translate(-50%, -50%);
}

@media screen and (min-width: 992px) {
  .navbar-nav {
    margin-right: 40px;
  }
}

.offcanvas {
  --bs-offcanvas-width: 600px;
}

#cartOffcanvas .offcanvas-footer .btn {
  border-radius: 8px;
}

#cartOffcanvas {
  width: 400px !important;
  background: white;
}

#cartOffcanvas .offcanvas-header {
  border-bottom: 1px solid #dee2e6;
  padding: 1rem 1.5rem;
}

#cartOffcanvas .offcanvas-title {
  font-size: 1.25rem;
  font-weight: 600;
  color: #212529;
}

#cartOffcanvas .offcanvas-body {
  padding: 0;
}

#cartOffcanvas .cart-item {
  display: flex;
  align-items: center;
  padding: 1rem 1.5rem;
  border-bottom: 1px solid #f1f3f4;
  background: white;
}

#cartOffcanvas .cart-item:last-child {
  border-bottom: none;
}

#cartOffcanvas .item-image {
  width: 80px;
  height: 80px;
  border-radius: 8px;
  object-fit: contain;
  margin-right: 1rem;
  background-color: #f8f9fa;
}

#cartOffcanvas .item-details {
  flex: 1;
}

#cartOffcanvas .item-name {
  font-size: 1rem;
  font-weight: 500;
  color: #212529;
  margin-bottom: 0.25rem;
}

#cartOffcanvas .item-size-color {
  font-size: 0.875rem;
  color: #6c757d;
  margin-bottom: 0.5rem;
}

#cartOffcanvas .item-actions {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

#cartOffcanvas .item-price {
  font-size: 1rem;
  font-weight: 600;
  color: #212529;
}

#cartOffcanvas .remove-link {
  color: #dc3545;
  text-decoration: none;
  font-size: 0.875rem;
  font-weight: 500;
}

#cartOffcanvas .remove-link:hover {
  color: #b02a37;
  text-decoration: underline;
}

#cartOffcanvas .offcanvas-footer {
  border-top: 1px solid #dee2e6;
  padding: 1.5rem;
  background: white;
}

#cartOffcanvas .offcanvas-footer h4 {
  font-size: 1.25rem;
  font-weight: 600;
  color: #212529;
}

.reorder-list-section {
  padding: 20px;
  background-color: #fcfcfc;
  border-radius: 12px;
}

.table-reorder-list {
  margin-bottom: 0;
}

.table-reorder-list thead th {
  background-color: #00b7ec;
  color: #fff;
  white-space: nowrap;
}

.table-reorder-list thead th,
.table-reorder-list tbody td {
  text-align: center;
  vertical-align: middle;
  border-bottom: 0;
}

.table-reorder-list tbody td:last-child {
  white-space: nowrap;
}

.table-reorder-list thead th:nth-child(2),
.table-reorder-list tbody td:nth-child(2) {
  max-width: 300px;
  min-width: 300px;
}

.table-reorder-list thead th:nth-child(1),
.table-reorder-list tbody td:nth-child(1) {
  border-radius: 12px 0 0 12px;
}

.table-reorder-list thead th:last-child,
.table-reorder-list tbody td:last-child {
  border-radius: 0 12px 12px 0;
}

.table-reorder-list .product-dec-td {
  display: flex;
  gap: 8px;
}

.table-reorder-list .product-dec-td .product-image {
  width: 100px;
  height: 100px;
  padding: 0;
  background-color: #fff;
  border: 1px solid #e0e0e0;
  padding: 5px;
  border-radius: 5px;
  flex-shrink: 0;
}

.table-reorder-list .product-dec-td .sale-icon {
  width: 40px;
  height: 40px;
  font-size: 8px;
  position: static;
}

.table-reorder-list .product-dec-td .sale-icon .sale-value {
  font-size: 10px;
}

.table-reorder-list .product-dec-td .product-title {
  font-size: 16px;
  font-weight: 500;
  color: #141414;
  margin-bottom: 5px;
  line-height: 1.25;
  text-align: left;
}

.table-reorder-list .product-dec-td .product-code {
  font-size: 12px;
  font-weight: 500;
  margin-bottom: 5px;
  line-height: 1;
  text-align: left;
}

.login-banner {
  /* padding: 30px 0; */
  padding: 0;
  position: relative;
}

.login-logo-section {
  position: absolute;
  z-index: 99;
  width: 100%;
  padding: 20px;
  left: 0;
  top: 0;
}

.login-banner .login-swiper-img {
  display: flex;
  justify-content: center;
  align-items: center;
}

.login-banner .login-swiper-img img {
  max-height: 500px;
  max-width: 100%;
  width: 100%;
  object-fit: cover;
}

.login-banner .hero-pagination {
  bottom: 0px !important;
}

.login-section {
  padding: 40px 0;
}

.login-section .section-title {
  font-size: 30px;
}

.login-section .product-info {
  padding: 1.25rem;
}

.login-section .product-image {
  height: 160px;
}

.login-section .login-card {
  border-radius: 12px;
  border: 1px solid #dedddb;
}

.login-section .login-card .card-body {
  padding: 30px;
}

.login-section .login-card .card-body h4 {
  font-size: 28px;
}

.login-section .login-card .form-check-label {
  font-size: 14px;
}

.login-section .login-card .btn {
  padding: 8px 40px;
}

.login-section .forgot-link {
  color: inherit;
  font-weight: 500;
  font-size: 14px;
}

/* order confirmation page */
.card-custom {
  border-radius: 20px;
  box-shadow: 0 3px 20px 0 rgba(0, 0, 0, 0.06);
  background: #fff;
  border: 1px solid #e4e9f2;
  padding: 20px;
  margin-bottom: 24px;
}

.scroll-items {
  max-height: 280px;
  overflow-y: auto;
  margin-bottom: 0;
  scrollbar-width: thin;
  scrollbar-color: #d2ecfa #fff;
}

.scroll-items::-webkit-scrollbar {
  width: 8px;
  background: #fff;
}

.scroll-items::-webkit-scrollbar-thumb {
  background: #d2ecfa;
  border-radius: 6px;
}

.orderlist-item {
  display: flex;
  align-items: center;
  margin-bottom: 15px;
  margin-left: 10px;
  margin-right: 10px;
}

.orderlist-item img {
  width: 44px;
  height: 44px;
  object-fit: contain;
  border-radius: 8px;
  background: #f4f5f7;
}

.orderlist-details {
  margin-left: 14px;
}

.orderlist-title {
  font-size: 1rem;
  font-weight: 500;
}

.orderlist-qty {
  font-size: .96rem;
  color: #838a94;
}

.totals-box {
  background: #F2FAFC;
  border-radius: 12px;
  padding: 13px 16px 8px 16px;
  margin: 0 10px 0 10px;
}

.totals-row {
  display: flex;
  justify-content: space-between;
  margin-bottom: 6px;
  font-size: 1.03rem;
}

.totals-row:nth-child(1) {
  font-weight: 500;
}

.last-total {
  padding: 16px 10px;
}

.total-label {
  margin-left: 2px;
}

.total-value {
  color: #191970;
  font-size: 1.23rem;
  font-weight: 700;
}

.success-icon {
  color: #19c37d;
  font-size: 2rem;
  margin-right: 10px;
  vertical-align: middle;
}

.order-details-box {
  background: #F2FAFC;
  border-radius: 13px;
  padding: 17px 16px 10px 16px;
}

.order-details-label {
  font-weight: 600;
  margin-top: 3px;
}

.order-details-value {
  color: #333;
}

@media (max-width: 991.98px) {
  .orderlist-title {
    font-size: 0.97rem;
  }

  .card-custom {
    padding: 13px;
  }

  .totals-box,
  .order-details-box {
    padding: 12px 7px 9px 10px;
  }
}

@media (max-width: 767.98px) {
  .card-custom {
    border-radius: 10px;
    padding: 8px;
  }

  .scroll-items {
    max-height: 220px;
  }
}

@media (max-width: 575.98px) {
  .orderlist-item img {
    width: 38px;
    height: 38px;
  }
}

.productsearchbox {
  background-color: #e3e3e3;
  padding: 20px;
  border-radius: 15px;
}

.productsearchbox h3 {
  font-weight: 600;
  color: #000;
  font-size: 20px;
}

.productsearchbox .form-control {
  padding: 15px;
  border-radius: 10px;
  border: none;
}

.searchbtn {
  background-color: #00b9e4;
  color: #fff;
  font-weight: 600;
  width: 100%;
  text-align: center;
  padding: 12px 0;
  border: none;
  border-radius: 10px;
  margin-top: 10px;
}

.productbanner {
  padding: 25px;
  border-radius: 15px;
  background-color: #e3e3e3;
  display: flex;
  gap: 20px;
  margin-bottom: 20px;
  align-items: center;
  justify-content: space-between;
}

.productbanner h1 {
  font-size: 80px;
  text-transform: uppercase;
  font-weight: 900;
}

.active>.page-link,
.page-link.active {
  background-color: #02b6eb;
  border-color: #02b6eb;
}

.page-link {
  color: #02b6eb;
}

.product-section .pagination {
  justify-content: center;
}

@media only screen and (min-width: 768px) and (max-width: 991px) {}

@media only screen and (max-width: 767px) {
  .productbanner h1 {
    font-size: 20px;
  }

  .login-logo-section {
    position: inherit;
    text-align: center;
  }

  .hero-section {
    background: #56575c;
    min-height: auto;
    display: flex;
    align-items: center;
  }

  .product-section .pagination .page-link {
    font-size: 11px;
    padding: 6px;
  }

  .header-cart-details {
    flex-direction: column;
    justify-content: center !important;
    text-align: center;
  }
}