/*
 * Lumina Biolabs Custom Styles
 * Modern, Clean Design
 */

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

:root {
  --primary-orange: #e7461e;
  --text-dark: #333;
  --text-light: #666;
  --border-color: #e0e0e0;
  --bg-light: #fff;
  --white: #ffffff;
}

body {
  font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, sans-serif;
  color: var(--text-dark);
  line-height: 1.6;
}

.container {
  max-width: 1300px;
  margin: 0 auto;
  /* padding: 0 20px; */
}

/* ============================================
  HEADER STYLES
============================================ */

.peptide-header {
  background: var(--white);
  box-shadow: 0 2px 4px rgba(0,0,0,0.1);
  position: sticky;
  top: 0;
  z-index: 1000;
}

.header-top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 15px 10px;
  gap: 30px;
}
@media screen and (max-width: 768px) {
  .header-top {
    padding: 12px 0px;
  }
}

/* Logo Styles */
.header-logo {
  flex-shrink: 0;
}
.header-logo img {
  height: 50px;
  width: auto;
}

.header-right {
  display: flex;
  flex-direction: row;
  align-items: center;
  gap: 10px;
}

.site-logo-text {
  display: flex;
  align-items: center;
  gap: 10px;
  text-decoration: none;
  color: var(--text-dark);
  font-size: 24px;
  font-weight: 700;
}

/* Search Bar */
.header-search {
  flex: 1;
  max-width: 640px;
}

.search-form {
  display: flex;
  /* border: 1px solid var(--border-color); */
  border: 1px solid #c4c4c4;
  border-radius: 8px;
  overflow: hidden;
  padding: 0 10px;
}
.search-form input[type="search"] {
  padding: 0;
}

.search-field {
  flex: 1;
  padding: 10px 15px;
  border: none;
  outline: none;
  font-size: 14px;
}

.search-submit {
  /* padding: 10px 20px;
  background: var(--primary-orange);
  color: var(--white);
  border: none;
  cursor: pointer;
  transition: background 0.3s; */
  padding: 10px 20px;
  border: none;
  background: transparent;
}
.search-submit i {
  color: #555;
  transform: scale(0.9);
}

/* .search-submit:hover {
  background: #e64a19;
} */

/* Header Actions */
.header-actions {
  display: flex;
  align-items: center;
  gap: 20px;
}

.header-action-link {
  display: flex;
  align-items: center;
  gap: 8px;
  text-decoration: none;
  color: var(--text-dark);
  font-size: 14px;
  transition: color 0.3s;
  position: relative;
}

.header-action-link:hover {
  color: var(--primary-orange);
}

.header-action-link i {
  font-size: 18px;
}

.cart-count-badge {
  position: absolute;
  top: -8px;
  right: -14px;
  background: var(--primary-orange);
  color: var(--white);
  border-radius: 50%;
  width: 20px;
  height: 20px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 11px;
  font-weight: bold;
}

/* Mobile Menu Toggle */
.mobile-menu-toggle {
  display: none;
  flex-direction: column;
  gap: 4px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 5px;
}

.mobile-menu-toggle span {
  width: 25px;
  height: 3px;
  background: var(--text-dark);
  transition: all 0.3s;
}

/* Main Navigation */
.main-navigation {
  /* border-top: 1px solid var(--border-color); */
  padding: 0;
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
}

.nav-menu,
.nav-menu-secondary {
  list-style: none;
  display: flex;
  gap: 0;
  margin: 0;
  padding: 0;
}

.nav-menu {
  flex: 1;
}

.nav-menu li,
.nav-menu-secondary li {
  margin: 0;
}

.nav-menu a,
.nav-menu-secondary a {
  display: block;
  padding: 12px 16px;
  text-decoration: none;
  color: var(--text-dark);
  font-size: 14px;
  font-weight: 400;
  transition: all 0.3s;
  border-bottom: 3px solid transparent;
}

.nav-menu a:hover,
.nav-menu-secondary a:hover {
  color: var(--primary-orange);
  /* border-bottom-color: var(--primary-orange); */
}

/* Mobile Navigation */
.mobile-nav-overlay {
  display: none;
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: rgba(0, 0, 0, 0.5);
  z-index: 999;
  opacity: 0;
  transition: opacity 0.3s;
}

.mobile-nav-overlay.active {
  opacity: 1;
}

.mobile-nav {
  position: fixed;
  top: 0;
  display: none;
  /* right: -300px; */
  width: 100%;
  height: 100vh;
  background: var(--white);
  z-index: 1001;
  overflow-y: auto;
  /* transition: right 0.3s; */
  transition: display 0.3s;
  box-shadow: -2px 0 8px rgba(0, 0, 0, 0.1);
  /* margin-top: 46px; */
}

.mobile-nav.active {
  /* right: 0; */
  display: block;
}

.mobile-nav-header {
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: space-between;
  padding: 12px 12px;
  border-bottom: 1px solid var(--border-color);
  text-align: right;
}

.mobile-nav-close {
  background: none;
  border: none;
  font-size: 24px;
  cursor: pointer;
  color: var(--text-dark);
}

.mobile-nav-content {
  padding: 12px 20px;
}

.mobile-account {
  margin-bottom: 30px;
  padding-bottom: 20px;
  border-bottom: 1px solid var(--border-color);
}

.mobile-account-link {
  display: flex;
  align-items: center;
  gap: 10px;
  text-decoration: none;
  color: var(--text-dark);
  font-size: 14px;
}

.mobile-account-link i {
  font-size: 24px;
}

.sign-in-btn {
  margin-left: auto;
  padding: 8px 20px;
  background: var(--white);
  color: var(--text-dark);
  border: 1px solid var(--border-color);
  border-radius: 4px;
  cursor: pointer;
  font-size: 14px;
  transition: all 0.3s;
}

.sign-in-btn:hover {
  background: var(--primary-orange);
  color: var(--white);
  border-color: var(--primary-orange);
}

.mobile-menu {
  list-style: none;
}

.mobile-menu li {
  margin: 0;
}

.mobile-menu a {
  display: block;
  padding: 15px 0;
  text-decoration: none;
  color: var(--text-dark);
  font-size: 16px;
  border-bottom: 1px solid var(--border-color);
  transition: color 0.3s;
}

.mobile-menu a:hover {
  color: var(--primary-orange);
}

/* ============================================
  HERO CAROUSEL
============================================ */

.hero-carousel {
  position: relative;
  /* background: linear-gradient(135deg, #667eea 0%, #764ba2 100%); */
  overflow: hidden;
}

.carousel-container {
  position: relative;
  /* max-width: 1400px; */
  max-width: 2400px;
  margin: 0 auto;
  min-height: 500px;
}

.carousel-slides {
  position: relative;
  width: 100%;
  height: 100%;
}

.carousel-slide {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.5s, visibility 0.5s;
  padding: 60px 75px;
}
@media screen and (max-width: 768px) {
  .carousel-slide {
    padding: 20px 20px;
  }
}

.carousel-slide.active {
  opacity: 1;
  visibility: visible;
  position: relative;
}

.carousel-content {
  display: flex;
  align-items: center;
  justify-content: space-between;
  max-width: 1000px;
  margin: 0 auto;
  gap: 50px;
  background: rgba(255, 255, 255, 0.7);
  border-radius: 30px;
  padding: 40px;
}

.carousel-text {
  flex: 1;
  color: var(--white);
}

.carousel-title {
  font-size: 48px;
  font-weight: 700;
  margin-bottom: 20px;
  line-height: 1.2;
}

.carousel-description {
  font-size: 18px;
  margin-bottom: 30px;
  opacity: 0.9;
}

.carousel-btn {
  display: inline-block;
  padding: 15px 40px;
  background: var(--primary-orange);
  color: var(--white);
  text-decoration: none;
  border-radius: 4px;
  font-weight: 600;
  transition: all 0.3s;
}

.carousel-btn:hover {
  background: #e64a19;
  transform: translateY(-2px);
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.2);
}

.carousel-image {
  flex: 1;
  text-align: center;
}

.carousel-image img {
  max-width: 100%;
  height: auto;
  border-radius: 8px;
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.2);
}

/* Carousel Dots */
.carousel-dots {
  position: absolute;
  bottom: 30px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  gap: 8px;
  z-index: 10;
}
@media (max-width: 768px) {
  .carousel-dots {
    bottom: 35px;
  }
}

.carousel-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  border: 2px solid var(--white);
  background: var(--white);
  cursor: pointer;
  transition: all 0.3s;
  padding: 0;
}

.carousel-dot.active {
  background: var(--primary-orange);
  border-color: var(--primary-orange);
}

/* Carousel Arrows */
.carousel-arrow {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  background: rgba(255, 255, 255, 0.2);
  color: var(--white);
  border: none;
  width: 50px;
  height: 50px;
  border-radius: 50%;
  cursor: pointer;
  font-size: 20px;
  transition: all 0.3s;
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 10;
}

.carousel-arrow:hover {
  background: rgba(255, 255, 255, 0.3);
}

.carousel-prev {
  left: 20px;
}

.carousel-next {
  right: 20px;
}

/* ============================================
   CONTENT SECTIONS
   ============================================ */

.peptide-capsules {
  padding: 60px 0;
  background: var(--white);
}

.peptide-capsules .container {
  display: flex;
  gap: 40px;
}

.sidebar-section {
  width: 250px;
  flex-shrink: 0;
}

.sidebar-section h3 {
  font-size: 20px;
  margin-bottom: 20px;
  color: var(--text-dark);
}

.peptide-list {
  list-style: none;
}

.peptide-list li {
  margin-bottom: 10px;
}

.peptide-list a {
  color: var(--text-dark);
  text-decoration: none;
  font-size: 14px;
  transition: color 0.3s;
}

.peptide-list a:hover {
  color: var(--primary-orange);
}

.main-content {
  flex: 1;
}

.main-content h2 {
  font-size: 32px;
  margin-bottom: 20px;
  color: var(--text-dark);
}

.content-text {
  margin-bottom: 40px;
  color: var(--text-light);
}

.content-text p {
  margin-bottom: 15px;
  line-height: 1.8;
}

/* Product Grid */
.product-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
  gap: 30px;
  margin-top: 40px;
}

.product-card {
  background: var(--white);
  border: 1px solid var(--border-color);
  border-radius: 8px;
  overflow: hidden;
  transition: all 0.3s;
}

/* .product-card:hover {
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
  transform: translateY(-4px);
} */

.product-card img {
  width: 100%;
  height: 250px;
  /* object-fit: cover; */
  object-fit: contain;
}

.product-card h4 {
  padding: 15px;
  font-size: 16px;
  margin: 0;
}

.product-card .price {
  padding: 0 15px;
  font-size: 20px;
  font-weight: 700;
  color: var(--primary-orange);
  margin: 10px 0;
}

.product-btn {
  display: block;
  width: calc(100% - 30px);
  margin: 15px;
  padding: 12px;
  text-align: center;
  background: var(--primary-orange);
  color: var(--white);
  text-decoration: none;
  border-radius: 4px;
  font-weight: 600;
  transition: background 0.3s;
}

.product-btn:hover {
  background: #e64a19;
}

/* ============================================
  RESPONSIVE STYLES
============================================ */

@media (max-width: 1024px) {
  .carousel-title {
    font-size: 36px;
  }
  
  .carousel-content {
    gap: 40px;
  }
}

@media (max-width: 768px) {
  /* Header Mobile */
  .header-search {
    display: none;
  }
  
  .mobile-menu-toggle {
    display: flex;
  }
  
  .header-actions {
    gap: 15px;
  }
  
  .header-action-link span {
    display: none;
  }
  
  /* Navigation Mobile */
  .main-navigation {
    display: none;
  }
  
  .mobile-nav-overlay.active {
    display: block;
  }
  
  /* Carousel Mobile */
  .carousel-content {
    flex-direction: column;
    text-align: center;
  }
  
  .carousel-title {
    font-size: 28px;
  }
  
  .carousel-description {
    font-size: 16px;
  }
  
  .carousel-arrow {
    display: none;
  }
  
  /* Content Mobile */
  .peptide-capsules .container {
    flex-direction: column;
  }
  
  .sidebar-section {
    width: 100%;
  }
  
  .product-grid {
    grid-template-columns: repeat(auto-fill, minmax(200px, 1fr));
    gap: 20px;
  }
}

@media (max-width: 480px) {
  .carousel-title {
    font-size: 24px;
  }
  
  .main-content h2 {
    font-size: 24px;
  }
  
  .product-grid {
    grid-template-columns: 1fr;
  }
}

/* ============================================
  WOOCOMMERCE CART PAGE STYLES
============================================ */

/* Clean container for WooCommerce pages */
.woocommerce-main-content {
  background: var(--white);
  padding: 40px 0;
  min-height: 60vh;
}

.woocommerce-main-content .container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
}

/* Remove background image from cart page */
body.woocommerce-cart,
body.woocommerce-checkout {
  background: var(--white) !important;
}

body.woocommerce-cart #tp_content,
body.woocommerce-checkout #tp_content {
  background: var(--white) !important;
}

/* Simple cart wrapper */
.simple-cart-wrapper {
  max-width: 1200px;
  margin: 40px auto;
  padding: 20px;
  background: var(--white);
}

/* Cart title styling */
.woocommerce-cart h1,
.woocommerce-checkout h1 {
  font-size: 32px;
  margin-bottom: 30px;
  color: var(--text-dark);
  text-align: center;
}

/* Cart table styling */
.woocommerce-cart-form table.shop_table {
  width: 100%;
  border-collapse: collapse;
  background: var(--white);
  margin-bottom: 30px;
}

.shop_table thead {
  background: var(--bg-light);
  border-bottom: 2px solid var(--border-color);
}

.shop_table thead th {
  padding: 15px;
  text-align: left;
  font-weight: 600;
  color: var(--text-dark);
  font-size: 14px;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.shop_table tbody td {
  padding: 20px 15px;
  border-bottom: 1px solid var(--border-color);
  vertical-align: middle;
}

.shop_table tbody tr:hover {
  background: #fafafa;
}

/* Product thumbnail */
.product-thumbnail img {
  max-width: 80px;
  height: auto;
  border-radius: 4px;
}

/* Product name */
.product-name a {
  color: var(--text-dark);
  font-weight: 500;
  text-decoration: none;
}

.product-name a:hover {
  color: var(--primary-orange);
}

/* Remove button */
.product-remove a {
  color: #999;
  font-size: 24px;
  text-decoration: none;
  display: inline-block;
  width: 30px;
  height: 30px;
  text-align: center;
  line-height: 26px;
  border-radius: 50%;
  transition: all 0.3s;
}

.product-remove a:hover {
  background: #f44336;
  color: var(--white);
}

/* Quantity input */
.quantity input.qty {
  width: 70px;
  padding: 8px;
  border: 1px solid var(--border-color);
  border-radius: 4px;
  text-align: center;
  font-size: 16px;
}

/* Price styling */
.product-price,
.product-subtotal {
  font-weight: 600;
  color: var(--text-dark);
  font-size: 16px;
}

/* Actions row */
.shop_table .actions {
  background: var(--bg-light);
  padding: 20px 15px !important;
}

.actions .coupon {
  display: inline-block;
  margin-right: 15px;
}

.actions .coupon input {
  padding: 10px 15px;
  border: 1px solid var(--border-color);
  border-radius: 4px;
  margin-right: 10px;
  font-size: 14px;
}

.actions button {
  padding: 10px 20px;
  background: var(--primary-orange);
  color: var(--white);
  border: none;
  border-radius: 4px;
  cursor: pointer;
  font-weight: 600;
  transition: background 0.3s;
}

.actions button:hover {
  background: #e64a19;
}

/* Cart totals */
.cart-collaterals {
  max-width: 500px;
  margin-left: auto;
  background: var(--bg-light);
  padding: 30px;
  border-radius: 8px;
}

.cart_totals h2 {
  font-size: 24px;
  margin-bottom: 20px;
  color: var(--text-dark);
}

.cart_totals table {
  width: 100%;
}

.cart_totals th,
.cart_totals td {
  padding: 12px 0;
  border-bottom: 1px solid var(--border-color);
}

.cart_totals .order-total th,
.cart_totals .order-total td {
  font-size: 20px;
  font-weight: 700;
  color: var(--text-dark);
  padding-top: 20px;
}

.wc-proceed-to-checkout {
  margin-top: 20px;
}

.wc-proceed-to-checkout a {
  display: block;
  width: 100%;
  padding: 15px;
  background: var(--primary-orange);
  color: var(--white);
  text-align: center;
  text-decoration: none;
  border-radius: 4px;
  font-weight: 600;
  font-size: 16px;
  transition: background 0.3s;
}

.wc-proceed-to-checkout a:hover {
  background: #e64a19;
}

/* Mobile responsive */
@media (max-width: 768px) {
  .simple-cart-wrapper {
    padding: 15px;
  }

  .shop_table thead {
    display: none;
  }

  .shop_table tbody tr {
    display: block;
    margin-bottom: 20px;
    border: 1px solid var(--border-color);
    border-radius: 8px;
    padding: 15px;
  }

  .shop_table tbody td {
    display: block;
    text-align: right;
    padding: 10px 0;
    border: none;
  }

  .shop_table tbody td::before {
    content: attr(data-title);
    float: left;
    font-weight: 600;
    color: var(--text-dark);
  }

  .product-thumbnail {
    text-align: center;
  }

  .product-thumbnail::before {
    display: none;
  }

  .product-remove {
    text-align: center;
  }

  .product-remove::before {
    display: none;
  }

  .actions {
    display: block !important;
  }

  .actions .coupon {
    display: block;
    margin-bottom: 15px;
  }

  .actions .coupon input {
    width: 100%;
    margin-bottom: 10px;
  }

  .actions button {
    width: 100%;
    margin-bottom: 10px;
  }

  .cart-collaterals {
    margin: 20px 0;
  }
}

/* ============================================
   WOOCOMMERCE CART PAGE STYLES
============================================ */

/* Remove background image from cart page */
.woocommerce-cart #tp_content,
.woocommerce-cart .peptide-homepage-wrapper,
.woocommerce-cart body,
.woocommerce-cart {
  background: #fff !important;
  background-image: none !important;
}

/* Simplified cart wrapper */
.simple-cart-wrapper {
  max-width: 1200px;
  margin: 40px auto;
  padding: 20px;
  background: #fff;
}

/* Cart table styling */
.woocommerce-cart .shop_table {
  width: 100%;
  border-collapse: separate;
  border-spacing: 0;
  border: 1px solid #e0e0e0;
  border-radius: 8px;
  overflow: hidden;
  background: #fff;
}

.woocommerce-cart .shop_table thead {
  background: #fff;
}

.woocommerce-cart .shop_table thead th {
  padding: 15px;
  font-weight: 600;
  text-align: left;
  border-bottom: 2px solid #e0e0e0;
  color: #333;
  font-size: 14px;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.woocommerce-cart .shop_table tbody td {
  padding: 20px 15px;
  border-bottom: 1px solid #f0f0f0;
  vertical-align: middle;
}

.woocommerce-cart .shop_table tbody tr:last-child td {
  border-bottom: none;
}

/* Product thumbnail */
.woocommerce-cart .product-thumbnail img {
  width: 80px;
  height: 80px;
  object-fit: cover;
  border-radius: 4px;
  border: 1px solid #e0e0e0;
}

/* Product name */
.woocommerce-cart .product-name a {
  color: #333;
  font-weight: 500;
  text-decoration: none;
}

.woocommerce-cart .product-name a:hover {
  color: #e7461e;
}

/* Remove button */
.woocommerce-cart .product-remove a {
  color: #999;
  font-size: 24px;
  text-decoration: none;
  transition: color 0.3s;
}

.woocommerce-cart .product-remove a:hover {
  color: #e74c3c;
}

/* Quantity input */
.woocommerce-cart .quantity input {
  width: 80px;
  padding: 8px;
  border: 1px solid #e0e0e0;
  border-radius: 4px;
  text-align: center;
  font-size: 14px;
}

/* Price styling */
.woocommerce-cart .product-price,
.woocommerce-cart .product-subtotal {
  font-weight: 600;
  color: #333;
  font-size: 16px;
}

/* Actions row */
.woocommerce-cart .actions {
  background: #fff;
  padding: 20px !important;
}

.woocommerce-cart .actions .coupon {
  display: inline-block;
  margin-right: 15px;
}

.woocommerce-cart .actions input[type="text"] {
  padding: 10px 15px;
  border: 1px solid #e0e0e0;
  border-radius: 4px;
  margin-right: 10px;
  width: 200px;
}

.woocommerce-cart .actions button {
  padding: 10px 20px;
  background: #e7461e;
  color: #fff;
  border: none;
  border-radius: 4px;
  cursor: pointer;
  font-weight: 600;
  transition: background 0.3s;
}

.woocommerce-cart .actions button:hover {
  background: #e74c1c;
}

/* Cart totals */
.woocommerce-cart .cart-collaterals {
  margin-top: 40px;
}

.woocommerce-cart .cart_totals {
  float: right;
  width: 100%;
  max-width: 400px;
  border: 1px solid #e0e0e0;
  border-radius: 8px;
  padding: 20px;
  background: #fff;
}

.woocommerce-cart .cart_totals h2 {
  font-size: 20px;
  margin-bottom: 20px;
  padding-bottom: 15px;
  border-bottom: 1px solid #e0e0e0;
}

.woocommerce-cart .cart_totals table {
  width: 100%;
}

.woocommerce-cart .cart_totals th,
.woocommerce-cart .cart_totals td {
  padding: 10px 0;
  border-bottom: 1px solid #f0f0f0;
}

.woocommerce-cart .cart_totals .order-total th,
.woocommerce-cart .cart_totals .order-total td {
  font-size: 18px;
  font-weight: 700;
  color: #333;
  padding-top: 15px;
}

.woocommerce-cart .wc-proceed-to-checkout {
  margin-top: 20px;
}

.woocommerce-cart .wc-proceed-to-checkout a {
  display: block;
  width: 100%;
  padding: 15px;
  background: #e7461e;
  color: #fff;
  text-align: center;
  text-decoration: none;
  border-radius: 4px;
  font-weight: 600;
  font-size: 16px;
  transition: background 0.3s;
}

.woocommerce-cart .wc-proceed-to-checkout a:hover {
  background: #e74c1c;
}

/* Responsive cart table */
@media (max-width: 768px) {
  .simple-cart-wrapper {
    padding: 15px;
  }
  
  .woocommerce-cart .shop_table thead {
    display: none;
  }
  
  .woocommerce-cart .shop_table tbody tr {
    display: block;
    margin-bottom: 20px;
    border: 1px solid #e0e0e0;
    border-radius: 8px;
    overflow: hidden;
  }
  
  .woocommerce-cart .shop_table tbody td {
    display: block;
    text-align: right;
    padding: 10px 15px;
    border-bottom: 1px solid #f0f0f0;
  }
  
  .woocommerce-cart .shop_table tbody td:before {
    content: attr(data-title);
    float: left;
    font-weight: 600;
    color: #333;
  }
  
  .woocommerce-cart .product-remove,
  .woocommerce-cart .product-thumbnail {
    text-align: center;
  }
  
  .woocommerce-cart .product-remove:before,
  .woocommerce-cart .product-thumbnail:before {
    display: none;
  }
  
  .woocommerce-cart .actions {
    display: block;
  }
  
  .woocommerce-cart .actions .coupon {
    display: block;
    margin-bottom: 15px;
  }
  
  .woocommerce-cart .actions input[type="text"] {
    width: 100%;
    margin-bottom: 10px;
  }
  
  .woocommerce-cart .actions button {
    width: 100%;
    margin-bottom: 10px;
  }
  
  .woocommerce-cart .cart_totals {
    float: none;
    max-width: 100%;
  }
}





.sidebar-category-name {
  font-size: 13px;
  font-weight: 700;
  color: #e7461e;
  text-transform: uppercase;
  letter-spacing: 0.6px;
  margin: 0 0 6px 0;
  padding-bottom: 6px;
  /* border-bottom: 2px solid #e7461e; */
}
.sidebar-category-name a {
  color: inherit;
  text-decoration: none;
}
.sidebar-category-name a:hover {
  color: #e7461e;
}