@import url('https://fonts.googleapis.com/css2?family=Instrument+Sans:wght@300;400;500;600;700&family=Instrument+Serif:ital,wght@0,400;1,400&display=swap');

/* Variables */
:root {
  --brand-color: #121212;
  --brand-black: #121212;
  --brand-white: #ffffff;
  --text-color: #121212;
  --muted-color: #777777;
  --border-color: #e5e5e5;
  --color-sale: #d9342b;
  --radius-sm: 0px;
  --radius-md: 0px;
  --font-family: 'Instrument Sans', sans-serif;
  --transition-smooth: all 0.3s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

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

body {
  font-family: var(--font-family);
  color: var(--text-color);
  background-color: var(--brand-white);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}

a {
  color: var(--brand-black);
  text-decoration: none;
  transition: var(--transition-smooth);
}
a:hover {
  color: var(--muted-color);
}

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

/* Typography */
h1, h2, h3, h4, h5, h6 {
  font-family: var(--font-family);
  color: var(--brand-black);
  font-weight: 600;
  letter-spacing: -0.02em;
}

.text-uppercase-letter-spaced {
  text-transform: uppercase;
  letter-spacing: 0.1em;
}

/* Custom Buttons */
.btn-nova {
  font-family: var(--font-family);
  font-weight: 600;
  font-size: 0.85rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  padding: 0.85rem 1.75rem;
  border-radius: var(--radius-sm);
  transition: var(--transition-smooth);
  border: 1px solid transparent;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
}

.btn-nova-primary {
  background-color: var(--brand-color);
  color: var(--brand-white);
}
.btn-nova-primary:hover {
  background-color: var(--brand-black);
  color: var(--brand-white);
  transform: translateY(-1px);
}

.btn-nova-secondary {
  background-color: transparent;
  border-color: var(--brand-black);
  color: var(--brand-black);
}
.btn-nova-secondary:hover {
  background-color: var(--brand-black);
  color: var(--brand-white);
  transform: translateY(-1px);
}

.btn-nova-text {
  background: none;
  border: none;
  padding: 0;
  color: var(--brand-black);
  border-bottom: 1px solid var(--brand-black);
  border-radius: 0;
  font-weight: 600;
  text-transform: uppercase;
  font-size: 0.8rem;
  letter-spacing: 0.05em;
}
.btn-nova-text:hover {
  color: var(--muted-color);
  border-color: var(--muted-color);
}

/* Announcement Bar */
.announcement-bar {
  background-color: #000000 !important;
  color: var(--brand-white);
  font-size: 0.7rem;
  font-weight: 500;
  letter-spacing: 0.1em;
  padding: 0.6rem 0;
  position: relative;
  overflow: hidden;
}

.announcement-bar .carousel-item {
  text-align: center;
  transition: transform 0.6s ease-in-out;
}

.announcement-bar a {
  color: var(--brand-white);
  text-transform: uppercase;
}

.announcement-bar .carousel-control-prev,
.announcement-bar .carousel-control-next {
  width: 40px;
  opacity: 0.6;
  transition: opacity 0.2s ease;
}

.announcement-bar .carousel-control-prev:hover,
.announcement-bar .carousel-control-next:hover {
  opacity: 1;
}

.announcement-bar .carousel-control-prev-icon,
.announcement-bar .carousel-control-next-icon {
  width: 12px;
  height: 12px;
}

/* Header */
.site-header {
  background-color: var(--brand-white);
  border-bottom: 1px solid var(--border-color);
  z-index: 1020;
  position: sticky;
  top: 0;
  transition: transform 0.3s cubic-bezier(0.25, 0.46, 0.45, 0.94), background-color 0.3s ease, box-shadow 0.3s ease;
  width: 100%;
}

.site-header--hidden {
  transform: translateY(-110%);
}

.site-header--sticky {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  background-color: rgba(255, 255, 255, 0.98);
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.04);
  border-bottom: 1px solid rgba(0, 0, 0, 0.05);
}

.brand-logo-text {
  font-family: 'Instrument Serif', serif !important;
  font-size: 2.2rem !important;
  font-style: italic !important;
  font-weight: 400 !important;
  letter-spacing: -0.01em !important;
  color: #121212 !important;
  text-transform: none !important;
  text-decoration: none !important;
  transition: opacity 0.2s ease;
}

.brand-logo-text:hover {
  opacity: 0.8;
}

.navbar-brand {
  padding: 0;
}

.nav-link-nova {
  font-size: 0.8rem;
  font-weight: 500;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: #121212 !important;
  padding: 0.5rem 0.8rem;
  position: relative;
  transition: color 0.2s ease;
}

.nav-link-nova:hover {
  color: #777777 !important;
}

.nav-link-nova::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0.8rem;
  right: 0.8rem;
  height: 1px;
  background-color: #121212;
  transform: scaleX(0);
  transition: transform 0.3s cubic-bezier(0.25, 0.46, 0.45, 0.94);
  transform-origin: center;
}

.nav-link-nova:hover::after,
.nav-link-nova.active::after {
  transform: scaleX(1);
}

.header-icons .icon-btn {
  background: none;
  border: none;
  padding: 0.6rem;
  color: #121212;
  position: relative;
  transition: transform 0.2s ease, color 0.2s ease;
  display: inline-flex;
  align-items: center;
  justify-content: center;
}

.header-icons .icon-btn:hover {
  color: #777777;
}

.header-icons svg {
  stroke-width: 1.5px !important;
}

.cart-badge {
  position: absolute;
  top: 4px;
  right: 4px;
  background-color: #000000;
  color: #ffffff;
  font-size: 0.6rem;
  font-weight: 600;
  min-width: 14px;
  height: 14px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 2px;
}

/* Absolute centering of Logo on Mobile */
@media (max-width: 991.98px) {
  .navbar-brand-wrapper {
    position: absolute;
    left: 50%;
    transform: translateX(-50%);
    z-index: 1;
  }
}

/* Hero Section */
.hero-section {
  position: relative;
  background-color: #f5f5f5;
  height: 80vh;
  min-height: 500px;
  display: flex;
  align-items: center;
  overflow: hidden;
}
.hero-bg {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-size: cover;
  background-position: center;
  z-index: 1;
}
.hero-bg::after {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.15);
}
.hero-content {
  position: relative;
  z-index: 2;
  color: var(--brand-white);
  max-width: 600px;
}
.hero-content h1 {
  color: var(--brand-white);
  font-size: 3.5rem;
  font-weight: 800;
  line-height: 1.1;
  margin-bottom: 1.5rem;
}
.hero-subtitle {
  font-size: 0.9rem;
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 0.15em;
  margin-bottom: 0.5rem;
}
.hero-description {
  font-size: 1.1rem;
  margin-bottom: 2rem;
  color: rgba(255,255,255,0.9);
}

/* Product Card */
.product-card {
  position: relative;
  margin-bottom: 2rem;
  background: var(--brand-white);
}

.product-image-container {
  position: relative;
  aspect-ratio: 3/4;
  overflow: hidden;
  background-color: #f7f7f7;
}

.product-image-container img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.8s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.product-image-container .hover-img {
  position: absolute;
  top: 0;
  left: 0;
  opacity: 0;
  transition: opacity 0.8s cubic-bezier(0.25, 0.46, 0.45, 0.94), transform 0.8s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.product-card:hover .product-image-container .main-img {
  opacity: 0;
  transform: scale(1.05);
}

.product-card:hover .product-image-container .hover-img {
  opacity: 1;
  transform: scale(1.05);
}

.card-badge {
  position: absolute;
  top: 12px;
  left: 12px;
  z-index: 5;
  background-color: var(--brand-color);
  color: var(--brand-white);
  font-size: 0.7rem;
  font-weight: 700;
  text-transform: uppercase;
  padding: 0.35rem 0.75rem;
  letter-spacing: 0.05em;
  border-radius: 0;
}

.badge-sale {
  background-color: var(--color-sale);
}

.product-quick-add {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  transform: translateY(100%);
  transition: var(--transition-smooth);
  z-index: 10;
}

.product-card:hover .product-quick-add {
  transform: translateY(0);
}

.product-info {
  padding: 1rem 0;
}

.product-category {
  font-size: 0.75rem;
  color: var(--muted-color);
  text-transform: uppercase;
  letter-spacing: 0.05em;
  margin-bottom: 0.25rem;
}

.product-title {
  font-size: 0.95rem;
  font-weight: 600;
  margin-bottom: 0.35rem;
  line-height: 1.3;
}
.product-title a {
  color: var(--brand-black);
}
.product-title a:hover {
  color: var(--muted-color);
}

.product-price {
  font-size: 0.9rem;
  font-weight: 700;
}

.price-regular {
  color: var(--brand-black);
}

.price-sale {
  color: var(--color-sale);
  margin-right: 0.5rem;
}

.price-compare {
  text-decoration: line-through;
  color: var(--muted-color);
  font-size: 0.85rem;
  font-weight: 400;
}

.product-colors-preview {
  display: flex;
  gap: 6px;
  margin-top: 0.5rem;
}

.color-dot {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  border: 1px solid rgba(0,0,0,0.1);
  display: inline-block;
}

/* Category Page Toolbar */
.category-toolbar {
  padding: 1rem 0;
  border-top: 1px solid var(--border-color);
  border-bottom: 1px solid var(--border-color);
  margin-bottom: 2rem;
}

.filter-sidebar {
  border-right: 1px solid var(--border-color);
  padding-right: 1.5rem;
}

.filter-section {
  padding-bottom: 1.5rem;
  margin-bottom: 1.5rem;
  border-bottom: 1px solid var(--border-color);
}

.filter-title {
  font-size: 0.85rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  margin-bottom: 1rem;
}

.size-chips, .color-swatches {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.size-chip-label {
  border: 1px solid var(--border-color);
  padding: 0.4rem 0.8rem;
  font-size: 0.75rem;
  font-weight: 600;
  cursor: pointer;
  transition: var(--transition-smooth);
}
.size-chip-label:hover {
  border-color: var(--brand-black);
}
input[type="checkbox"]:checked + .size-chip-label,
input[type="radio"]:checked + .size-chip-label {
  background-color: var(--brand-black);
  color: var(--brand-white);
  border-color: var(--brand-black);
}

.color-swatch-label {
  width: 28px;
  height: 28px;
  border-radius: 50%;
  cursor: pointer;
  border: 1px solid var(--border-color);
  position: relative;
  display: block;
}
input[type="checkbox"]:checked + .color-swatch-label::after,
input[type="radio"]:checked + .color-swatch-label::after {
  content: '';
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background-color: var(--brand-white);
  mix-blend-mode: difference;
}

/* Product Details Page */
.product-gallery-container {
  display: flex;
  gap: 1rem;
}

.product-thumbnails {
  display: flex;
  flex-direction: column;
  gap: 10px;
  width: 80px;
}

.thumbnail-img {
  aspect-ratio: 3/4;
  object-fit: cover;
  cursor: pointer;
  border: 1px solid transparent;
  transition: var(--transition-smooth);
  opacity: 0.6;
}
.thumbnail-img:hover, .thumbnail-img.active {
  opacity: 1;
  border-color: var(--brand-black);
}

.product-main-image-wrapper {
  flex-grow: 1;
  position: relative;
  aspect-ratio: 3/4;
  background-color: #f7f7f7;
  overflow: hidden;
  cursor: zoom-in;
}
.product-main-image-wrapper img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.purchase-panel {
  padding-left: 1.5rem;
}

.purchase-panel h1 {
  font-size: 2rem;
  margin-bottom: 0.75rem;
}

.purchase-panel .price-container {
  font-size: 1.5rem;
  font-weight: 700;
  margin-bottom: 1.5rem;
}

.quantity-stepper {
  display: inline-flex;
  border: 1px solid var(--border-color);
  align-items: center;
}
.quantity-btn {
  background: none;
  border: none;
  width: 40px;
  height: 40px;
  font-size: 1rem;
  font-weight: 600;
  cursor: pointer;
  transition: var(--transition-smooth);
}
.quantity-btn:hover {
  background-color: #f5f5f5;
}
.quantity-input {
  width: 50px;
  height: 40px;
  border: none;
  border-left: 1px solid var(--border-color);
  border-right: 1px solid var(--border-color);
  text-align: center;
  font-weight: 600;
  font-size: 0.9rem;
}

/* Accordion Clean Minimal Style */
.accordion-nova {
  --bs-accordion-border-color: var(--border-color);
  --bs-accordion-border-radius: 0;
  --bs-accordion-inner-border-radius: 0;
  --bs-accordion-btn-padding-x: 0;
  --bs-accordion-btn-padding-y: 1rem;
  --bs-accordion-btn-bg: transparent;
  --bs-accordion-active-bg: transparent;
  --bs-accordion-active-color: var(--brand-black);
  --bs-accordion-btn-focus-box-shadow: none;
}
.accordion-nova .accordion-item {
  border-left: none;
  border-right: none;
  border-radius: 0;
}
.accordion-nova .accordion-button {
  font-size: 0.85rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  color: var(--brand-black);
}
.accordion-nova .accordion-button:not(.collapsed) {
  border-bottom: 0;
}
.accordion-nova .accordion-body {
  padding: 0 0 1.5rem 0;
  font-size: 0.9rem;
  color: var(--muted-color);
}

/* Mini Cart Drawer */
.mini-cart-drawer {
  width: 400px !important;
}

.cart-item {
  display: flex;
  gap: 1rem;
  padding: 1.25rem 0;
  border-bottom: 1px solid var(--border-color);
}

.cart-item-img {
  width: 80px;
  aspect-ratio: 3/4;
  object-fit: cover;
  background-color: #f7f7f7;
}

.cart-item-details {
  flex-grow: 1;
}

.cart-item-title {
  font-size: 0.9rem;
  font-weight: 600;
  margin-bottom: 0.25rem;
  line-height: 1.3;
}

.cart-item-variant {
  font-size: 0.75rem;
  color: var(--muted-color);
  margin-bottom: 0.5rem;
}

.cart-item-price {
  font-size: 0.85rem;
  font-weight: 700;
}

.cart-item-remove {
  background: none;
  border: none;
  color: var(--muted-color);
  font-size: 0.8rem;
  cursor: pointer;
  padding: 0.25rem;
  transition: var(--transition-smooth);
}
.cart-item-remove:hover {
  color: var(--color-sale);
}

/* Order Summary Column */
.summary-panel {
  background-color: #f9f9f9;
  padding: 2rem;
  border: 1px solid var(--border-color);
}

.summary-row {
  display: flex;
  justify-content: space-between;
  margin-bottom: 0.75rem;
  font-size: 0.9rem;
}
.summary-row.total {
  border-top: 1px solid var(--border-color);
  padding-top: 1rem;
  margin-top: 1rem;
  font-size: 1.15rem;
  font-weight: 700;
  color: var(--brand-black);
}

/* Forms Centered Forms Card */
.form-card {
  max-width: 440px;
  margin: 4rem auto;
  padding: 2.5rem;
  border: 1px solid var(--border-color);
  background-color: var(--brand-white);
}

.form-card h2 {
  font-size: 1.75rem;
  font-weight: 700;
  margin-bottom: 1.5rem;
  text-align: center;
}

.form-control-nova {
  border-radius: 0;
  border: 1px solid var(--border-color);
  padding: 0.75rem 1rem;
  font-size: 0.9rem;
  transition: var(--transition-smooth);
}
.form-control-nova:focus {
  border-color: var(--brand-black);
  box-shadow: none;
  outline: none;
}

.form-label-nova {
  font-size: 0.75rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  color: var(--brand-black);
  margin-bottom: 0.4rem;
}

.password-wrapper {
  position: relative;
}
.password-toggle-btn {
  position: absolute;
  right: 12px;
  top: 50%;
  transform: translateY(-50%);
  background: none;
  border: none;
  color: var(--muted-color);
  cursor: pointer;
  font-size: 0.9rem;
  z-index: 5;
}

/* Lightbox Modal */
.lightbox-modal .modal-content {
  background-color: transparent;
  border: none;
}
.lightbox-modal .modal-body {
  position: relative;
  padding: 0;
}
.lightbox-modal img {
  width: 100%;
  max-height: 85vh;
  object-fit: contain;
}
.lightbox-btn {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  background: rgba(255, 255, 255, 0.85);
  border: none;
  width: 44px;
  height: 44px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.2rem;
  cursor: pointer;
  transition: var(--transition-smooth);
}
.lightbox-btn:hover {
  background-color: var(--brand-white);
  transform: translateY(-50%) scale(1.05);
}
.lightbox-prev { left: 15px; }
.lightbox-next { right: 15px; }
.lightbox-close {
  position: absolute;
  top: -40px;
  right: 0;
  background: none;
  border: none;
  color: var(--brand-white);
  font-size: 2rem;
  cursor: pointer;
}

/* Footer */
.site-footer {
  background-color: #fafafa;
  border-top: 1px solid var(--border-color);
  padding: 5rem 0 2rem 0;
  font-size: 0.85rem;
  color: var(--muted-color);
}
.site-footer h5 {
  font-size: 0.85rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  margin-bottom: 1.5rem;
}
.footer-links {
  list-style: none;
  padding-left: 0;
}
.footer-links li {
  margin-bottom: 0.75rem;
}
.footer-links a {
  color: var(--muted-color);
}
.footer-links a:hover {
  color: var(--brand-black);
  padding-left: 4px;
}
.footer-bottom {
  border-top: 1px solid var(--border-color);
  margin-top: 4rem;
  padding-top: 2rem;
}

/* Carousel controls styling */
.carousel-control-prev-icon,
.carousel-control-next-icon {
  background-color: var(--brand-black);
  border-radius: 50%;
  background-size: 50% 50%;
  width: 40px;
  height: 40px;
}

/* Editorial Story section */
.editorial-section {
  padding: 6rem 0;
}
.editorial-img-wrapper {
  overflow: hidden;
  aspect-ratio: 1/1;
  background-color: #f7f7f7;
}
.editorial-img-wrapper img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 1.2s ease;
}
.editorial-section:hover .editorial-img-wrapper img {
  transform: scale(1.03);
}

/* Search Modal styling */
.search-modal-content {
  border-radius: 0;
  border: none;
}
.search-results-container {
  max-height: 400px;
  overflow-y: auto;
}
.search-result-item {
  display: flex;
  gap: 1rem;
  padding: 0.75rem 0;
  border-bottom: 1px solid var(--border-color);
  align-items: center;
}
.search-result-item img {
  width: 50px;
  aspect-ratio: 3/4;
  object-fit: cover;
  background-color: #f7f7f7;
}
.search-result-item-info {
  flex-grow: 1;
}
.search-result-item-name {
  font-size: 0.85rem;
  font-weight: 600;
  margin-bottom: 0.15rem;
}
.search-result-item-price {
  font-size: 0.8rem;
  font-weight: 700;
}

/* Utilities & Animations */
.cursor-pointer { cursor: pointer; }
.transition-smooth { transition: var(--transition-smooth); }

@keyframes shake {
  0%, 100% { transform: translateX(0); }
  25% { transform: translateX(-6px); }
  75% { transform: translateX(6px); }
}
.shake-element {
  animation: shake 0.3s ease-in-out;
}

/* Responsive Overrides */
@media (max-width: 1024px) {
  .hero-section {
    height: 65vh;
  }
  .hero-content h1 {
    font-size: 2.75rem;
  }
}

@media (max-width: 768px) {
  .hero-section {
    height: 50vh;
  }
  .hero-content h1 {
    font-size: 2rem;
  }
  .purchase-panel {
    padding-left: 0;
    margin-top: 2rem;
  }
  .product-gallery-container {
    flex-direction: column-reverse;
  }
  .product-thumbnails {
    flex-direction: row;
    width: 100%;
    overflow-x: auto;
  }
  .thumbnail-img {
    width: 70px;
  }
  .mini-cart-drawer {
    width: 100% !important;
  }
  .site-footer {
    padding: 3rem 0 1.5rem 0;
  }
  .footer-bottom {
    margin-top: 2rem;
    padding-top: 1.5rem;
  }
  .form-card {
    padding: 1.5rem;
    margin: 2rem auto;
  }
}

@media (max-width: 375px) {
  .navbar-brand {
    font-size: 1.25rem;
  }
  .hero-content h1 {
    font-size: 1.75rem;
  }
  .product-title {
    font-size: 0.85rem;
  }
  .product-price {
    font-size: 0.8rem;
  }
}

/* Mega Menu Customizations */
@media (min-width: 992px) {
  .mega-menu-item:hover > .dropdown-menu {
    display: block;
    margin-top: 0;
  }
}
.mega-menu-dropdown {
  margin-top: 0;
  border-top: 1px solid var(--border-color) !important;
  animation: fadeInDown 0.3s cubic-bezier(0.25, 0.46, 0.45, 0.94);
  left: 0;
  right: 0;
}
.mega-menu-dropdown .dropdown-item {
  transition: transform 0.2s ease, color 0.2s ease;
}
.mega-menu-dropdown .dropdown-item:hover {
  background-color: transparent !important;
  color: var(--brand-black) !important;
  transform: translateX(4px);
}
@keyframes fadeInDown {
  from {
    opacity: 0;
    transform: translateY(8px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}
@media (max-width: 991.98px) {
  .mega-menu-item.position-static {
    position: relative !important;
  }
}

/* Custom Hero Section Redesign */
.custom-hero-wrapper {
  height: 80vh;
  min-height: 500px;
  display: flex;
  align-items: flex-end;
  padding-bottom: 4rem;
}
.custom-hero-bg {
  /*background-image: url('https://images.unsplash.com/photo-1603252109303-2751441dd157?w=1600&auto=format&fit=crop&q=80');*/
}
.custom-hero-bg::after {
  background: rgba(0, 0, 0, 0.35); /* Darker overlay for text readability */
}
.custom-hero-content-row {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  align-items: flex-start;
  width: 100%;
  z-index: 2;
  position: relative;
  gap: 1.5rem;
}
@media (min-width: 768px) {
  .custom-hero-content-row {
    flex-direction: row;
    align-items: flex-end;
  }
}
.custom-hero-left {
  color: #fff;
  text-align: left;
}
.custom-hero-subtitle {
  font-family: 'Instrument Serif', serif;
  font-style: italic;
  font-size: 1.85rem;
  font-weight: 400;
  display: block;
  margin-bottom: -0.1rem;
}
.custom-hero-title {
  font-family: 'Instrument Serif', serif;
  font-size: 5rem;
  font-weight: 400;
  color: #fff;
  margin-bottom: 0;
  line-height: 1.1;
  letter-spacing: -0.02em;
}
.custom-hero-right {
  color: #fff;
  text-align: left;
  max-width: 450px;
  padding-bottom: 0.5rem;
}
.custom-hero-desc {
  font-family: 'Instrument Sans', sans-serif;
  font-size: 1.05rem;
  font-weight: 400;
  margin-bottom: 0;
  line-height: 1.5;
  color: rgba(255, 255, 255, 0.95);
}

@media (max-width: 991.98px) {
  .custom-hero-title {
    font-size: 3.5rem;
  }
  .custom-hero-subtitle {
    font-size: 1.5rem;
  }
}
@media (max-width: 767.98px) {
  .custom-hero-wrapper {
    padding-bottom: 2rem;
  }
  .custom-hero-title {
    font-size: 2.75rem;
  }
  .custom-hero-subtitle {
    font-size: 1.35rem;
  }
  .custom-hero-right {
    padding-bottom: 0;
  }
}

/* Topslider Custom Section */
.topslider-custom {
  background-color: #f3f0e8;
  color: #000;
  padding: 12px 0;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  font-family: 'Instrument Sans', sans-serif;
  border-bottom: 1px solid rgba(0,0,0,0.05);
}
.topslider-content {
  font-size: 0.9rem;
  font-weight: 400;
  letter-spacing: 0.01em;
  display: flex;
  align-items: center;
}
.topslider-content strong {
  font-weight: 700;
  margin: 0 4px;
}
.topslider-btn {
  background: none;
  border: none;
  padding: 5px 15px;
  cursor: pointer;
  color: #000;
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  display: flex;
  align-items: center;
  justify-content: center;
  transition: opacity 0.2s ease;
}
.topslider-btn-prev {
  left: 10%;
}
.topslider-btn-next {
  right: 10%;
}
.topslider-btn:hover {
  opacity: 0.6;
}
@media (max-width: 991.98px) {
  .topslider-btn-prev {
    left: 5%;
  }
  .topslider-btn-next {
    right: 5%;
  }
}
@media (max-width: 767.98px) {
  .topslider-btn-prev {
    left: 2%;
  }
  .topslider-btn-next {
    right: 2%;
  }
  .topslider-content {
    font-size: 0.8rem;
  }
}

/* Custom Navbar Section */
.navbar-custom {
  background-color: transparent;
  color: #ffffff;
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 1030;
  transition: background-color 0.3s ease, transform 0.3s ease;
}
.navbar-custom:hover {
  background-color: #222222;
}
.navbar-custom.scrolled {
  background-color: #222222;
  position: fixed;
  box-shadow: 0 4px 10px rgba(0,0,0,0.1);
  animation: slideDownNav 0.3s forwards;
}
@keyframes slideDownNav {
  from { transform: translateY(-100%); }
  to { transform: translateY(0); }
}
.navbar-custom-logo a {
  font-family: 'Helvetica Neue', Arial, sans-serif;
  font-weight: 900;
  font-size: 2.2rem;
  color: #ffffff;
  text-decoration: none;
  letter-spacing: -0.05em;
  display: block;
  line-height: 1;
}
.navbar-custom-links {
  font-family: 'Instrument Sans', sans-serif;
  font-size: 1rem;
  letter-spacing: 0.02em;
}
.navbar-custom-links .nav-item-custom {
  color: #fdfdfd;
  text-decoration: none;
  transition: color 0.2s ease;
  font-weight: 500;
}
.navbar-custom-links .nav-item-custom:hover {
  color: #ffffff;
}
.navbar-custom-links .nav-item-custom.active {
  color: #ffffff;
  font-weight: 500;
}
.icon-btn-custom {
  background: none;
  border: none;
  color: #ffffff;
  padding: 0;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: opacity 0.2s ease;
}
.icon-btn-custom:hover {
  opacity: 0.7;
}
.icon-btn-custom svg {
  pointer-events: none;
}
.cart-badge-custom {
  position: absolute;
  top: -6px;
  right: -8px;
  background-color: #ffffff;
  color: #000000;
  font-size: 0.65rem;
  font-weight: 700;
  width: 16px;
  height: 16px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  line-height: 1;
}
@media (max-width: 768px) {
  .navbar-custom-logo a {
    font-size: 1.8rem;
  }
}

/* Mega Menu specific styles */
.nav-item-custom-wrapper {
  position: static;
  padding: 3rem 0; /* Creates hover bridge to dropdown */
  margin: -3rem 0;
}
.nav-item-custom-wrapper:hover .custom-mega-menu {
  display: block;
}
.custom-mega-menu {
  display: none;
  position: absolute;
  top: 100%;
  left: 0;
  width: 100%;
  background-color: #f9f9f9;
  z-index: 1050;
  text-align: left;
  border-top: 1px solid #eaeaea;
  animation: fadeInDownMenu 0.2s ease-out;
  cursor: default;
  box-shadow: 0 4px 12px rgba(0,0,0,0.05);
}
.custom-mega-menu::before {
  content: "";
  position: absolute;
  top: -40px;
  left: 0;
  width: 100%;
  height: 40px;
  background: transparent;
}
@keyframes fadeInDownMenu {
  from { opacity: 0; transform: translateY(5px); }
  to { opacity: 1; transform: translateY(0); }
}
.custom-mega-menu .mega-title {
  font-family: 'Instrument Sans', sans-serif;
  font-size: 1.05rem;
  font-weight: 500;
  color: #111;
  margin-bottom: 1.25rem;
}
.custom-mega-menu .mega-link {
  font-family: 'Instrument Sans', sans-serif;
  font-size: 0.95rem;
  color: #555 !important;
  text-decoration: none;
  transition: color 0.2s;
}
.custom-mega-menu .mega-link:hover {
  color: #111 !important;
}
.custom-mega-menu .mega-list {
  display: flex;
  flex-direction: column;
  gap: 0.85rem;
}
.custom-mega-menu .mega-list a {
  font-family: 'Instrument Sans', sans-serif;
  font-size: 0.95rem;
  color: #555;
  text-decoration: none;
  transition: color 0.2s;
}
.custom-mega-menu .mega-list a:hover {
  color: #111;
}
.custom-mega-menu .mega-product-img {
  background-color: #fff;
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
}
.custom-mega-menu .mega-product-img img {
  width: 100%;
  aspect-ratio: 4/5;
  object-fit: cover;
}
.mega-shirt-white {
  filter: brightness(1.05);
}
.mega-shirt-navy {
  filter: hue-rotate(180deg) brightness(0.7);
}
.custom-mega-menu .mega-product-title {
  font-family: 'Instrument Sans', sans-serif;
  font-size: 0.85rem;
  font-weight: 500;
  line-height: 1.4;
  margin-bottom: 0.35rem;
}
.custom-mega-menu .mega-product-price {
  font-family: 'Instrument Sans', sans-serif;
  font-size: 0.85rem;
  display: flex;
  gap: 0.5rem;
}

/* Featured List Section */
.featured-list-section {
  background-color: #f5f5f5; /* Light grey background */
}
.featured-list-heading {
  font-family: 'Instrument Serif', serif;
  font-size: 3rem;
  color: #111;
  font-weight: 400;
  margin-bottom: 2.5rem;
}
.featured-list-heading em {
  font-style: italic;
}
.featured-card {
  display: block;
}
.featured-card-img-box {
  background-color: #ffffff;
  border-radius: 12px;
  position: relative;
  overflow: hidden;
  margin-bottom: 1rem;
  display: flex;
  align-items: center;
  justify-content: center;
  height: 400px;
  width: 100%;
  box-shadow: 0 4px 15px rgba(0,0,0,0.02);
}
.featured-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: opacity 0.4s ease;
}
.featured-img.secondary-img {
  position: absolute;
  top: 0;
  left: 0;
  opacity: 0;
}
.featured-card-img-box:hover .primary-img {
  opacity: 0;
}
.featured-card-img-box:hover .secondary-img {
  opacity: 1;
}


.featured-badge {
  position: absolute;
  top: 1rem;
  left: 1rem;
  padding: 0.25rem 0.85rem;
  border-radius: 50px;
  font-family: 'Instrument Sans', sans-serif;
  font-size: 0.8rem;
  font-weight: 500;
  z-index: 2;
}
.badge-sale {
  background-color: #ffc107;
  color: #000;
}
.badge-soldout {
  background-color: #222;
  color: #fff;
}
.featured-info {
  text-align: left;
}
.featured-title {
  font-family: 'Instrument Sans', sans-serif;
  font-size: 0.95rem;
  font-weight: 400;
  color: #333;
  line-height: 1.4;
  margin-bottom: 0.5rem;
}
.featured-price {
  font-family: 'Instrument Sans', sans-serif;
  font-size: 0.95rem;
  color: #111;
}
.featured-price .old-price {
  text-decoration: line-through;
  color: #999;
  margin-left: 0.25rem;
}

/* Featured Slider */
.featured-slider-row {
  display: flex;
  overflow-x: auto;
  scroll-snap-type: x mandatory;
  scrollbar-width: none; /* Firefox */
  -ms-overflow-style: none; /* IE/Edge */
  gap: 1.5rem;
  padding-bottom: 1rem;
}
.featured-slider-row::-webkit-scrollbar {
  display: none; /* Chrome/Safari */
}
.featured-slider-item {
  flex: 0 0 auto;
  width: 330px;
  scroll-snap-align: start;
}

/* Spotlight Section */
.spotlight-custom-section {
  background-color: #f7f7f7;
}
.spotlight-gallery-wrapper {
  position: relative;
}
.spotlight-img-container {
  position: relative;
  width: 100%;
}
.spotlight-img-slider {
  display: flex;
  overflow-x: auto;
  scroll-snap-type: x mandatory;
  scrollbar-width: none;
  -ms-overflow-style: none;
  width: 100%;
}
.spotlight-img-slider::-webkit-scrollbar {
  display: none;
}
.spotlight-slide-item {
  flex: 0 0 100%;
  scroll-snap-align: start;
}
.spotlight-main-img {
  width: 100%;
  aspect-ratio: 4/5;
  object-fit: cover;
}
.spotlight-arrow {
  background: transparent;
  border: none;
  color: #333;
  padding: 10px;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
}
.spotlight-arrow:hover {
  color: #000;
}
.spotlight-counter {
  position: absolute;
  bottom: 1.5rem;
  left: 50%;
  transform: translateX(-50%);
  background-color: rgba(0, 0, 0, 0.85);
  color: #fff;
  font-family: 'Instrument Sans', sans-serif;
  font-size: 0.8rem;
  padding: 4px 16px;
  border-radius: 50px;
  letter-spacing: 0.5px;
}

.spotlight-title {
  font-family: 'Instrument Sans', sans-serif;
  font-size: 1.3rem;
  font-weight: 400;
  color: #111;
  margin-bottom: 1rem;
}
.spotlight-price {
  font-family: 'Instrument Sans', sans-serif;
  font-size: 1rem;
  color: #111;
  margin-bottom: 2rem;
}
.spotlight-price .old-price {
  text-decoration: line-through;
  color: #999;
  margin-left: 0.5rem;
}
.spotlight-size-label {
  font-family: 'Instrument Sans', sans-serif;
  font-size: 0.95rem;
  color: #333;
  margin-bottom: 0.75rem;
}
.spotlight-size-btn {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  background-color: #fff;
  border: 1px solid #e0e0e0;
  color: #111;
  font-family: 'Instrument Sans', sans-serif;
  font-size: 0.9rem;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: all 0.2s ease;
}
.spotlight-size-btn:hover {
  border-color: #111;
}
.spotlight-size-btn.active {
  background-color: #222;
  border-color: #222;
  color: #fff;
}
.spotlight-size-btn.disabled {
  color: #999;
  border-color: #eaeaea;
  background: linear-gradient(to top right, #fff calc(50% - 1px), #ccc 50%, #fff calc(50% + 1px));
  cursor: not-allowed;
}

.spotlight-qty-box {
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 120px;
  border: 1px solid #ccc;
  border-radius: 50px;
  padding: 0 5px;
  height: 52px;
}
.qty-btn {
  background: transparent;
  border: none;
  color: #333;
  width: 36px;
  height: 100%;
  font-size: 1.2rem;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
}
.qty-num {
  font-family: 'Instrument Sans', sans-serif;
  font-size: 0.95rem;
  color: #111;
}

.spotlight-add-btn {
  height: 52px;
  border-radius: 50px;
  background-color: #f0f0f0;
  color: #111;
  font-family: 'Instrument Sans', sans-serif;
  font-size: 0.95rem;
  border: none;
}
.spotlight-add-btn:hover {
  background-color: #e5e5e5;
  color: #000;
}
.spotlight-buy-btn {
  height: 52px;
  border-radius: 50px;
  background-color: #222;
  color: #fff;
  font-family: 'Instrument Sans', sans-serif;
  font-size: 0.95rem;
  border: none;
}
.spotlight-buy-btn:hover {
  background-color: #111;
  color: #fff;
}

/* Newsletter Custom Section */
.newsletter-custom-section {
  background-color: #1a1a1a;
  overflow: hidden;
}
@media (min-width: 768px) {
  .newsletter-custom-section {
    height: 250px;
  }
}
.newsletter-img-col {
  display: flex;
}
.newsletter-left-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  min-height: 250px;
}
.newsletter-right-panel {
  padding: 3rem 2rem;
  background-color: #1a1a1a;
}
@media (min-width: 768px) {
  .newsletter-right-panel {
    padding: 0 5%;
    height: 250px;
  }
}
@media (min-width: 992px) {
  .newsletter-right-panel {
    padding: 0 8%;
  }
}
.newsletter-heading {
  font-family: 'Playfair Display', 'Times New Roman', serif;
  font-size: 1.75rem;
  font-weight: 400;
  color: #fff;
  line-height: 1.2;
}
@media (min-width: 768px) {
  .newsletter-heading {
    font-size: 2.25rem;
  }
}
.newsletter-input-wrapper {
  display: flex;
  flex-direction: row;
  align-items: center;
  gap: 15px;
  max-width: 500px;
}
.newsletter-input {
  width: 100%;
  background-color: #0b0b0b;
  border: 1px solid #222;
  color: #fff;
  border-radius: 50px;
  padding: 15px 25px;
  height: 60px;
  font-family: 'Instrument Sans', sans-serif;
  font-size: 1rem;
}
.newsletter-input:focus {
  background-color: #0b0b0b;
  color: #fff;
  border-color: #444;
  box-shadow: none;
  outline: none;
}
.newsletter-input::placeholder {
  color: #888;
}
.newsletter-submit {
  width: 60px;
  height: 60px;
  border-radius: 50%;
  background-color: #fff;
  color: #111;
  border: none;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: all 0.3s ease;
  flex-shrink: 0;
}
.newsletter-submit:hover {
  background-color: #e6e6e6;
  transform: translateX(3px);
}

/* Footer Custom Section */
.footer-custom-section {
  background-color: #1f1f1f;
  color: #fff;
}
.footer-heading {
  font-family: 'Playfair Display', 'Times New Roman', serif;
  font-size: 1.3rem;
  font-weight: 400;
  color: #fff;
  letter-spacing: 0.5px;
}
@media (min-width: 768px) {
  .footer-heading {
    font-size: 1.6rem;
  }
}
.footer-list li {
  margin-bottom: 0.5rem;
}
.footer-link {
  color: #cccccc;
  text-decoration: none;
  font-family: 'Instrument Sans', sans-serif;
  font-size: 0.95rem;
  transition: color 0.2s ease;
}
.footer-link:hover {
  color: #ffffff;
  text-decoration: underline;
}
.footer-divider {
  border-top: 1px solid #444;
  opacity: 1;
}
.footer-bottom-text {
  font-family: 'Instrument Sans', sans-serif;
  font-size: 0.85rem;
  color: #aaaaaa;
}

/* WhatsApp Floating Button */
.whatsapp-float {
  position: fixed;
  bottom: 25px;
  right: 25px;
  width: 60px;
  height: 60px;
  background-color: #25D366;
  color: #fff;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
  z-index: 1000;
  transition: transform 0.3s ease, background-color 0.3s ease;
}
.whatsapp-float:hover {
  transform: scale(1.1);
  color: #fff;
  background-color: #20b858;
}

/* Search Offcanvas Custom Styles */
.search-offcanvas {
  background-color: #f9f9f9;
  height: auto !important;
  max-height: 100vh;
}
.search-offcanvas-input {
  font-family: 'Instrument Sans', sans-serif;
  color: #333;
}
.search-offcanvas-input::placeholder {
  color: #888;
}
.search-offcanvas-input:focus {
  outline: none;
  box-shadow: none;
}
.search-recent-title {
  font-family: 'Instrument Sans', sans-serif;
  font-weight: 500;
  font-size: 1.1rem;
}
.search-clear-btn {
  font-family: 'Instrument Sans', sans-serif;
  font-size: 0.95rem;
  letter-spacing: 0.5px;
}
.search-product-card {
  text-align: left;
}
.search-product-img-wrapper {
  background-color: #f2f2f2;
  border-radius: 8px;
  overflow: hidden;
}
.search-product-title {
  font-family: 'Instrument Sans', sans-serif;
  font-size: 0.95rem;
  font-weight: 500;
  line-height: 1.4;
  margin-bottom: 0.5rem;
}
.search-product-price {
  font-family: 'Instrument Sans', sans-serif;
  font-size: 0.9rem;
}

/* Custom Headbanner Section */
.headbanner-custom-section {
  position: relative;
  width: 100%;
  height: 300px;
  max-height: 300px;
  background-image: url('../images/banners/hf_20260503_071329_1_663b56b9-f24b-4df6-a9f6-b5e1e9647046.webp');
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  display: flex;
  align-items: flex-end;
}

@media (max-width: 767px) {
  .headbanner-custom-section {
    height: 250px;
  }
}

/* Category Page Grid Redesign */
.category-page-custom {
  background-color: #f4f4f4;
  font-family: 'Instrument Sans', sans-serif;
}
.category-toolbar-custom {
  padding-bottom: 0.5rem;
}
.dropdown-toggle-custom {
  font-size: 0.95rem;
  font-weight: 400;
  color: #333 !important;
}
.view-mode-btn {
  border: none;
  background: none;
  border-radius: 4px;
  transition: all 0.2s ease;
}
.view-mode-btn:hover {
  background-color: #eaeaea;
}
.view-mode-btn.active {
  color: #000 !important;
  background-color: #e5e5e5;
}
.category-card-custom {
  background: transparent;
  height: 100%;
}
.category-card-img-wrapper {
  position: relative;
  background-color: #ffffff;
  border-radius: 6px;
  overflow: hidden;
  margin-bottom: 1rem;
  display: flex;
  align-items: center;
  justify-content: center;
  aspect-ratio: 4/5;
  padding: 0;
}
.category-card-img-wrapper img.img-primary {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: opacity 0.3s ease;
}
.category-card-img-wrapper img.img-hover {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0;
  transition: opacity 0.3s ease;
}
.category-card-custom:hover .category-card-img-wrapper img.img-primary {
  opacity: 0;
}
.category-card-custom:hover .category-card-img-wrapper img.img-hover {
  opacity: 1;
}
.category-badge-sale {
  position: absolute;
  top: 12px;
  left: 12px;
  background-color: #ffc72c;
  color: #000;
  font-size: 0.75rem;
  font-weight: 500;
  padding: 4px 12px;
  border-radius: 20px;
  z-index: 2;
}
.category-product-title {
  font-size: 0.95rem;
  font-weight: 400;
  color: #111;
  line-height: 1.4;
  margin-bottom: 0.4rem;
}
.category-product-price {
  font-size: 0.9rem;
}
.price-current {
  color: #111;
  font-weight: 400;
  margin-right: 0.3rem;
}
.price-old {
  color: #999;
  text-decoration: line-through;
}
.badge-orders-custom {
  background-color: #0d4a5d;
  color: #fff;
  font-size: 0.75rem;
  font-weight: 500;
  padding: 2px 8px;
  border-radius: 4px;
  display: inline-block;
}
.headbanner-title {
  color: #ffffff;
  font-family: 'Instrument Sans', sans-serif;
  font-weight: 700;
  font-size: 2rem;
  letter-spacing: 0.5px;
}

.headbanner-subtitle {
  color: #ffffff;
  font-family: 'Instrument Sans', sans-serif;
  font-weight: 400;
  font-style: italic;
  font-size: 0.85rem;
  opacity: 0.95;
  line-height: 1.4;
}

@media (min-width: 768px) {
  .headbanner-title {
    font-size: 2.5rem;
  }
  .headbanner-subtitle {
    font-size: 1rem;
  }
}

/* Product Page Custom Design */
.product-page-custom {
  font-family: 'Instrument Sans', sans-serif;
  color: #111;
}
.product-title-custom {
  font-family: 'Playfair Display', 'Times New Roman', serif;
  font-size: 2.2rem;
  font-weight: 400;
  line-height: 1.15;
  color: #111;
  letter-spacing: -0.5px;
}
.size-selector-custom .size-btn {
  width: 48px;
  height: 48px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.75rem;
  font-weight: 600;
  padding: 0;
  border-color: #ddd;
  color: #111;
  background-color: transparent;
  transition: all 0.2s ease;
}
.size-selector-custom .size-btn:hover {
  border-color: #111;
}
.size-selector-custom .size-btn.disabled {
  color: #aaa;
  border-color: #eee;
}
.tier-card {
  transition: border-color 0.2s ease;
  border-color: #e5e5e5;
}
.tier-card:hover {
  border-color: #ccc;
}
.tier-expanded-content {
  border-top: 1px solid #eee;
  margin-top: 1rem;
}
.product-accordions-custom .border-bottom,
.product-accordions-custom .border-top {
  border-color: #e5e5e5 !important;
}
.features-grid-custom .col-6 > div {
  transition: background-color 0.2s;
}
.features-grid-custom .col-6 > div:hover {
  background-color: #f1f1f1 !important;
}

/* Accordion Icons */
.product-accordions-custom .accordion-item .accordion-header div[aria-expanded="false"] .accordion-icon-custom::after {
  content: "+";
}
.product-accordions-custom .accordion-item .accordion-header div[aria-expanded="true"] .accordion-icon-custom::after {
  content: "-";
}
.product-accordions-custom .accordion-icon-custom {
  display: inline-block;
  width: 15px;
  text-align: center;
}

/* Cart Page Custom Redesign */
.cart-page-custom-bg {
  background-color: #f4f4f4 !important;
}
.cart-custom-title {
  font-family: 'Instrument Serif', serif;
  font-size: 3.5rem;
  font-weight: 400;
  letter-spacing: 0.02em;
}
.cart-custom-badge {
  background-color: #e2e2e2;
  color: #333;
  width: 32px;
  height: 32px;
  border-radius: 50%;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 0.95rem;
  font-weight: 500;
}
.cart-custom-item {
  border-bottom: 1px solid #e5e5e5;
}
.cart-custom-item:last-child {
  border-bottom: none;
}
.cart-item-img {
  width: 110px;
  height: 110px;
  object-fit: cover;
  background-color: #fff;
}
.cart-item-title {
  font-size: 1.05rem;
  font-weight: 400;
  color: #121212;
  font-family: var(--font-family);
}
.cart-item-variant,
.cart-item-discount {
  font-size: 0.85rem;
  color: #666;
}
.cart-item-prices {
  font-size: 0.95rem;
}
.cart-item-price-current {
  color: #121212;
}
.cart-item-price-old {
  color: #999;
  text-decoration: line-through;
}
.cart-item-total {
  font-size: 0.95rem;
  color: #121212;
}
.cart-custom-stepper {
  border: 1px solid #d0d0d0;
  border-radius: 6px;
  width: 100px;
  height: 40px;
  background-color: transparent;
}
.cart-custom-stepper .stepper-btn {
  font-size: 1.2rem;
  color: #333;
  width: 30px;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
}
.cart-custom-stepper .stepper-val {
  font-size: 0.95rem;
  font-weight: 500;
  color: #121212;
}
.cart-custom-trash {
  color: #121212;
  cursor: pointer;
  transition: opacity 0.2s;
  width: 40px;
  height: 40px;
}
.cart-custom-trash:hover {
  opacity: 0.6;
}
.cart-custom-summary {
  border: none;
}
.cart-summary-label {
  font-size: 0.95rem;
  color: #121212;
}
.cart-summary-plus {
  font-size: 1.3rem;
  font-weight: 400;
  color: #121212;
  cursor: pointer;
}
.cart-custom-checkout-btn {
  background-color: #222;
  color: #fff;
  border-radius: 30px;
  font-weight: 400;
  font-size: 1.05rem;
  border: none;
  transition: background-color 0.2s;
}
.cart-custom-checkout-btn:hover {
  background-color: #000;
  color: #fff;
}
.cart-discount-input {
  border: 1px solid #777;
  border-radius: 8px;
  background-color: transparent;
  padding: 0.65rem 1rem;
  color: #333;
  font-size: 1rem;
}
.cart-discount-input:focus {
  border-color: #121212;
  box-shadow: none;
  background-color: transparent;
}
.cart-discount-apply {
  background-color: #1f1f1f;
  color: #fff;
  border-radius: 30px;
  padding: 0.65rem 1.8rem;
  font-weight: 400;
  font-size: 1rem;
  border: none;
  transition: background-color 0.2s;
}
.cart-discount-apply:hover {
  background-color: #000;
  color: #fff;
}
