/* ==========================================================================
   NEON LED REMAKE STYLESHEET
   ========================================================================== */
html,
body {
  width: 100%;
  overflow-x: hidden;
}

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: "Plus Jakarta Sans", -apple-system, BlinkMacSystemFont, sans-serif;
  color: #000000;
  background-color: #ffffff;
  line-height: 1.5;
  -webkit-font-smoothing: antialiased;
}

img {
  max-width: 100%;
  height: auto;
  display: block;
}

a {
  text-decoration: none;
  color: inherit;
  transition: opacity 0.2s ease;
}
a:hover {
  opacity: 0.8;
}

ul {
  list-style: none;
}

.container {
  max-width: 1240px;
  margin: 0 auto;
  padding: 0 16px;
  width: 100%;
}

.section-title {
  font-family: "Syne", sans-serif;
  font-size: 38px;
  font-weight: 800;
  text-transform: uppercase;
  text-align: center;
  letter-spacing: -0.5px;
  margin-bottom: 36px;
  word-break: break-word;
}
@media screen and (max-width: 576px) {
  .section-title {
    font-size: 17px;
    margin-bottom: 21px;
  }
}
.section-title.text-left {
  text-align: left;
  margin-bottom: 0;
}

.page-title {
  font-family: "Syne", sans-serif;
  font-size: 38px;
  font-weight: 800;
  text-transform: uppercase;
  margin-bottom: 24px;
  letter-spacing: -0.5px;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 14px 28px;
  border-radius: 62px;
  font-weight: 600;
  font-size: 15px;
  cursor: pointer;
  border: none;
  transition: all 0.25s ease;
}
.btn--primary {
  background: linear-gradient(135deg, #a855f7 0%, #d900ff 100%);
  color: #ffffff;
  box-shadow: 0 4px 15px rgba(217, 0, 255, 0.4);
}
.btn--primary:hover {
  box-shadow: 0 6px 20px rgba(217, 0, 255, 0.6);
  transform: translateY(-2px);
}
.btn--white {
  background-color: #ffffff;
  color: #000000;
  font-weight: 700;
}
.btn--white:hover {
  background-color: #f8f8f8;
  transform: translateY(-2px);
}
.btn--black {
  background-color: #000000;
  color: #ffffff;
  font-weight: 700;
  width: 100%;
  padding: 14px;
  border-radius: 62px;
}
.btn--black:hover {
  background-color: #222222;
}
.btn--outline {
  border: 1px solid rgba(0, 0, 0, 0.1);
  background-color: transparent;
  color: #000000;
  padding: 12px 54px;
  border-radius: 62px;
  font-weight: 500;
}
.btn--outline:hover {
  background-color: #000000;
  color: #ffffff;
}
.btn--sm {
  padding: 8px 18px;
  font-size: 13px;
  border-radius: 20px;
}
.btn--light {
  background-color: rgba(255, 255, 255, 0.9);
  color: #000;
  font-weight: 600;
}
.btn--light:hover {
  background-color: #ffffff;
}

.top-bar {
  background-color: #d900ff;
  color: #ffffff;
  font-size: 13px;
  font-weight: 500;
  padding: 8px 0;
}
.top-bar__container {
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
}
.top-bar__slider {
  display: flex;
  align-items: center;
  gap: 32px;
}
.top-bar__slider span {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  white-space: nowrap;
}
.top-bar__close {
  position: absolute;
  right: 16px;
  background: none;
  border: none;
  color: #ffffff;
  font-size: 18px;
  cursor: pointer;
  line-height: 1;
  opacity: 0.8;
}
.top-bar__close:hover {
  opacity: 1;
}

.header {
  background-color: #ffffff;
  color: #000000;
  padding: 18px 0;
  border-bottom: 1px solid rgba(0, 0, 0, 0.08);
  position: relative;
}
.header__container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}
.header__left {
  display: flex;
  align-items: center;
  gap: 16px;
}
.header .menu-toggle {
  display: none;
  background: transparent;
  border: none;
  color: #000000;
  font-size: 22px;
  cursor: pointer;
  padding: 4px;
}
.header__logo .logo-text {
  font-family: "Syne", sans-serif;
  font-size: 24px;
  font-weight: 800;
  letter-spacing: -0.5px;
  color: #000000;
}
.header__logo .logo-highlight {
  color: #d900ff;
}
.header__nav {
  display: flex;
  align-items: center;
  gap: 24px;
}
.header__nav .mobile-nav__header,
.header__nav .mobile-search {
  display: none;
}
.header__nav .nav-link {

  font-size: 14px;
  font-weight: 500;
  display: flex;
  align-items: center;
  gap: 6px;
}
.header__nav .nav-link i {
  font-size: 10px;
}
.header__nav .nav-link:hover {
  color: #000000;
}
.header__search {
  position: relative;
  flex: 1;
  max-width: 480px;
}
.header__search .search-icon {
  position: absolute;
  left: 16px;
  top: 50%;
  transform: translateY(-50%);
  color: rgba(0, 0, 0, 0.4);
  font-size: 14px;
}
.header__search input {
  width: 100%;
  background-color: #f2f2f2;
  border: 1px solid transparent;
  border-radius: 62px;
  padding: 10px 16px 10px 42px;
  color: #000000;
  font-size: 14px;
  outline: none;
}
.header__search input::-moz-placeholder {
  color: rgba(0, 0, 0, 0.4);
}
.header__search input::placeholder {
  color: rgba(0, 0, 0, 0.4);
}
.header__search input:focus {
  border-color: #000000;
  background-color: #ffffff;
}
.header__actions {
  display: flex;
  align-items: center;
  gap: 16px;
}
.header__actions .action-btn {
  color: #000000;
  font-size: 18px;
  opacity: 0.9;
  background: transparent;
  border: none;
  cursor: pointer;
}
@media screen and (max-width: 992px) {
  .header__actions  .mobile-search-btn {
    display: none;
  }
}
.header__actions .action-btn:hover {
  opacity: 1;
  color: #d900ff;
}

.nav-overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100vw;
  height: 100vh;
  background-color: rgba(0, 0, 0, 0.7);
  backdrop-filter: blur(4px);
  z-index: 998;
  opacity: 0;
  visibility: hidden;
  transition: all 0.3s ease;
}
.nav-overlay.active {
  opacity: 1;
  visibility: visible;
}

/* ==========================================================================
   HOMEPAGE SPECIFIC STYLES
   ========================================================================== */
.hero {
  background-color: #f2f0f1;
  background-image: url("../img/banner/banner-remake.jpg");
  background-size: cover;
  background-position: center;
  padding: 60px 0 60px 0;
  position: relative;
  overflow: hidden;
  color:#FFF;
}
@media screen and (min-width: 992px) {
  .hero {
    padding: 60px 0 100px 0;
  }
}
.hero__container {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 40px;
  align-items: center;
}
.hero__content {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
}
.hero__title {
  font-family: "Syne", sans-serif;
  font-size: 48px;
  font-weight: 800;
  line-height: 1.05;
  text-transform: uppercase;
  letter-spacing: -1px;
  margin-bottom: 20px;
}
.hero__desc {
  font-size: 15px;
  max-width: 480px;
  margin-bottom: 32px;
  line-height: 1.6;
  color: rgba(255, 255, 255, 0.6);
}
@media screen and (max-width: 576px) {
  .hero__desc {
    max-width: 80%;
    font-size: 12px;
  }
}
.hero__btn {
  padding: 16px 54px;
  font-size: 16px;
  margin-bottom: 48px;
}
.hero__stats {
  display: flex;
  align-items: center;
  gap: 32px;
}
.hero__stats .stat-item  {
  width: max-content;
}
.hero__stats .stat-item .stat-num {
  font-family: "Syne", sans-serif;
  font-size: 32px;
  font-weight: 800;
  line-height: 1;
  margin-bottom: 4px;
}
.hero__stats .stat-item .stat-label {
  font-size: 13px;
  color: rgba(255, 255, 255, 0.6);
}
.hero__stats .stat-divider {
  width: 1px;
  height: 48px;
  background-color: rgba(0, 0, 0, 0.1);
}
.hero__image-wrapper {
  position: relative;
  display: flex;
  justify-content: center;
}
.hero__image-wrapper .hero__img {
  max-height: 520px;
  -o-object-fit: cover;
     object-fit: cover;
  border-radius: 20px;
}
.hero__image-wrapper .hero__neon-badge {
  position: absolute;
  bottom: 30px;
  left: 30px;
  background: rgba(0, 0, 0, 0.75);
  backdrop-filter: blur(10px);
  padding: 12px 24px;
  border-radius: 62px;
  color: #ffffff;
  font-weight: 800;
  font-size: 18px;
  display: flex;
  gap: 8px;
}
.hero__image-wrapper .hero__neon-badge .neon-text {
  color: #d900ff;
  text-shadow: 0 0 10px rgba(217, 0, 255, 0.8);
}

.design-banner-section {
  padding: 30px 0;
}
.design-banner-section .design-banner {
  background: linear-gradient(135deg, #000000 0%, #1a1a24 100%);
  border-radius: 20px;
  padding: 40px 60px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.15);
  border-radius: 20px;
background: var(--gd6, linear-gradient(90deg, #339 0%, #F0C 100%));
}
@media screen and (min-width: 992px) {
  .design-banner-section .design-banner {
    margin-top: -100px;
    position: relative;
  }
}
.design-banner-section .design-banner__title {
  font-family: "Syne", sans-serif;
  color: #ffffff;
  font-size: 26px;
  font-weight: 800;
  line-height: 1.25;
  letter-spacing: -0.5px;
}
@media screen and (max-width: 992px) {
  .design-banner-section .design-banner__title {
    font-size: 18px;
  }
}
.design-banner-section .design-banner__btn {
  white-space: nowrap;
  padding: 16px 32px;
  font-size: 14px;
  box-shadow: 0 4px 15px rgba(255, 255, 255, 0.2);
}
.design-banner-section .design-banner__btn i {
  color: #d900ff;
}

.category-section {
  padding: 40px 0;
}
.category-section .category-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}
.category-section .category-card {
  position: relative;
  height: 280px;
  border-radius: 20px;
  overflow: hidden;
  display: flex;
  align-items: flex-end;
  padding: 24px;
}
.category-section .category-card__bg {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-size: cover;
  background-position: center;
  transition: transform 0.4s ease;
}
.category-section .category-card__overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(to top, rgba(0, 0, 0, 0.8) 0%, rgba(0, 0, 0, 0.1) 70%);
}
.category-section .category-card__content {
  position: relative;
  z-index: 2;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 8px;
}
.category-section .category-card__content .badge {
  font-size: 11px;
  font-weight: 700;
  text-transform: uppercase;
  background-color: #d900ff;
  color: #ffffff;
  padding: 4px 10px;
  border-radius: 12px;
}
.category-section .category-card__content .category-card__title {
  font-family: "Syne", sans-serif;
  font-size: 24px;
  font-weight: 800;
  color: #ffffff;
}
.category-section .category-card:hover .category-section .category-card__bg {
  transform: scale(1.06);
}

.products-section {
  padding: 50px 0;
}
.products-section .products-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
}
.products-section .view-all-wrapper {
  display: flex;
  justify-content: center;
  margin-top: 36px;
}

.testimonials-section {
  padding: 50px 0;
}
.testimonials-section .section-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 32px;
}
.testimonials-section .section-header .slider-arrows {
  display: flex;
  gap: 12px;
}
.testimonials-section .section-header .slider-arrows .arrow-btn {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  border: 1px solid rgba(0, 0, 0, 0.1);
  background-color: #ffffff;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  font-size: 14px;
  color: #000000;
  transition: all 0.2s ease;
}
.testimonials-section .section-header .slider-arrows .arrow-btn:hover {
  background-color: #000000;
  color: #ffffff;
}
.testimonials-section .testimonials-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}
/* Once slick.js initializes the slider, it rebuilds the DOM with its own
   .slick-list/.slick-track wrappers, so the grid layout above only serves
   as a static no-JS fallback. Slick's per-slide gap comes from padding on
   .slick-slide offset by a negative margin on .slick-list, not CSS `gap`. */
.testimonials-section .testimonials-grid.slick-initialized {
  display: block;
}
.testimonials-section .testimonials-grid .slick-list {
  margin: 0 -10px;
}
.testimonials-section .testimonials-grid .slick-slide {
  padding: 10px;
  margin:5px;
  min-height: 180px;
}
.testimonials-section .testimonials-grid .slick-track {
  display: flex;
}
.testimonials-section .testimonials-grid .slick-slide > div {
  height: 100%;
}
.testimonials-section .testimonial-card {
  border: 1px solid rgba(0, 0, 0, 0.1);
  border-radius: 20px;
  padding: 24px;
  background-color: #ffffff;
  display: flex;
  flex-direction: column;
  gap: 12px;
  height: 100%;
}
.testimonials-section .testimonial-card__stars {
  color: #ffc107;
  display: flex;
  gap: 4px;
  font-size: 14px;
}
.testimonials-section .testimonial-card__author {
  display: flex;
  align-items: center;
  gap: 6px;
}
.testimonials-section .testimonial-card__author .author-name {
  font-size: 16px;
  font-weight: 700;
  color: #000000;
}
.testimonials-section .testimonial-card__author .verified-icon {
  color: #01b763;
  font-size: 14px;
}
.testimonials-section .testimonial-card__text {
  font-size: 14px;
  color: rgba(0, 0, 0, 0.6);
  line-height: 1.6;
}

/* Responsive Rules for Homepage */
@media screen and (max-width: 992px) {
  .hero {
    padding-top: 30px;
  }
  .hero__container {
    grid-template-columns: 1fr;
    text-align: center;
  }
  .hero__content {
    align-items: center;
  }
  .hero__title {
    font-size: 36px;
  }
  .hero__stats {
    justify-content: center;
  }
  .design-banner-section .design-banner {
    flex-direction: column;
    text-align: center;
    padding: 30px 24px;
  }
  .category-section .category-grid {
    grid-template-columns: 1fr;
  }
  .products-section .products-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  .testimonials-section .testimonials-grid {
    grid-template-columns: 1fr;
  }
}
@media screen and (max-width: 576px) {
  .hero__title {
    font-size: 19px;
  }
  .hero__stats {
    gap: 10px;
  }
  .hero__stats .stat-item .stat-num {
    font-size: 14px;
  }
}
.breadcrumbs {
  display: flex;
  align-items: center;
  gap: 12px;
  font-size: 14px;
  color: rgba(0, 0, 0, 0.6);
  margin-bottom: 20px;
  padding-top: 30px;
}
.breadcrumbs i {
  font-size: 10px;
  color: rgba(0, 0, 0, 0.4);
}
.breadcrumbs li.active {
  color: #000000;
  font-weight: 600;
}

.cart-page {
  padding: 24px 0 60px 0;
}

.cart-layout {
  display: grid;
  grid-template-columns: 1fr 480px;
  gap: 32px;
  align-items: start;
}

.cart-items-list {
  border: 1px solid rgba(0, 0, 0, 0.1);
  border-radius: 20px;
  padding: 16px 24px;
  background-color: #ffffff;
}

.cart-item {
  display: flex;
  gap: 20px;
  padding: 20px 0;
  border-bottom: 1px solid rgba(0, 0, 0, 0.08);
}
.cart-item:last-child {
  border-bottom: none;
}
.cart-item__img {
  width: 110px;
  height: 110px;
  border-radius: 12px;
  overflow: hidden;
  background-color: #121216;
  flex-shrink: 0;
}
.cart-item__img img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}
.cart-item__details {
  flex: 1;
  display: flex;
  flex-direction: column;
}
.cart-item__header {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  margin-bottom: 4px;
}
.cart-item__title {
  font-size: 16px;
  font-weight: 700;
  color: #000000;
}
.cart-item__delete {
  background: transparent;
  border: none;
  color: #ff3333;
  font-size: 18px;
  cursor: pointer;
}
.cart-item__delete:hover {
  opacity: 0.8;
}
.cart-item__meta {
  font-size: 12px;
  color: #000000;
  margin-bottom: 2px;
}
.cart-item__meta span {
  color: rgba(0, 0, 0, 0.5);
}
.cart-item__footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-top: auto;
  padding-top: 12px;
}
.cart-item__price {
  font-size: 20px;
  font-weight: 800;
  color: #000000;
}

.quantity-control {
  display: flex;
  align-items: center;
  background-color: #f0f0f0;
  border-radius: 62px;
  padding: 6px 16px;
  gap: 16px;
}
.quantity-control .qty-btn {
  background: transparent;
  border: none;
  font-size: 12px;
  color: #000000;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
}
.quantity-control .qty-btn:hover {
  opacity: 0.7;
}
.quantity-control .qty-val {
  font-size: 14px;
  font-weight: 700;
  color: #000000;
  min-width: 14px;
  text-align: center;
}

.order-summary-card {
  border: 1px solid rgba(0, 0, 0, 0.1);
  border-radius: 20px;
  padding: 24px;
  background-color: #ffffff;
}
.order-summary-card .summary-title {
  font-size: 20px;
  font-weight: 700;
  color: #000000;
  margin-bottom: 24px;
}
.order-summary-card .summary-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  font-size: 15px;
  margin-bottom: 16px;
}
.order-summary-card .summary-row .label {
  color: rgba(0, 0, 0, 0.6);
}
.order-summary-card .summary-row .value {
  font-weight: 700;
  color: #000000;
}
.order-summary-card .summary-row .value.discount {
  color: #ff3333;
}
.order-summary-card .summary-row.summary-total {
  margin-bottom: 24px;
}
.order-summary-card .summary-row.summary-total .label {
  color: #000000;
  font-weight: 600;
}
.order-summary-card .summary-row.summary-total .value {
  font-size: 24px;
  font-weight: 800;
}
.order-summary-card .summary-divider {
  height: 1px;
  background-color: rgba(0, 0, 0, 0.1);
  margin: 20px 0;
}
.order-summary-card .promo-box {
  display: flex;
  gap: 12px;
  margin-bottom: 20px;
}
.order-summary-card .promo-box .promo-input-wrap {
  position: relative;
  flex: 1;
}
.order-summary-card .promo-box .promo-input-wrap .promo-icon {
  position: absolute;
  left: 16px;
  top: 50%;
  transform: translateY(-50%);
  color: rgba(0, 0, 0, 0.4);
  font-size: 14px;
}
.order-summary-card .promo-box .promo-input-wrap input {
  width: 100%;
  background-color: #f0f0f0;
  border: none;
  border-radius: 62px;
  padding: 12px 16px 12px 42px;
  font-size: 14px;
  outline: none;
}
.order-summary-card .promo-box .promo-input-wrap input::-moz-placeholder {
  color: rgba(0, 0, 0, 0.4);
}
.order-summary-card .promo-box .promo-input-wrap input::placeholder {
  color: rgba(0, 0, 0, 0.4);
}
.order-summary-card .promo-box .promo-apply-btn {
  width: auto;
  padding: 12px 28px;
  font-size: 14px;
}
.order-summary-card .checkout-btn {
  width: 100%;
  padding: 16px;
  font-size: 15px;
}

.newsletter-section {
  padding: 40px 0 0 0;
  margin-bottom: -60px;
  position: relative;
  z-index: 10;
}

.newsletter-box {
  background-color: #000000;
  border-radius: 20px;
  padding: 36px 64px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.newsletter-box__title {
  font-family: "Syne", sans-serif;
  color: #ffffff;
  font-size: 32px;
  font-weight: 800;
  line-height: 1.15;
}
.newsletter-box__form {
  display: flex;
  flex-direction: column;
  gap: 12px;
  width: 340px;
}
.newsletter-box__form .input-wrap {
  position: relative;
}
.newsletter-box__form .input-wrap .input-icon {
  position: absolute;
  left: 16px;
  top: 50%;
  transform: translateY(-50%);
  color: rgba(0, 0, 0, 0.4);
  font-size: 15px;
}
.newsletter-box__form .input-wrap input {
  width: 100%;
  padding: 12px 16px 12px 42px;
  border-radius: 62px;
  border: none;
  font-size: 14px;
  outline: none;
  background-color: #ffffff;
}
.newsletter-box__form .input-wrap input::-moz-placeholder {
  color: rgba(0, 0, 0, 0.4);
}
.newsletter-box__form .input-wrap input::placeholder {
  color: rgba(0, 0, 0, 0.4);
}
.newsletter-box__form .btn {
  width: 100%;
  padding: 12px;
}

.footer {
  background-color: #f0f0f0;
  padding: 100px 0 30px 0;
}
.footer__main {
  display: grid;
  grid-template-columns: 2fr 3fr;
  gap: 60px;
  margin-bottom: 40px;
}
.footer__brand .logo-text {
  color: #000000 !important;
}
.footer__brand .footer__desc {
  font-size: 13px;
  color: rgba(0, 0, 0, 0.6);
  margin: 16px 0 24px 0;
  max-width: 260px;
  font-weight: 500;
}
.footer__socials {
  display: flex;
  gap: 12px;
}
.footer__socials .social-link {
  width: 28px;
  height: 28px;
  border-radius: 50%;
  background-color: #ffffff;
  border: 1px solid rgba(0, 0, 0, 0.1);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 12px;
  color: #000000;
}
.footer__socials .social-link:hover {
  background-color: #000000;
  color: #ffffff;
}
.footer__links-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}
.footer__col h4 {
  font-size: 14px;
  font-weight: 700;
  letter-spacing: 1px;
  margin-bottom: 20px;
  color: #000000;
}
.footer__col ul {
  display: flex;
  flex-direction: column;
  gap: 12px;
}
.footer__col ul a {
  color: rgba(0, 0, 0, 0.6);
  font-size: 14px;
}
.footer__col ul a:hover {
  color: #000000;
}
.footer__bottom {
  border-top: 1px solid rgba(0, 0, 0, 0.1);
  padding-top: 20px;
}
.footer__bottom .copyright {
  font-size: 13px;
  color: rgba(0, 0, 0, 0.5);
}

.checkout-page {
  padding: 24px 0 60px 0;
}

.checkout-layout {
  display: grid;
  grid-template-columns: 1fr 580px;
  gap: 32px;
  align-items: start;
}

.billing-details-card {
  border: 1px solid rgba(0, 0, 0, 0.1);
  border-radius: 20px;
  padding: 28px 24px;
  background-color: #ffffff;
}
.billing-details-card .card-title {
  font-size: 20px;
  font-weight: 700;
  color: #000000;
  margin-bottom: 24px;
}

.checkout-form {
  display: flex;
  flex-direction: column;
  gap: 20px;
}
.checkout-form .form-group {
  display: flex;
  flex-direction: column;
  gap: 8px;
}
.checkout-form .form-group label {
  font-size: 13px;
  font-weight: 600;
  color: rgba(0, 0, 0, 0.7);
  display: flex;
  align-items: center;
  gap: 8px;
}
.checkout-form .form-group label .badge-required {
  font-size: 10px;
  background-color: #ffe6e6;
  color: #ff3333;
  padding: 2px 8px;
  border-radius: 10px;
  font-weight: 600;
}
.checkout-form .form-control {
  width: 100%;
  background-color: #f2f2f2;
  border: 1px solid transparent;
  border-radius: 8px;
  padding: 12px 16px;
  font-size: 14px;
  color: #000000;
  outline: none;
  transition: all 0.2s ease;
}
.checkout-form .form-control:focus {
  background-color: #ffffff;
  border-color: #000000;
}
.checkout-form .form-control::-moz-placeholder {
  color: rgba(0, 0, 0, 0.35);
}
.checkout-form .form-control::placeholder {
  color: rgba(0, 0, 0, 0.35);
}
.checkout-form .textarea {
  resize: vertical;
  font-family: inherit;
}
.checkout-form .select-wrapper {
  position: relative;
}
.checkout-form .select-wrapper select.form-control {
  -moz-appearance: none;
       appearance: none;
  -webkit-appearance: none;
  cursor: pointer;
  padding-right: 36px;
  /* Bootstrap sets a fixed `height: calc(2.25rem + 2px)` on
     select.form-control; combined with style.css's `html { font-size:
     62.5% }` that resolves to ~26px, leaving almost no room for the
     12px/12px padding + text below to fit, so the selected option's
     label was rendered but effectively squashed to invisible. Override
     with auto height so the box sizes from padding + line-height instead. */
  height: auto;
}
.checkout-form .select-wrapper .select-arrow {
  position: absolute;
  right: 16px;
  top: 50%;
  transform: translateY(-50%);
  font-size: 12px;
  color: rgba(0, 0, 0, 0.5);
  pointer-events: none;
}
.checkout-form .form-row.two-cols {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
}

.order-review-column {
  display: flex;
  flex-direction: column;
  gap: 24px;
}

.order-summary-box {
  border: 1px solid rgba(0, 0, 0, 0.1);
  border-radius: 20px;
  padding: 24px;
  background-color: #ffffff;
}
.order-summary-box .card-title {
  font-size: 20px;
  font-weight: 700;
  color: #000000;
  margin-bottom: 20px;
}

.order-table-header {
  display: grid;
  grid-template-columns: 1fr 60px 80px;
  font-size: 12px;
  font-weight: 600;
  color: rgba(0, 0, 0, 0.4);
  padding-bottom: 12px;
  border-bottom: 1px solid rgba(0, 0, 0, 0.08);
}
.order-table-header .th-qty,
.order-table-header .th-subtotal {
  text-align: right;
}

.order-items-list {
  display: flex;
  flex-direction: column;
}
.order-items-list .order-item {
  display: grid;
  grid-template-columns: 1fr 60px 80px;
  align-items: center;
  padding: 16px 0;
  border-bottom: 1px solid rgba(0, 0, 0, 0.08);
}
.order-items-list .order-item__product {
  display: flex;
  align-items: center;
  gap: 12px;
}
.order-items-list .order-item__img {
  width: 48px;
  height: 48px;
  border-radius: 8px;
  overflow: hidden;
  background-color: #121216;
  flex-shrink: 0;
}
.order-items-list .order-item__img img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}
.order-items-list .order-item__name {
  font-size: 13px;
  font-weight: 700;
  color: #000000;
  line-height: 1.3;
}
.order-items-list .order-item__meta {
  font-size: 11px;
  color: rgba(0, 0, 0, 0.5);
}
.order-items-list .order-item__qty {
  font-size: 14px;
  font-weight: 700;
  color: #000000;
  text-align: right;
}
.order-items-list .order-item__price {
  font-size: 15px;
  font-weight: 800;
  color: #000000;
  text-align: right;
}

.order-options {
  padding: 16px 0;
  border-bottom: 1px solid rgba(0, 0, 0, 0.08);
  display: flex;
  flex-direction: column;
  gap: 12px;
}
.order-options .option-row {
  display: flex;
  align-items: center;
  gap: 16px;
  font-size: 13px;
}
.order-options .option-row .option-label {
  color: rgba(0, 0, 0, 0.6);
  width: 70px;
}
.order-options .option-row .option-checkboxes {
  display: flex;
  align-items: center;
  gap: 16px;
}

.checkbox-item {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  cursor: pointer;
  font-size: 13px;
  -webkit-user-select: none;
     -moz-user-select: none;
          user-select: none;
}
.checkbox-item input[type=radio],
.checkbox-item input[type=checkbox] {
  -moz-appearance: none;
       appearance: none;
  -webkit-appearance: none;
  width: 16px;
  height: 16px;
  border: 1.5px solid rgba(0, 0, 0, 0.3);
  background-color: #ffffff;
  cursor: pointer;
  outline: none;
  display: grid;
  place-content: center;
  transition: all 0.2s ease;
  margin: 0;
}
.checkbox-item input[type=radio]:checked,
.checkbox-item input[type=checkbox]:checked {
  border-color: #d900ff;
  background-color: #d900ff;
}
.checkbox-item input[type=radio]::before,
.checkbox-item input[type=checkbox]::before {
  content: "";
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background-color: #ffffff;
  transform: scale(0);
  transition: transform 0.15s ease-in-out;
}
.checkbox-item input[type=radio]:checked::before,
.checkbox-item input[type=checkbox]:checked::before {
  transform: scale(1);
}
.checkbox-item input[type=radio] {
  border-radius: 50%;
}
.checkbox-item input[type=checkbox] {
  border-radius: 3px;
}
.checkbox-item input[type=checkbox]::before {
  width: 4px;
  height: 7px;
  border: solid #ffffff;
  border-width: 0 2px 2px 0;
  border-radius: 0;
  transform: rotate(45deg) scale(0);
  margin-bottom: 2px;
}
.checkbox-item input[type=checkbox]:checked::before {
  transform: rotate(45deg) scale(1);
}
.checkbox-item .label-text {
  color: #000000;
}

.order-summary-total {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-top: 20px;
}
.order-summary-total .total-label {
  font-size: 18px;
  font-weight: 800;
  color: #000000;
}
.order-summary-total .total-amount {
  font-size: 26px;
  font-weight: 800;
  color: #000000;
}

.payment-box {
  border: 1px solid rgba(0, 0, 0, 0.1);
  border-radius: 20px;
  padding: 24px;
  background-color: #ffffff;
}
.payment-box .paypal-installment-note {
  font-size: 12px;
  color: rgba(0, 0, 0, 0.6);
  margin-bottom: 16px;
}
.payment-box .paypal-installment-note .paypal-blue {
  color: #003087;
  font-size: 14px;
}
.payment-box .paypal-installment-note a {
  color: #0070ba;
  text-decoration: underline;
}

.express-checkout-btns {
  display: flex;
  flex-direction: column;
  gap: 10px;
  margin-bottom: 24px;
}
.express-checkout-btns .btn-express {
  width: 100%;
  padding: 12px;
  border-radius: 62px;
  border: none;
  font-size: 15px;
  font-weight: 700;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
}
.express-checkout-btns .btn-paypal {
  background-color: #ffc439;
  color: #003087;
}
.express-checkout-btns .btn-paypal .paypal-logo {
  height: 18px;
}
.express-checkout-btns .two-btn-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 10px;
}
.express-checkout-btns .btn-apple-pay {
  background-color: #000000;
  color: #ffffff;
}
.express-checkout-btns .btn-google-pay {
  background-color: #000000;
  color: #ffffff;
}

.credit-card-section .card-subtitle {
  font-size: 16px;
  font-weight: 700;
  color: #000000;
  margin-bottom: 16px;
}
.credit-card-section .card-form {
  display: flex;
  flex-direction: column;
  gap: 12px;
}
.credit-card-section .card-input-wrap {
  position: relative;
  width: 100%;
}
.credit-card-section .card-input-wrap .card-input {
  width: 100%;
  background-color: #f6f6f6;
  border: 1px solid rgba(0, 0, 0, 0.08);
  border-radius: 8px;
  padding: 12px 42px 12px 16px;
  font-size: 14px;
  outline: none;
}
.credit-card-section .card-input-wrap .card-input:focus {
  border-color: #000000;
  background-color: #ffffff;
}
.credit-card-section .card-input-wrap .card-input::-moz-placeholder {
  color: rgba(0, 0, 0, 0.4);
}
.credit-card-section .card-input-wrap .card-input::placeholder {
  color: rgba(0, 0, 0, 0.4);
}
.credit-card-section .card-input-wrap .card-icon {
  position: absolute;
  right: 16px;
  top: 50%;
  transform: translateY(-50%);
  color: rgba(0, 0, 0, 0.4);
  font-size: 15px;
}
.credit-card-section .card-inputs-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
}
.credit-card-section .place-order-btn {
  margin-top: 8px;
  padding: 14px;
  font-size: 15px;
}

/* ==========================================================================
   RESPONSIVE MEDIA QUERIES (TABLET & MOBILE)
   ========================================================================== */
@media screen and (max-width: 768px) {
  .checkout-layout {
    grid-template-columns: 1fr;
  }
  .checkout-form .form-row.two-cols {
    grid-template-columns: 1fr;
  }
  .order-options .option-row {
    flex-direction: column;
    align-items: flex-start;
    gap: 6px;
  }
  .order-options .option-row .option-checkboxes {
    flex-direction: column;
    align-items: flex-start;
    gap: 8px;
  }
  .page-title {
    font-size: 22px;
    margin-bottom: 16px;
  }
  .cart-items-list {
    padding: 12px;
  }
  .cart-item {
    flex-direction: row;
    align-items: flex-start;
    gap: 12px;
    padding: 14px 0;
  }
  .cart-item__img {
    width: 48px;
    height: 48px;
    border-radius: 8px;
    flex-shrink: 0;
  }
  .cart-item__title {
    font-size: 13px;
    line-height: 1.3;
  }
  .cart-item__meta {
    font-size: 11px;
  }
  .cart-item__delete {
    font-size: 14px;
  }
  .cart-item__price {
    font-size: 15px;
  }
  .cart-item__footer {
    padding-top: 8px;
  }
  .quantity-control {
    padding: 3px 10px;
    gap: 10px;
  }
  .quantity-control .qty-btn {
    font-size: 10px;
  }
  .quantity-control .qty-val {
    font-size: 12px;
  }
  .cart-layout {
    grid-template-columns: 1fr;
  }
  .order-summary-card {
    width: 100%;
    padding: 16px;
  }
  .top-bar {
    font-size: 11px;
  }
  .top-bar__slider {
    gap: 12px;
    flex-wrap: wrap;
    justify-content: center;
  }
  .header {
    padding: 14px 0;
  }
  .header .menu-toggle {
    display: flex;
    align-items: center;
    justify-content: center;
  }
  .header .desktop-only {
    display: none !important;
  }
  .header__nav {
    position: fixed;
    top: 0;
    left: -320px;
    width: 290px;
    height: 100vh;
    background-color: #121216;
    flex-direction: column;
    align-items: flex-start;
    justify-content: flex-start;
    padding: 24px 20px;
    z-index: 999;
    transition: left 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    box-shadow: 5px 0 25px rgba(0, 0, 0, 0.7);
    overflow-y: auto;
    color: #ffffff;
  }
  .header__nav.active {
    left: 0;
  }
  .header__nav .mobile-nav__header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    width: 100%;
    margin-bottom: 24px;
  }
  .header__nav .mobile-nav__header .mobile-nav__close {
    background: transparent;
    border: none;
    color: #ffffff;
    font-size: 22px;
    cursor: pointer;
    padding: 4px;
  }
  .header__nav .mobile-search {
    display: block;
    position: relative;
    width: 100%;
    margin-bottom: 20px;
  }
  .header__nav .mobile-search .search-icon {
    position: absolute;
    left: 14px;
    top: 50%;
    transform: translateY(-50%);
    color: rgba(255, 255, 255, 0.4);
  }
  .header__nav .mobile-search input {
    width: 100%;
    background: rgba(255, 255, 255, 0.1);
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 20px;
    padding: 10px 12px 10px 38px;
    color: #ffffff;
    font-size: 13px;
  }
  .header__nav .nav-link {
    font-size: 16px;
    width: 100%;
    padding: 12px 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.08);
    justify-content: space-between;
  }
  .newsletter-section {
    margin-bottom: 0;
    padding: 20px 0;
  }
  .newsletter-box {
    flex-direction: column;
    padding: 28px 20px;
    text-align: center;
    gap: 20px;
  }
  .newsletter-box__title {
    font-size: 22px;
    line-height: 1.25;
  }
  .newsletter-box__form {
    width: 100%;
  }
  .footer {
    padding: 40px 0 24px 0;
  }
  .footer__main {
    grid-template-columns: 1fr;
    gap: 32px;
  }
  .footer__links-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 24px;
  }
}
@media screen and (max-width: 480px) {
  .promo-box {
    flex-direction: column;
  }
  .promo-box .promo-apply-btn {
    width: 100%;
  }
  .footer__links-grid {
    grid-template-columns: 1fr;
  }
}
/* ==========================================================================
   CATEGORY / SHOP PAGE SPECIFIC STYLES
   ========================================================================== */
.category-page {
  padding: 24px 0 60px 0;
}

.shop-layout {
  display: grid;
  grid-template-columns: 295px 1fr;
  gap: 28px;
  align-items: start;
  position: relative;
  padding-top: 30px;
}

.mobile-filter-btn {
  display: none;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 10px 20px;
  background-color: #f0f0f0;
  border: none;
  border-radius: 62px;
  font-size: 14px;
  font-weight: 600;
  cursor: pointer;
  margin-bottom: 20px;
}

.sidebar-filters {
  border: 1px solid rgba(0, 0, 0, 0.1);
  border-radius: 20px;
  padding: 20px 24px;
  background-color: #ffffff;
  display: flex;
  flex-direction: column;
}
.sidebar-filters__header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-bottom: 16px;
  border-bottom: 1px solid rgba(0, 0, 0, 0.1);
  margin-bottom: 16px;
}
.sidebar-filters__header h3 {
  font-size: 20px;
  font-weight: 700;
  color: #000000;
}
.sidebar-filters__header .filter-close-btn {
  display: none;
  background: transparent;
  border: none;
  font-size: 20px;
  cursor: pointer;
  color: #000000;
}
.sidebar-filters__header .filter-icon-desktop {
  color: rgba(0, 0, 0, 0.4);
  font-size: 18px;
}

.filter-group {
  padding: 16px 0;
  border-bottom: 1px solid rgba(0, 0, 0, 0.1);
}
.filter-group:last-of-type {
  border-bottom: none;
}
.filter-group__title {
  display: flex;
  align-items: center;
  justify-content: space-between;
  font-size: 16px;
  font-weight: 700;
  color: #000000;
  cursor: pointer;
  margin-bottom: 12px;
}
.filter-group__title i {
  font-size: 12px;
  color: rgba(0, 0, 0, 0.4);
}
.filter-group__content {
  display: flex;
  flex-direction: column;
  gap: 10px;
  max-height: 240px;
  overflow-y: auto;
  /* Custom Scrollbar */
}
.filter-group__content::-webkit-scrollbar {
  width: 4px;
}
.filter-group__content::-webkit-scrollbar-thumb {
  background-color: rgba(0, 0, 0, 0.15);
  border-radius: 4px;
}

.apply-filter-btn {
  margin-top: 20px;
  width: 100%;
  padding: 14px;
}

.filter-overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100vw;
  height: 100vh;
  background-color: rgba(0, 0, 0, 0.6);
  backdrop-filter: blur(4px);
  z-index: 998;
  opacity: 0;
  visibility: hidden;
  transition: all 0.3s ease;
}
.filter-overlay.active {
  opacity: 1;
  visibility: visible;
}

.shop-products {
  display: flex;
  flex-direction: column;
  gap: 24px;
}
.shop-products__top {
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.shop-products__top .showing-results {
  font-size: 14px;
  color: rgba(0, 0, 0, 0.6);
}
.shop-products__top .sort-by {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 14px;
  color: rgba(0, 0, 0, 0.6);
}
.shop-products__top .sort-by .sort-select {
  border: none;
  background: transparent;
  font-weight: 700;
  color: #000000;
  font-size: 14px;
  cursor: pointer;
  outline: none;
}

.category-products-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}

.product-card {
  display: flex;
  flex-direction: column;
  border-radius: 20px;
  overflow: hidden;
  transition: transform 0.25s ease, box-shadow 0.25s ease;
}
.product-card:hover {
  transform: translateY(-4px);
}
.product-card__img-wrap {
  width: 100%;
  aspect-ratio: 1;
  background-color: #f0eeed;
  border-radius: 20px;
  overflow: hidden;
}
.product-card__img-wrap img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}
.product-card__info {
  padding: 16px 0 0 0;
  display: flex;
  flex-direction: column;
  gap: 6px;
}
.product-card__title {
  font-size: 16px;
  font-weight: 700;
  color: #000000;
  line-height: 1.35;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}
.product-card__rating {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 13px;
}
.product-card__rating .stars {
  color: #ffc107;
  display: flex;
  gap: 2px;
  font-size: 12px;
}
.product-card__rating .rating-val {
  color: rgba(0, 0, 0, 0.6);
  font-weight: 500;
}
.product-card__price {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-top: 4px;
}
.product-card__price .price-current {
  font-size: 20px;
  font-weight: 800;
  color: #000000;
}
.product-card__price .price-original {
  font-size: 16px;
  font-weight: 700;
  color: rgba(0, 0, 0, 0.4);
  text-decoration: line-through;
}
.product-card__price .price-badge {
  background-color: #ffe6e6;
  color: #ff3333;
  font-size: 12px;
  font-weight: 600;
  padding: 4px 10px;
  border-radius: 62px;
}

.pagination {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-top: 24px;
  border-top: 1px solid rgba(0, 0, 0, 0.1);
  margin-top: 12px;
}
.pagination .page-btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 8px 14px;
  border: 1px solid rgba(0, 0, 0, 0.1);
  border-radius: 8px;
  font-size: 13px;
  font-weight: 600;
  color: #000000;
}
.pagination .page-btn:hover {
  background-color: #f0f0f0;
}
.pagination .page-numbers {
  display: flex;
  align-items: center;
  gap: 4px;
}
.pagination .page-numbers .page-num {
  width: 36px;
  height: 36px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 8px;
  font-size: 14px;
  font-weight: 600;
  color: rgba(0, 0, 0, 0.6);
}
.pagination .page-numbers .page-num:hover, .pagination .page-numbers .page-num.active {
  background-color: #f0f0f0;
  color: #000000;
}
.pagination .page-numbers .page-dots {
  color: rgba(0, 0, 0, 0.4);
  padding: 0 4px;
}

/* Category Responsive Rules */
@media screen and (max-width: 992px) {
  .shop-layout {
    grid-template-columns: 1fr;
  }
  .mobile-filter-btn {
    display: inline-flex;
  }
  .sidebar-filters {
    position: fixed;
    top: 0;
    left: -320px;
    width: 300px;
    height: 100vh;
    z-index: 999;
    overflow-y: auto;
    transition: left 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  }
  .sidebar-filters.active {
    left: 0;
  }
  .sidebar-filters__header .filter-close-btn {
    display: block;
  }
  .sidebar-filters__header .filter-icon-desktop {
    display: none;
  }
  .category-products-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}
@media screen and (max-width: 576px) {
  .category-products-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 14px;
  }
  .product-card__title {
    font-size: 14px;
  }
  .product-card__price .price-current {
    font-size: 16px;
  }
  .pagination .page-btn {
    padding: 6px 10px;
    font-size: 12px;
  }
  .pagination .page-numbers .page-num {
    width: 28px;
    height: 28px;
    font-size: 12px;
  }
}

/* ==========================================================================
   Additions for Laravel integration (not from original mockup)
   ========================================================================== */
.header__actions .action-btn {
  position: relative;
}
.icon-cart-wrap {
  display: inline-flex;
  align-items: center;
  justify-content: center;
}
.cart-count-badge {
  position: absolute;
  top: -6px;
  right: -8px;
  background: #d900ff;
  color: #fff;
  font-size: 10px;
  font-weight: 700;
  line-height: 1;
  min-width: 16px;
  height: 16px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 2px;
}
.mobile-search__form,
.header__search-form {
  display: contents;
}
.empty-state {
  text-align: center;
  padding: 60px 20px;
  font-size: 16px;
  color: #555;
}
.empty-state .btn {
  margin-top: 20px;
}
.filter-group__content .checkbox-item.disabled {
  opacity: 0.5;
  pointer-events: none;
}
.pagination .page-btn.disabled {
  opacity: 0.4;
  cursor: not-allowed;
  pointer-events: none;
}
/* PayPal Advanced Card Fields inject an iframe directly into these
   containers (no literal <input>), so the box styling has to live
   on the container itself instead of a child .card-input element. */
#card-name-field-container.card-input-wrap,
#card-number-field-container.card-input-wrap,
#card-expiry-field-container.card-input-wrap,
#card-cvv-field-container.card-input-wrap {
  background-color: #f6f6f6;
  border: 1px solid rgba(0, 0, 0, 0.08);
  border-radius: 8px;
  padding: 12px 42px 12px 16px;
  min-height: 44px;
  transition: border-color 0.2s ease, background-color 0.2s ease;
}
#card-name-field-container.card-input-wrap:focus-within,
#card-number-field-container.card-input-wrap:focus-within,
#card-expiry-field-container.card-input-wrap:focus-within,
#card-cvv-field-container.card-input-wrap:focus-within {
  border-color: #000000;
  background-color: #ffffff;
}

/* Apple Pay / Google Pay express buttons: always show a mockup-styled
   fallback; swap for the real SDK button automatically when eligible. */
#applepay-container {
  flex: 1;
}
#applepay-container .btn-express {
  height: 100%;
}
.gpay-wrap {
  position: relative;
  flex: 1;
}
.gpay-wrap #ggpay-container {
  width: 100%;
  height: 50px;
}
.gpay-wrap #ggpay-container:empty {
  display: none;
}
.gpay-wrap .gpay-fallback {
  display: none;
  width: 100%;
}
.gpay-wrap #ggpay-container:empty + .gpay-fallback {
  display: flex;
}
