body { background-color: #f8f9fa; }
.product-image { border-radius: 8px; }
    .price-current { font-size: 2rem; color: #dc3545; }
    .price-old { text-decoration: line-through; color: #6c757d; }
    .spec-key { width: 35%; }
    .spec-value { width: 65%; }
 
 .woocommerce-price-suffix {
	 font-size: 16px;
    clear: both;
    float: left;
    width: 100%;
    color: #aaa;
	}
	
	.woocommerce-variation-price .eclub_item, .woocommerce-variation-price .price { display: none!important; }
	.woocommerce-Price-amount bdi { color: var(--primary-color); text-decoration: none; font-weight: normal; font-size: 24px; } 
.price ins { text-decoration: none; }
del { text-decoration: none; }
del .woocommerce-Price-amount bdi { color: #aaa;
text-decoration: line-through;
  text-decoration-color: #aaa;
  font-size: 27px;
	}
	
	
	.breadcrumb a { color: #000; text-decoration: none; }
        :root {
            --primary-color: #0000CC;
            --secondary-color: #1a1a1a;
            --accent-color: #f8f9fa;
            --text-dark: #333;
            --border-color: #dee2e6;
        }

        body {
            font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
            line-height: 1.6;
            background-color: #f8f9fa;
        }

        /* Header & Search */
        .top-header {
            background: #1a1a1a;
            color: white;
            padding: 8px 0;
            font-size: 0.85rem;
        }

        .main-header {
            background: white;
            box-shadow: 0 2px 10px rgba(0,0,0,0.1);
            padding: 15px 0;
        }

        .navbar-brand {
            color: var(--primary-color) !important;
            font-weight: bold;
            font-size: 2rem;
        }

        .search-container {
            flex: 1;
            max-width: 600px;
            margin: 0 30px;
        }

        .search-box {
            position: relative;
        }

        .search-input {
            width: 100%;
            padding: 12px 50px 12px 20px;
            border: 2px solid #e0e0e0;
            border-radius: 25px;
            font-size: 1rem;
            transition: all 0.3s ease;
        }

        .search-input:focus {
            outline: none;
            border-color: var(--primary-color);
            box-shadow: 0 0 0 3px rgba(227, 6, 19, 0.1);
        }

        .search-btn {
            position: absolute;
            right: 5px;
            top: 50%;
            transform: translateY(-50%);
            background: var(--primary-color);
            border: none;
            color: white;
            width: 40px;
            height: 40px;
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            transition: all 0.3s ease;
        }

        .search-btn:hover {
            background: #c00510;
            transform: translateY(-50%) scale(1.05);
        }

        .header-icons {
            display: flex;
            align-items: center;
            gap: 25px;
        }

        .header-icon {
            position: relative;
            color: #666;
            font-size: 1.3rem;
            transition: color 0.3s ease;
        }

        .header-icon:hover {
            color: var(--primary-color);
        }

        .cart-badge {
            position: absolute;
            top: -8px;
            right: -8px;
            background: var(--primary-color);
            color: white;
            border-radius: 50%;
            font-size: 0.7rem;
            padding: 2px 6px;
            min-width: 18px;
            text-align: center;
        }

        /* Product Layout */
        .product-container {
            background: white;
            border-radius: 15px;
            box-shadow: 0 5px 20px rgba(0,0,0,0.08);
            margin-top: 20px;
            overflow: hidden;
        }

        .breadcrumb-section {
            background: #f8f9fa;
            padding: 15px 0;
            border-bottom: 1px solid #e0e0e0;
        }

        .breadcrumb {
            background: none;
            padding: 0;
            margin: 0;
        }

        .breadcrumb-item + .breadcrumb-item::before {
            color: #0000CC;
        }

        /* Left Column - Images */
        .product-images {
            padding: 30px;
            background: #fafafa;
        }

        .main-image-container {
            position: relative;
            margin-bottom: 20px;
        }

        .main-image {
            width: 100%;
            max-height: 500px;
            object-fit: contain;
            border-radius: 15px;
            background: white;
            padding: 20px;
            box-shadow: 0 5px 15px rgba(0,0,0,0.1);
        }

        .image-badge {
            position: absolute;
            top: 15px;
            left: 15px;
            background: var(--primary-color);
            color: white;
            padding: 5px 12px;
            border-radius: 15px;
            font-size: 0.85rem;
            font-weight: bold;
        }

        .thumbnail-container {
            display: flex;
            gap: 10px;
            overflow-x: auto;
            padding: 5px 3px;
        }

        .thumbnail {
            flex-shrink: 0;
            width: 80px;
            height: 80px;
            border-radius: 10px;
            border: 2px solid transparent;
            cursor: pointer;
            transition: all 0.3s ease;
            background: white;
            padding: 10px;
            object-fit: contain;
        }

        .thumbnail:hover, .thumbnail.active {
            border-color: #0000CC;
            transform: scale(1.05);
        }

        /* Middle Column - Description & Specs */
        .product-details {
            padding: 30px;
            border-right: 1px solid #e0e0e0;
        }

        .product-title {
            font-size: 1.8rem;
            font-weight: bold;
            color: var(--text-dark);
            margin-bottom: 15px;
            line-height: 1.3;
        }

        .product-rating {
            display: flex;
            align-items: center;
            gap: 10px;
            margin-bottom: 20px;
        }

        .rating-stars {
            color: #ffc107;
            font-size: 1.1rem;
        }

        .rating-text {
            color: #666;
            font-size: 0.9rem;
        }

        .product-description {
            color: #666;
            font-size: 1rem;
            line-height: 1.6;
            margin-bottom: 30px;
        }

        .features-list {
            list-style: none;
            padding: 0;
            margin-bottom: 30px;
        }

        .features-list li {
            padding: 8px 0;
            border-bottom: 1px solid #f0f0f0;
            display: flex;
            align-items: center;
            gap: 10px;
        }

        .features-list li:last-child {
            border-bottom: none;
        }

        .feature-icon {
            color: var(--primary-color);
            width: 20px;
        }

        .specs-table {
            margin-top: 30px;
        }

        .specs-table table {
            font-size: 0.9rem;
        }

        .specs-table th {
            background: #f8f9fa;
            font-weight: 600;
            padding: 12px;
            border: 1px solid #e0e0e0;
            width: 40%;
        }

        .specs-table td {
            padding: 12px;
            border: 1px solid #e0e0e0;
        }

        /* Right Column - Purchase */
        .purchase-panel {
            padding: 15px;
            background: #fafafa;
        }

        .price-section {
            background: white;
            border-radius: 15px;
            padding: 25px;
            margin-bottom: 25px;
            box-shadow: 0 3px 10px rgba(0,0,0,0.05);
            text-align: center;
        }

        .old-price {
            color: #999;
            text-decoration: line-through;
            font-size: 1.1rem;
            margin-bottom: 5px;
        }

        .current-price {
            color: var(--primary-color);
            font-size: 2.5rem;
            font-weight: bold;
            margin-bottom: 10px;
			margin-top: -25px;
        }

        .price-suffix {
            color: #666;
            font-size: 1rem;
            font-weight: normal;
        }

        .discount-info {
            background: #99CCFF;
            color: #000099;
            padding: 8px 15px;
            border-radius: 20px;
            font-size: 0.9rem;
            font-weight: bold;
            display: inline-block;
        }

        .availability {
            background: white;
            border-radius: 10px;
            padding: 20px;
            margin-bottom: 20px;
            border-left: 4px solid #28a745;
        }

        .availability-status {
            color: #28a745;
            font-weight: bold;
            font-size: 1.1rem;
            margin-bottom: 5px;
        }

        .delivery-info {
            color: #666;
            font-size: 0.9rem;
        }

        .options-section {
            margin-bottom: 25px;
        }

        .option-title {
            font-weight: bold;
            margin-bottom: 15px;
            color: var(--text-dark);
        }

        .color-options {
            display: flex;
            gap: 10px;
            margin-bottom: 20px;
        }

        .color-option {
            width: 40px;
            height: 40px;
            border-radius: 50%;
            border: 3px solid transparent;
            cursor: pointer;
            transition: all 0.3s ease;
            position: relative;
        }

        .color-option:hover, .color-option.active {
            border-color: var(--primary-color);
            transform: scale(1.1);
        }

        .color-desert { background: linear-gradient(45deg, #d4af37, #b8860b); }
        .color-natural { background: linear-gradient(45deg, #f5f5dc, #ddd); }
        .color-white { background: linear-gradient(45deg, #fff, #f8f8ff); border: 1px solid #ddd; }
        .color-black { background: linear-gradient(45deg, #2c2c2c, #000); }

        .storage-options {
            display: flex;
            flex-direction: column;
            gap: 10px;
        }

        .storage-option {
            display: flex;
            justify-content: space-between;
            align-items: center;
            padding: 12px 15px;
            border: 2px solid #e0e0e0;
            border-radius: 10px;
            cursor: pointer;
            transition: all 0.3s ease;
            background: white;
        }

        .storage-option:hover, .storage-option.active {
            border-color: var(--primary-color);
            background: #fff;
        }

        .storage-size {
            font-weight: bold;
        }

        .storage-price {
            color: var(--primary-color);
            font-weight: bold;
        }

        .action-buttons {
            margin-bottom: 25px;
        }

        .btn-add-cart {
            background: var(--primary-color);
            border: none;
            color: white;
            
            font-size: 1.1rem;
            font-weight: bold;
            border-radius: 10px;
            width: 100%;
            margin-bottom: 15px;
            transition: all 0.3s ease;
			padding: 20px!important;
    border-radius: 8px!important;
        }
		
		}
.quantity .qty {
    width: 4.235801032em;
    text-align: center;
    margin: 10px auto!important;
    display: block!important;
}
.woocommerce-variation-add-to-cart .quantity { margin: 10px; text-align: center; }

.variations  select { width: 100%; }
        .btn-add-cart:hover {
            background: #000;
            transform: translateY(-2px);
            box-shadow: 0 5px 15px rgba(0, 0, 0, 0.3);
			color: #fff;
        }

        .secondary-buttons {
            display: flex;
            gap: 10px;
        }

        .btn-secondary {
            flex: 1;
            padding: 12px;
            border: 2px solid #e0e0e0;
            background: white;
            color: #666;
            border-radius: 10px;
            font-weight: bold;
            transition: all 0.3s ease;
        }

        .btn-secondary:hover {
            border-color: var(--primary-color);
            color: var(--primary-color);
			background: transparent;
        }

        .additional-info {
            background: white;
            border-radius: 10px;
            padding: 20px;
        }

        .info-item {
            display: flex;
            align-items: center;
            gap: 10px;
            padding: 10px 0;
            border-bottom: 1px solid #f0f0f0;
        }

        .info-item:last-child {
            border-bottom: none;
        }

        .info-icon {
            color: var(--primary-color);
            width: 20px;
        }

        .info-text {
            flex: 1;
            font-size: 0.9rem;
        }

        /* Responsive */
        @media (max-width: 992px) {
            .search-container {
                margin: 20px 0;
                order: 3;
                flex-basis: 100%;
            }

            .product-images, .product-details, .purchase-panel {
                border-right: none;
                border-bottom: 1px solid #e0e0e0;
            }

            .purchase-panel {
                border-bottom: none;
            }

            .current-price {
                font-size: 2rem;
            }
        }

        @media (max-width: 768px) {
            .secondary-buttons {
                flex-direction: column;
            }

            .header-icons {
                gap: 15px;
            }

            .search-container {
                margin: 15px 0;
            }
        }
		
		.bg-navy { background: #0000CC!important; }
		.text-navy { color: #0000CC!important; }
		.text-black { color: #000!important; }
		
		
		
		
		
		
		
		
		.current-price-listing { font-size: 2.5em; margin-top: -20px; }
		
		 /* Sidebar */
    .sidebar {
      background: white;
      padding: 20px;
      border-radius: 6px;
      box-shadow: 0 0 10px rgb(0 0 0 / 0.1);
      /*max-height: 90vh;
      overflow-y: auto;
	  */
      position: sticky;
      top: 20px;
    }
    .sidebar h5 {
      font-weight: 700;

      padding-bottom: 6px;
      margin-bottom: 15px;
    }
    /* Kategorie */
    .category-list label {
      display: flex;
      align-items: center;
      gap: 10px;
      font-weight: 600;
      cursor: pointer;
      margin-bottom: 8px;
    }
    .category-list input[type="checkbox"] {
      cursor: pointer;
    }
    /* Filtr ceny */
    .price-filter {
      margin-bottom: 30px;
    }
    .price-filter input[type="range"] {
      width: 100%;
    }
    .price-values {
      display: flex;
      justify-content: space-between;
      font-size: 0.9rem;
      margin-top: 6px;
      font-weight: 600;
      color: #333;
    }
    /* Artykuły */
    .articles .article {
      display: flex;
      margin-bottom: 15px;
      cursor: pointer;
    }
    .articles .article img {
      width: 80px;
      height: 60px;
      object-fit: cover;
      border-radius: 5px;
      margin-right: 10px;
      flex-shrink: 0;
    }
    .articles .article .title {
      font-weight: 600;
      font-size: 0.95rem;
      color: #000;
      line-height: 1.2;
    }
    /* Promowany produkt */
    .promo-product {
      background: #f1f5f9;
      border-radius: 8px;
      padding: 12px;
      text-align: center;
      box-shadow: inset 0 0 8px rgb(0 0 0 / 0.05);
      cursor: pointer;
      transition: background-color 0.3s;
    }
    .promo-product:hover {
      background: #e0ebff;
    }
    .promo-product img {
      max-width: 100%;
      border-radius: 6px;
      margin-bottom: 10px;
      object-fit: contain;
      height: 150px;
    }
    .promo-product .name {
      font-weight: 700;
      font-size: 1.1rem;
      margin-bottom: 6px;
      color: #212529;
    }
    .promo-product .price {
      font-weight: 700;
      color: #e63946;
      margin-bottom: 10px;
      font-size: 1.2rem;
    }
    .promo-product .btn {
      font-weight: 600;
      font-size: 0.95rem;
      padding: 6px 12px;
    }
    /* Scrollbar for sidebar */
    .sidebar::-webkit-scrollbar {
      width: 6px;
    }
    .sidebar::-webkit-scrollbar-thumb {
      background: #e30613;
      border-radius: 3px;
    }
	
	
	
	.breadcrumb a { color: #000; text-decoration: none; }
	
	.breadcrumb a { color: #000; text-decoration: none; }
       
        /* Header & Search */
        .top-header {
            background: #1a1a1a;
            color: white;
            padding: 8px 0;
            font-size: 0.85rem;
        }

        .main-header {
            background: white;
            box-shadow: 0 2px 10px rgba(0,0,0,0.1);
            padding: 15px 0;
        }

        .navbar-brand {
            color: var(--primary-color) !important;
            font-weight: bold;
            font-size: 2rem;
        }

        .search-container {
            flex: 1;
            max-width: 600px;
            margin: 0 30px;
        }

        .search-box {
            position: relative;
        }

        .search-input {
            width: 100%;
            padding: 12px 50px 12px 20px;
            border: 2px solid #e0e0e0;
            border-radius: 25px;
            font-size: 1rem;
            transition: all 0.3s ease;
        }

        .search-input:focus {
            outline: none;
            border-color: var(--primary-color);
            box-shadow: 0 0 0 3px rgba(227, 6, 19, 0.1);
        }

        .search-btn {
            position: absolute;
            right: 5px;
            top: 50%;
            transform: translateY(-50%);
            background: var(--primary-color);
            border: none;
            color: white;
            width: 40px;
            height: 40px;
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            transition: all 0.3s ease;
        }

        .search-btn:hover {
            background: #c00510;
            transform: translateY(-50%) scale(1.05);
        }

        .header-icons {
            display: flex;
            align-items: center;
            gap: 25px;
        }

        .header-icon {
            position: relative;
            color: #666;
            font-size: 1.3rem;
            transition: color 0.3s ease;
        }

        .header-icon:hover {
            color: var(--primary-color);
        }

        .cart-badge {
            position: absolute;
            top: -8px;
            right: -8px;
            background: var(--primary-color);
            color: white;
            border-radius: 50%;
            font-size: 0.7rem;
            padding: 2px 6px;
            min-width: 18px;
            text-align: center;
        }

        /* Product Layout */
        .product-container {
            background: white;
            border-radius: 15px;
            box-shadow: 0 5px 20px rgba(0,0,0,0.08);
            margin-top: 20px;
            overflow: hidden;
        }

        .breadcrumb-section {
            background: #f8f9fa;
            padding: 15px 0;
            border-bottom: 1px solid #e0e0e0;
        }

        .breadcrumb {
            background: none;
            padding: 0;
            margin: 0;
        }

        .breadcrumb-item + .breadcrumb-item::before {
            color: var(--primary-color);
        }

.product-listing-fix .product-images { background: transparent!important; padding: 0px!important; }
.product-listing-fix .main-image {
	    width: 100%;
    max-height: 500px;
    object-fit: contain;
    border-radius: 0px;
    background: white;
    padding: 0px!important;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0)!important;
}


.woocommerce-pagination, .woocommerce-pagination { float: left; width: 100%; }
.woocommerce-pagination { margin-top: 25px; }
.woocommerce-result-count { line-height: 38px; }
input, select { padding: 10px; }
a.button, button[type="submit"] {  text-decoration: none!important; background-color: var(--primary-color)!important; color: #fff; padding: 10px; border: 0px; border-radius: 3px;}
.page-numbers { float: left; width: 100%; list-style: none; display: flex;
  justify-content: center; /* wyśrodkowanie w poziomie */
  list-style: none; /* opcjonalnie: usunięcie kropek */
  padding: 0;
  margin: 0px 0px; }
.page-numbers li { padding: 7px; background: var(--primary-color); color: #fff!important; float: left;  margin: 0 5px;  width: 35px; border-radius: 50%;}
.page-numbers li a { color: #fff!important; text-decoration: none; }
.page-numbers li span { background: none!important; color: #fff!important; }




		
		.banner {
      flex: 3;
      border-radius: 8px;
      min-height: 300px;
      box-shadow: 0 4px 8px rgba(0,0,0,0.1);
     
    }
    .categories {
      flex: 1;
      background: white;
      border-radius: 8px;
      box-shadow: 0 4px 8px rgba(0,0,0,0.1);
      padding: 16px;
    }
    .categories h2 {
      margin-top: 0;
      font-size: 1.4rem;
      border-bottom: 0px solid #e2001a;
      padding-bottom: 10px;
      color: #333;
    }
    .categories ul {
      list-style: none;
      padding-left: 0;
      margin: 0;
    }
    .categories ul li {
      margin: 14px 0;
      display: flex;
      align-items: center;
      gap: 12px;
    }
    .categories ul li a {
      text-decoration: none;
      color: #333;
      font-weight: 600;
      transition: color 0.3s;
      flex-grow: 1;
    }
    .categories ul li a:hover {
      color: #e2001a;
    }
    .icon {
      width: 28px;
      height: 28px;
      fill: #333;
      flex-shrink: 0;
    }

    /* Responsywność */
    @media (max-width: 768px) {
      .container {
        flex-direction: column;
      }
      .banner, .categories {
        flex: none;
        width: 100%;
      }
      .banner {
        min-height: auto;
      }
    }
	
	
	  /* Sekcja Okazje */
    .deals-section {

      padding: 0 10px;
    }
    h4.line, .deals-section h2 {
      color: #333;
      border-bottom: 2px solid #333;
      padding-bottom: 10px;
      margin-bottom: 20px;
      font-size: 1.6rem;
    }
    .deals-grid {
      display: grid;
      grid-template-columns: repeat(auto-fit,minmax(220px,1fr));
      gap: 20px;
    }
    .deal-card {
      background: white;
      border-radius: 8px;
      box-shadow: 0 4px 10px rgba(0,0,0,0.1);
      overflow: hidden;
      display: flex;
      flex-direction: column;
      transition: transform 0.3s ease;
    }
    .deal-card:hover {
      transform: translateY(-6px);
      box-shadow: 0 10px 15px rgba(0,0,0,0.15);
    }
    .deal-image {
      width: 100%;
      height: 140px;
      object-fit: cover;
      background-color: #f0f0f0;
    }
    .deal-content {
      padding: 12px 16px;
      flex-grow: 1;
      display: flex;
      flex-direction: column;
    }
    .deal-title {
      font-weight: 700;
      font-size: 1.1rem;
      margin: 0 0 6px 0;
      color: #222;
    }
    .deal-desc {
      font-size: 0.9rem;
      color: #555;
      flex-grow: 1;
      margin-bottom: 8px;
    }
    .deal-price {
      font-weight: 700;
      font-size: 1.2rem;
      color: #e2001a;
    }

    /* Responsywność */
    @media (max-width: 768px) {
      .container {
        flex-direction: column;
      }
      .banner, .categories {
        flex: none;
        width: 100%;
      }
      .banner {
        min-height: auto;
      }
      .deals-section {
        padding: 0 10px;
      }
    }





 .deals-section2 {
    max-width: 1200px;
    margin: 40px auto;
    padding: 0 20px;
  }
  .deals-section2 h2 {
    color: #e2001a;
    border-bottom: 2px solid #e2001a;
    padding-bottom: 10px;
    margin-bottom: 20px;
    font-size: 1.6rem;
    font-weight: 700;
  }
  .deals-grid2 {
    display: flex;
    gap: 30px;
    justify-content: center;
    flex-wrap: wrap;
  }
  .deal-item2 {
    width: 140px;
    text-align: center;
    cursor: pointer;
    transition: transform 0.3s ease;
  }
  .deal-item2:hover {
    transform: scale(1.05);
  }
  .deal-item2 img {
    width: 140px;
    height: 140px;
    object-fit: cover;
    border-radius: 50%;
    box-shadow: 0 4px 10px rgba(0,0,0,0.1);
  }
  .deal-item2 p {
    margin-top: 12px;
    font-weight: 600;
    color: #333;
  }
  
  /* Responsywność */
  @media (max-width: 480px) {
    .deal-item2 {
      width: 100px;
    }
    .deal-item2 img {
      width: 100px;
      height: 100px;
    }
  }
  
  .shop_table_responsive { float: left; width: 100%; }
  
  .woocommerce-products-header__title { text-align: center; }
  .bdp-post-image-bg img { width: 100%; }
  
      table.shop_table_responsive tbody th, table.shop_table_responsive tr td {
		padding: 10px!important;

	  }
	  .wc-proceed-to-checkout .button.checkout-button {
		line-height: 52px; 
	  }
	  
	  #customer_details .col-1 ,#customer_details .col-2 {  width: 100%!important; }
	  .order_details th, .order_details td, table.woocommerce-checkout-review-order-table td, table.woocommerce-checkout-review-order-table th { padding: 10px; }
	 
.order_details {
    
    width: 100%;
    margin-bottom: 25px;
}
/*
#popmake-131 { display: none!important; }
#pum-131 { opacity: 0!important; }

html.pum-open.pum-open-overlay.pum-open-scrollable .pum-overlay.pum-active {
	
}
*/

.deal-card a, .product-title a ,.card .card-body a { color :#000; text-decoration: none; }
.card-body ins, .deal-price ins { text-decoration: none!important; }
.card-body .woocommerce-Price-amount { font-size: 30px; }
.navbar-brand img { width: 137px; }

#post-navigation { float: left; width: 100%; }

.club_price { font-size: 24px; color: #1b98dd; }
.text_gray { color: #aaa;
    font-size: 12px;
    float: left;
    width: 100%;
    margin: 0px;
    padding: 0px;
    font-weight: normal; }
	
	.single_add_to_cart_button {
	
	width: 100%;
    margin: 0px 0px 5px 0px;
    border-radius: 5px;
	}
	
	.variations label { 
	
	margin-top: -10px;
    position: relative;
    top: -12px;
    margin-right: 5px;
	
	}
	
	
	.ico_eclub {
		position:relative;
	}
	
	.purchase-panel .eclub_item .ico_eclub 
	{
	
	    top: -13px;
    position: relative;
    left: -12px;
	}
	.info_text { 
	
	    position: absolute;
    font-size: 13px;
    background: #0000CC;
    color: #fff;
    padding: 1px;
    border-radius: 6px;
    top: 35px;
    width: 57px;
    text-align: center;
    left: -19px;
	}
	
	.eclub_item .club_price { font-size: 29px!important; color: #1b98dd!important; font-weight: bold;}
	.eclub_item { float: left; margin-left: 15px; padding-bottom: 15px; }
	.purchase-panel .eclub_item { float: none; margin-left: auto; padding-bottom: 0px; margin-top: -30px; }
	.purchase-panel .woocommerce-Price-amount { float: left;     margin-top: -24px;
    margin-left: 92px;}
	.purchase-panel .eclub_item .club_price { font-size: 28px!important; }
	h4 { font-size: 17px; font-weight: normal; }
	
	
	
	.wp-alert--warning { 
	    background: #ff0000;
    padding: 20px;
    text-align: center;
    color: #fff
	}
	
	.wp-alert--info {
		  background: #0000CC;
    padding: 20px;
    text-align: center;
    color: #fff
	}
	
	.card-body .woocommerce-Price-amount {
    font-size: 28px;
    padding-left: 5px;
}

.price-fix-dev .woocommerce-Price-amount  { margin-top: 3px; float: left;  padding-left: 5px; }

[type=button]:not(:disabled):hover, [type=reset]:not(:disabled):hover, [type=submit]:not(:disabled):hover, button:not(:disabled):hover {
		color: #fff!important;
}
.btn-fixed-dev button:hover { color: #000!important; }

.promo-product .club_price, .promo-product .woocommerce-Price-amount bdi { font-size: 19px!important; }

 .custom_variation_price { float: left!important;
    width: 100%!important;
    margin: 50px 35px!important; }
	
	.custom_variation_price .woocommerce-Price-amount { padding-top: 14px!important; }