/******* Do not edit this file *******
Simple Custom CSS and JS - by Silkypress.com
Saved: Sep 10 2025 | 11:51:00 */
.variations_form .variations .reset_variations,
.product_meta .sku_wrapper {
   display: none;
}

.fusion-product-content .product-title {
	font-size: 24px;
}

.fusion-main-menu-cart .fusion-widget-cart-number {
	color: #FFF;
}

.products .product-images,
.woocommerce-product-gallery__image,
.wc-block-grid__product .wc-block-grid__product-image {
	border: 1px solid var(--grid_separator_color);
}

.go-to-cart-wrapper .button,
#custom-cart-message .custom-discount-message .button,
.custom-tab.active {
  font-family: var(--button_typography-font-family);
  font-weight: var(--button_typography-font-weight);
  letter-spacing: var(--button_typography-letter-spacing);
  border-width: var(--button_border_width);
  border-style: solid;
  text-transform: var(--button_text_transform);
  -webkit-transition: all .2s;
  transition: all .2s;
  padding: 13px 29px;
  line-height: 17px;
  font-size: 14px;
  background: var(--button_gradient_top_color);
  color: var(--button_accent_color);
  border-color: var(--button_accent_color);
}

.go-to-cart-wrapper .button:hover,
#custom-cart-message .custom-discount-message .button:hover,
.custom-tab:hover, 
.custom-tab.active:hover {
	background: var(--button_gradient_top_color_hover);
	color: var(--button_accent_hover_color,var(--button_accent_color));
	border-color: var(--button_accent_hover_color-fallback-to-transparent);
	cursor: pointer;
}

#custom-cart-message {
	position: relative;
	left: 50%;
	transform: translateX(-50%);
	max-width: none;
	min-width: 100%;
	width: 80vw;
}

#custom-cart-message .custom-discount-message {
	background: #f7fbff;
	padding: 14px;
	margin: 14px 0;
	border: 1px solid #e1e9f2;
	border-radius: 8px;
	text-align: center;
}

#custom-cart-message .custom-discount-message p {
	margin: 0 0 8px;
	font-size: 17px;
	text-transform: uppercase;
	color: var(--button_gradient_top_color);
	font-weight: 600;
}

/* --- Sekcja zakładek --- */
.custom-tabs {
    display: flex;
    justify-content: center;
    margin-bottom: 25px;
    gap: 15px;
}

.custom-tab {
	font-family: var(--button_typography-font-family);
	font-weight: var(--button_typography-font-weight);
	letter-spacing: var(--button_typography-letter-spacing);
	border-width: var(--button_border_width);
	border-style: solid;
	text-transform: var(--button_text_transform);
	-webkit-transition: all .2s;
	transition: all .2s;
	padding: 13px 29px;
	line-height: 17px;
	font-size: 14px;
}

/* --- Siatka produktów --- */
.custom-products-grid {
    display: flex;
    gap: 20px;
}

/* --- Karta produktu --- */
.custom-product-card {
    width: 100%;
    max-width: 20%;
    background: transparent;
    text-align: center;
    display: flex;
    flex-direction: column;
    align-items: center;
}

/* Obrazek produktu */
.custom-product-card img {
    max-width: 100%;
    height: auto;
    border: 1px solid #e5e5e5;
    border-radius: 4px;
    margin-bottom: 12px;
}

/* Nazwa produktu */
.custom-product-card h3 {
    font-size: 16px;
    font-weight: 500;
    color: #0071a1;
    margin: 8px 0;
    line-height: 1.3em;
    text-decoration: none;
    height: 40px;
    overflow: hidden;
}

/* Cena */
.custom-product-card .price {
    font-size: 15px;
    font-weight: 600;
    color: #111;
    margin-top: 5px;
}

/* Link jako cała karta */
.custom-product-card a {
    text-decoration: none;
    display: block;
    color: inherit;
}

/* Efekt hover na karcie */
.custom-product-card:hover h3 {
    text-decoration: underline;
}

@media only screen and (max-width: 991px) {
	.custom-products-grid {
		flex-wrap: wrap;
		gap: 15px;
	}
	
	.custom-product-card {
		max-width: 32%;
	}
}

@media only screen and (max-width: 600px) {
	.custom-products-grid {
		gap: 10px;
	}
	
	.custom-product-card {
		max-width: 48%;
	}
}


