/* ===== ORIENTICA STYLE - Elegancki Design Orientalny ===== */

/* ===== 0. Zmienne Kolorystyczne - TWOJE ORYGINALNE KOLORY ===== */
:root {
  /* Tło - Ciemna Ziemia / Ciepły Brąz */
  --bg-darkest: #2A1D19;           /* Najciemniejsze partie / header */
  --bg-dark: #3B2A24;              /* Główne tło */
  --bg-medium: #4A342C;            /* Jaśniejsze przejścia */
  
  /* Sekcje / Bloki (lekko rozjaśnione panele) */
  --bg-panel: #5A4036;             /* Panele */
  --bg-card: #6B4B3E;              /* Karty */
  --bg-light: rgba(90, 64, 54, 0.6); /* Przezroczyste panele */
  
  /* Tekst i Logo (dopasowane do ciemnego tła) */
  --text-light: #E8D8C3;           /* Główny jasny beż */
  --text-gold: #D6B98C;            /* Delikatny złamany złoty */
  --text-beige: #C9B39A;           /* Subtelny tekst */
  --text-muted: #A89677;           /* Przygaszony */
  
  /* Akcenty - Przyciski "Shop Now" */
  --accent-primary: #A3683A;       /* Główny akcent */
  --accent-hover: #C27A45;         /* Hover */
  
  /* Zgaszona zieleń etno (akcenty kategorii) */
  --accent-green: #5E6B4A;         /* Zieleń etno */
  --accent-green-dark: #4C573C;    /* Ciemniejsza zieleń */
  
  /* Dodatkowe akcenty */
  --accent-warm: #A3683A;          /* Ciepły akcent */
  
  /* Ramki */
  --border-subtle: rgba(214, 185, 140, 0.15);
  --border-gold: rgba(214, 185, 140, 0.3);
  
  /* RGB dla efektów */
  --accent-rgb: 163, 104, 58;      /* #A3683A */
  --gold-rgb: 214, 185, 140;       /* #D6B98C */
  --green-rgb: 94, 107, 74;        /* #5E6B4A */
}

/* ===== Import czcionek - Libre Baskerville (jak w mockupie) ===== */
@import url('https://fonts.googleapis.com/css2?family=Almendra+Display&family=Habibi&family=Kaushan+Script&family=Lato:wght@300;400;700&family=Libre+Baskerville:ital,wght@0,400;0,700;1,400&family=Marck+Script&display=swap');

/* ===== 1. Bazowe Ustawienia ===== */
html {
  scroll-behavior: smooth;
}

body {
  font-family: "Lato", sans-serif;
  background-color: var(--bg-dark) !important;
  background-image: url('background-texture.jpg') !important;
  background-attachment: fixed !important;
  background-size: cover !important;
  background-position: center !important;
  color: var(--text-light) !important;
  line-height: 1.7;
  overflow-x: hidden;
  position: relative;
}

/* Overlay dla lepszej czytelności */
body::before {
  content: "";
  position: fixed;
  inset: 0;
  background: radial-gradient(circle at 30% 40%, transparent 0%, rgba(42, 29, 25, 0.2) 100%);
  pointer-events: none;
  z-index: 0;
}

/* Subtelna tekstura */
body::after {
  content: "";
  position: fixed;
  inset: 0;
  background-image: 
    repeating-linear-gradient(0deg, transparent, transparent 2px, rgba(201, 163, 92, 0.02) 2px, rgba(201, 163, 92, 0.02) 4px);
  pointer-events: none;
  opacity: 0.3;
  z-index: 0;
}

#wrapper {
    position: relative;
    z-index: 1;
    min-height: 100vh;
    background: #291d198a;
}

/* ===== Etniczne symbole po bokach - lewa strona ===== */
#wrapper::before {
  content: "";
  position: fixed;
  left: 0;
  top: 0;
  width: 200px;
  height: 100%;
  background-image: url('ethnic-symbols-left.svg');
  background-repeat: repeat-y;
  background-position: left center;
  background-size: 200px auto;
  pointer-events: none;
  z-index: 1;
  opacity: 1;
}

/* ===== Etniczne symbole po bokach - prawa strona ===== */
#wrapper::after {
  content: "";
  position: fixed;
  right: 0;
  top: 0;
  width: 200px;
  height: 100%;
  background-image: url('ethnic-symbols-right.svg');
  background-repeat: repeat-y;
  background-position: right center;
  background-size: 200px auto;
  pointer-events: none;
  z-index: 1;
  opacity: 1;
}
/* ===== 2. Typography ===== */
h1, h2, h3, h4, h5, h6,
.h1, .h2, .h3, .h4,
.product-title {
  font-family: "Libre Baskerville", serif !important;
  color: var(--text-gold) !important;
  font-weight: 400 !important;
  margin-bottom: .6em;
}

p {
  color: var(--text-beige);
  margin-bottom: 1em;
}

.label, label,
form .form-control-label {
  font-size: .875rem;
  font-weight: 400;
  color: var(--text-beige);
  text-align: right;
}

/* ===== 3. Links ===== */
a {
  color: var(--text-gold) !important;
  text-decoration: none;
  transition: color .2s ease;
}
a:hover, a:focus {
  color: var(--accent-hover) !important;
  text-decoration: none;
}

/* ===== 4. Buttons ===== */
.btn-primary,
.add-to-cart {
  font-family: "Lato", sans-serif;
  background-color: var(--accent-primary) !important;
  border: none !important;
  color: var(--text-light) !important;
  transition: all .25s ease;
  border-radius: 4px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  line-height: 1.2;
  padding: 0.875rem 2rem !important;
}

.btn-primary:hover,
.add-to-cart:hover {
  background-color: var(--accent-hover) !important;
  color: var(--text-light) !important;
  transform: translateY(-2px);
  box-shadow: 0 6px 18px rgba(var(--accent-primary-rgb), 0.35);
}

/* ===== HEADER ===== */
#header {
    background: rgb(28 20 16 / 39%) !important;
    backdrop-filter: blur(15px);
    border-bottom: 1px solid var(--border-dark);
    color:var(--text-gold);
}

#header .header-nav .cart-preview.active {
    background: none;
}
#header .header-top > .container > .row:first-of-type {
  flex-wrap: wrap;
}

#header .header-top{
padding: 5px !important;
}

#header .logo {
  width: 250px;
  filter: drop-shadow(0 2px 8px rgba(214, 185, 140, 0.2));
}

#header .header-nav {
  max-height: 60px !important;
  background: transparent !important;
  border: none;
  border-bottom: 2px solid var(--accent-primary);
}

#header .header-nav .blockcart {
  background: transparent;
}

/* Menu Links */
.top-menu a[data-depth="0"],
.navbar a,
.menu a,
.sf-menu a {
  font-family: "Habibi", sans-serif !important;
  color: var(--text-beige) !important;
  padding: .625rem 1.25rem;
  transition: color .3s ease;
}

.top-menu a[data-depth="0"]:hover,
.navbar a:hover,
.menu a:hover,
.sf-menu a:hover {
  color: var(--text-gold) !important;
  background: rgba(163, 104, 58, 0.15);
}

.cart-preview .shopping-cart,
#header .header-nav .cart-preview .shopping-cart {
  color: var(--text-gold) !important;
}

/* ===== 5. Cards & Containers ===== */
.card, .block, .page-content {
  background-color: var(--bg-light);
  border: 1px solid var(--border-dark);
  color: var(--text-light);
  border-radius: 0;
  margin-bottom: .75rem;
}

.card-block {
  padding: 1.25rem 1.25rem .5rem;
}

/* ===== 6. Forms ===== */
input, select, textarea {
  background-color: rgba(42, 29, 25, 0.6);
  border: 1px solid var(--border-gold);
  color: var(--text-light);
  border-radius: 4px;
  padding: 0.75rem;
}

input:focus, select:focus, textarea:focus {
  border-color: var(--text-gold);
  box-shadow: 0 0 5px rgba(214, 185, 140, 0.3);
}

input::placeholder {
  color: var(--text-disabled);
  opacity: 0.7;
}

/* ===== 7. Footer ===== */
footer {
  background: rgba(42, 29, 25, 0.95) !important;
  backdrop-filter: blur(15px);
  border-top: 1px solid var(--border-dark);
  color: var(--text-beige);
  padding: 3rem 0 1.5rem;
}

footer a {
  color: var(--text-beige);
}

footer a:hover {
  color: var(--text-gold);
}

.footer-container h3 {
  color: var(--text-gold) !important;
}

/* ===== 8. Prices ===== */
.price, .product-price {
  color: var(--text-gold);
  font-weight: 600;
}

/* ===== 9. Alerts ===== */
.alert-success {
  border-color: var(--accent-green);
  color: var(--accent-green);
  background: rgba(94, 107, 74, 0.15);
}

.alert-warning {
  border-color: var(--accent-primary);
  color: var(--accent-hover);
  background: rgba(184, 147, 95, 0.15);
}

/* ===== 10. Newsletter ===== */
.block_newsletter {
  background: var(--bg-light);
  color: var(--text-light);
  border: 1px solid var(--border-dark);
  border-radius: 4px;
  padding: 2rem;
  max-width: 600px;
  margin: 2rem auto;
}

.block_newsletter #block-newsletter-label {
  font-family: "Libre Baskerville", serif;
  color: var(--text-gold);
  font-size: 1.5rem;
}

.block_newsletter p {
  color: var(--text-beige);
}

/* ===== KATEGORIE - ukryte na mobile ===== */
.categories-grid .category-card,
.block-categories ul li {
  display: flex;
  flex-direction: column;
  align-items: center;
  background-color: var(--bg-light);
  border: 1px solid var(--border-dark);
  border-radius: 0;
  padding: 1rem;
  text-align: center;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
}

.block-category .block-category-inner #category-description .page-content.page-cms ul:first-child, .block-category .block-category-inner #category-description p:first-child, .page-content.page-cms .block-category .block-category-inner #category-description ul:first-child {
    margin-bottom: 1.25rem;
    color: var(--text-muted);
}

.block-categories {
    padding: 1.563rem 1.25rem;
    margin-bottom: 1.563rem;
    background: var(--bg-light);
    border: 1px solid var(--border-dark);
    border-radius: 0;
    display: none;
}

.categories-grid .category-card img,
.block-categories ul li img {
  max-width: 100%;
  border-radius: 0;
}

#subcategories {
    display: none !important;
  }

/* Ukryj kategorie na mobile */
@media (max-width: 991px) {
  .categories-grid,
  .block-categories,
  #mobile_categories_menu,
  #subcategories {
    display: none !important;
  }
}

/* ===== PRODUKTY - ZIELONE TŁO (--accent-green) ===== */
.products .product-miniature,
.product-miniature,
#category .product-miniature,
article.product-miniature {
  background: var(--bg-darkest) !important;
  border: 1px solid rgba(214, 185, 140, 0.2) !important;
  border-radius: 0;
  padding: 1rem;
  margin: 0.75rem;
  text-align: center;
  transition: all 0.3s ease;
  display: flex;
  flex-direction: column;
}

.product-miniature .highlighted-informations .quick-view {
    font-size: 1rem;
    color: var(--bg-dark) !important;
}

.product-miniature .highlighted-informations {
    position: absolute;
    top: 100%;
    z-index: 2;
    width: 100%;
    height: auto;
    padding: .625rem 0;
    text-align: center;
    background: var(--text-beige) !important;
    -webkit-transition: .3s;
    transition: .3s;
}

.products .product-miniature:hover,
.product-miniature:hover {
  border-color: var(--text-gold) !important;
  box-shadow: 0 0 20px rgba(214, 185, 140, 0.3);
  transform: translateY(-5px);
}

.products .product-miniature img,
.product-miniature .product-thumbnail img {
  width: 100%;
  aspect-ratio: 1 / 1;
  object-fit: cover;
  border-radius: 0;
  transition: transform 0.3s ease;
  background: var(---bg-dark);
}

.products .product-miniature:hover img,
.product-miniature:hover .product-thumbnail img {
  transform: scale(1.05);
}

.products .product-miniature .product-title a,
.product-miniature .product-title a {
  color: var(--text-light) !important;
  font-family: "Libre Baskerville", serif !important;
  font-size: 1rem;
  font-weight: 400;
  display: block;
  margin: 0.75rem 0 0.5rem;
}

.products .product-miniature .product-title a:hover,
.product-miniature .product-title a:hover {
  color: var(--text-gold) !important;
}

.products .product-miniature .price,
.product-miniature .product-price-and-shipping {
  color: var(--text-gold) !important;
  font-size: 1.125rem;
  font-weight: 600;
  margin: 0.5rem 0;
  margin-top: auto;
}

.product-miniature .product-description {
  position: relative;
  bottom: 0;
  height: auto;
  padding: .25rem .25rem .7rem;
  background: var(--accent-green) !important;
}

/* Product Flags */
.product-flags li.product-flag {
  background: var(--accent-primary) !important;
  color: var(--text-light) !important;
  padding: 0.375rem 0.75rem;
  border-radius: 3px;
  font-size: 0.75rem;
  font-weight: 600;
  text-transform: uppercase;
}

.product-flags li.product-flag.on-sale {
  background: var(--accent-hover) !important;
}

/* Wishlist */
.wishlist-button-add {
  background-color: var(---bg-dark) !important;
  border: 1px solid var(--border-gold);
  border-radius: 50%;
}

.wishlist-button-add i {
  color: var(--text-gold) !important;
}



/* ===== Filters ===== */
#search_filters,
#search_filters_brands {
  background: var(--bg-light);
  border: 1px solid var(--border-dark);
  color: var(--text-light);
}

#search_filters h3 {
  color: var(--text-gold) !important;
}

#search_filters .facet .facet-title {
  font-family: "Libre Baskerville", serif;
  color: var(--text-gold);
  font-size: 1.125rem;
  text-transform: none;
}

#search_filters a {
  color: var(--text-beige);
}

#search_filters a:hover {
  color: var(--text-gold);
}

/* ===== Breadcrumb ===== */
.breadcrumb {
  background: var(--bg-light);
  border: 1px solid var(--border-dark);
  border-radius: 4px;
  padding: 0.875rem 1.25rem;
}

.breadcrumb-item a {
  color: var(--text-beige) !important;
}

.breadcrumb-item.active {
  color: var(--text-gold);
}

/* ===== Search Widget ===== */
#search_widget form input {
  background-color: var(--bg-light);
  border: 1px solid var(--border-gold);
  color: var(--text-light);
  border-radius: 4px;
}

#search_widget form input::placeholder {
  color: var(--text-disabled);
}

#search_widget form input:focus {
  border-color: var(--text-gold);
  box-shadow: 0 0 5px rgba(214, 185, 140, 0.3);
}

/* ===== Page Content ===== */
.page-content.page-cms {
  padding: 1.25rem;
  background: var(--bg-light);
  color: var(--text-light);
}

.page-content.page-cms a {
  color: var(--text-gold);
}

.page-content.page-cms a:hover {
  color: var(--accent-hover);
}

/* ===== Pagination ===== */
.pagination .page-item .page-link {
  background: var(--bg-light);
  border: 1px solid var(--border-dark);
  color: var(--text-beige);
  border-radius: 4px;
  margin: 0 0.25rem;
}

.pagination .page-item.active .page-link {
  background: var(--accent-primary);
  border-color: var(--accent-primary);
  color: var(--text-light);
}

.pagination .page-item .page-link:hover {
  background: var(--accent-hover);
  color: var(--text-light);
}

/* ===== Product Page ===== */
.product-container {
  background: var(--bg-light);
  border: 1px solid var(--border-dark);
  border-radius: 4px;
  padding: 2.5rem;
}

.product-information h1 {
  font-family: "Libre Baskerville", serif !important;
  color: var(--text-gold) !important;
  font-size: 2.5rem;
}

.product-description-short {
  color: var(--text-beige);
}

.product-prices {
  background: rgba(163, 104, 58, 0.08);
  border-left: 3px solid var(--accent-primary);
  padding: 1.25rem;
  border-radius: 4px;
}

/* ===== Tabs ===== */
.tabs {
  padding: 1.25rem 1.875rem;
  margin-top: 2rem;
  background: var(--bg-light);
  border-radius: 0;
  border: 1px solid var(--border-dark);
}

.tabs .nav-tabs {
  border-bottom: 2px solid var(--border-gold);
}

.tabs .nav-tabs .nav-link {
  color: var(--text-disabled);
  border: none;
  border-bottom: 3px solid transparent;
}

.tabs .nav-tabs .nav-link:hover {
  color: var(--text-gold);
}

.tabs .nav-tabs .nav-link.active {
  color: var(--text-gold);
  border-bottom-color: var(--text-gold);
  background: transparent;
}

.product-information {
  color: var(--text-beige);
}

/* ===== Checkout ===== */
body#checkout section.checkout-step {
  padding: .625rem;
  background-color: var(--bg-light);
  border: 2px solid var(--border-gold);
  border-radius: 0;
}

body#checkout section.checkout-step .delivery-options .delivery-option {
    min-height: 80px;
    padding: .9375rem 0;
    margin-bottom: .9375rem;
    background: var(--bg-dark);
}

body#checkout section.checkout-step .step-number {
  background-color: var(---bg-dark);
  color: var(--text-light);
  border: 2px solid var(--border-gold);
}

body#checkout section.checkout-step.-reachable.-current .step-number {
  background-color: var(--accent-primary);
  border-color: var(--accent-primary);
  box-shadow: 0 0 15px rgba(var(--accent-primary-rgb), 0.4);
}

body#checkout section.checkout-step .step-title {
  font-family: "Libre Baskerville", serif;
  color: var(--text-gold);
  border-bottom: 1px solid var(--border-gold);
}

.definition-list dl dd, .definition-list dl dt {
    -webkit-box-flex: 0;
    -ms-flex: 0 0 45%;
    flex: 0 0 45%;
    padding: .625rem;
    margin: .125rem;
    background: var(--bg-darkest);
    color: var(--text-gold);
}

/* ===== Modal ===== */
#blockcart-modal,
.modal-content {
  background-color: var(--bg-light);
  color: var(--text-light);
  border: 1px solid var(--border-dark);
}

#blockcart-modal .modal-header {
  background: var(--bg-light);
  border-bottom: 1px solid var(--border-gold);
}

#blockcart-modal .modal-title {
  color: var(--text-gold);
  font-family: "Libre Baskerville", serif;
}

#blockcart-modal .modal-body {
  background: var(--bg-dark);
  padding: 2rem;
}
#blockcart-modal .product-price {
    display: block;
    color: var(--text-light);
}
#blockcart-modal .cart-content .page-content.page-cms ul, #blockcart-modal .cart-content p, .page-content.page-cms #blockcart-modal .cart-content ul {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: justify;
    -ms-flex-pack: justify;
    justify-content: space-between;
    padding: 0 .5rem;
    color: var(--text-gold);
}

.close {
  color: var(--text-gold) !important;
  opacity: 1;
}

.close:hover {
  color: var(--accent-hover) !important;
}

/* ===== Cart ===== */
.cart-summary-line .label {
  color: var(--text-beige) !important;
}

.cart-summary-line .value {
  color: var(--text-gold) !important;
}

.product-line-grid-right .cart-line-product-actions,
.product-line-grid-right .product-price {
  color: var(--text-gold);
}

/* ===== Checkbox ===== */
.custom-checkbox input[type=checkbox] + span {
  border: 2px solid var(--border-gold);
  background: var(---bg-dark);
  border-radius: 3px;
}

.custom-checkbox input[type=checkbox]:checked + span {
  background: var(--accent-primary);
  border-color: var(--accent-primary);
}

/* .custom-checkbox input[type=checkbox]:checked + span::after {
  content: "✔";
  color: var(--text-light);
} */

/* ===== Social Media ===== */
.block-social ul li {
  background: var(--accent-primary);
  border-radius: 4px;
  transition: all 0.3s ease;
}

.block-social ul li:hover {
  background: var(--accent-hover);
  transform: translateY(-3px);
}

/* ===== Misc ===== */
.text-muted {
  color: var(--text-disabled) !important;
}

.d-inline {
  display: none !important;
}

#header .header-nav .material-icons {
  line-height: normal;
}

.definition-list dl dd:nth-of-type(even),
.definition-list dl dt:nth-of-type(even) {
  background: var(---bg-dark);
}

/* ===== Menu Superfish ===== */
.sf-menu {
  background: transparent;
  border-bottom: 3px solid var(--accent-primary);
}

.sf-menu a {
  color: var(--text-gold) !important;
}

.sf-menu a:hover,
.sf-menu a:focus {
  background: rgba(163, 104, 58, 0.15);
  color: var(--accent-hover) !important;
}

.sf-menu li li {
  background: var(---bg-dark);
}

/* ===== Mobile ===== */
@media (max-width: 767px) {
  .cat-title {
    font-family: "Lato", sans-serif;
    color: var(--text-gold);
    background: var(--bg-dark);
    border-bottom: 2px solid var(--accent-primary);
  }
  
  #header .top-logo img {
    width: 75px;
    max-height: 75px;
  }
  
  #header .logo {
    width: 250px;
  }
  
  .block-categories {
    background: transparent !important;
  }
}

.block-category .block-category-inner #category-description .page-content.page-cms ul, .block-category .block-category-inner #category-description p, .page-content.page-cms .block-category .block-category-inner #category-description ul {
    font-weight: 400;
    margin-bottom: 0;
    color: var(--text-gold);
    word-break: break-word;
}

/* ===== Etniczne symbole & Wrapper ===== */
#wrapper {
  position: relative;
  z-index: 1;
  min-height: 100vh;
  background: rgba(42, 29, 25, 0.5);
}

#wrapper::before {
  content: "";
  position: fixed;
  left: 0;
  top: 0;
  width: 200px;
  height: 100%;
  background-image: url('ethnic-symbols-left.svg');
  background-repeat: repeat-y;
  background-position: left center;
  background-size: 200px auto;
  pointer-events: none;
  z-index: 1;
  opacity: 1;
}

#wrapper::after {
  content: "";
  position: fixed;
  right: 0;
  top: 0;
  width: 200px;
  height: 100%;
  background-image: url('ethnic-symbols-right.svg');
  background-repeat: repeat-y;
  background-position: right center;
  background-size: 200px auto;
  pointer-events: none;
  z-index: 1;
  opacity: 1;
}

@media (max-width: 991px) {
  #wrapper::before,
  #wrapper::after {
    display: none;
  }
}

/* ===== Content Wrapper ===== */
#content,
#main,
.container {
  position: relative;
  z-index: 10;
}

.product-comment-list-item {
    padding: 26px 0;
    margin: 0 0 20px;
    background-color: var(--bg-medium);
    text-align: left;
}
#product-comments-list-header .comments-nb {
    padding-left: 0;
    padding-top: 3px;
    color: var(--text-muted);
}
.btn-comment:hover {
    background-color: var(--bg-darkest);
}
.btn-comment {
    background-color: var(--bg-dark);
}

.btn-comment, .btn-comment-inverse {
    height: 36px;
    border-radius: 2px;
    background-color: var(--bg-dark);
    color: var(--text-light);
    font-size: 14px;
    box-shadow: 2px 2px 4px 0 rgba(0, 0, 0, .2);
    padding: 8px;
}
#blockcart-modal .cart-content .page-content.page-cms ul.product-total, #blockcart-modal .cart-content p.product-total, .page-content.page-cms #blockcart-modal .cart-content ul.product-total
Zgodność ze specyfikacją: (1,4,1)
 {
    padding: .5rem;
    background-color: var(--bg-darkest);
}

.contact-rich .block .data {
    width: auto;
    overflow: hidden;
    font-size: .875rem;
    color: var(--text-light);
}

.contact-form {
    width: 100%;
    padding: 1rem;
    color: #7a7a7a;
    background: var(--bg-darkest);
}

@media (max-width: 767px) {
    /* 1. Musimy zmusić kontener-rodzica do bycia elastycznym */
    .products.row {
        display: flex !important;
        flex-wrap: wrap !important;
        margin-left: -5px !important;
        margin-right: -5px !important;
    }

    /* 2. CELUJEMY W TEN DIV Z PLIKU TPL: .js-product.product */
    /* To on jest "wąskim gardłem" */
    #content .js-product.product,
    #products .js-product.product,
    .featured-products .js-product.product {
        width: 50% !important;
        max-width: 50% !important;
        flex: 0 0 50% !important;
        padding: 5px !important; /* Odstęp między produktami */
    }

    /* 3. Upewniamy się, że article zajmuje 100% swojego nowego (50%) rodzica */
    article.product-miniature.js-product-miniature {
        width: 100% !important;
        margin: 0 !important;
    }

    /* 4. Wizualne poprawki dla małych ekranów */
    .product-description {
        min-height: 100px !important; /* wyrównanie wysokości */
    }
    
    .product-title a {
        font-size: 13px !important;
    }
}

footer.page-footer {
    /* background: none; */
    display: none;
}

.sf-menu > li {
    float: left;
    position: relative;
    border-right: none !important;
}


#blockcart-modal .cart-content .page-content.page-cms ul.product-total, #blockcart-modal .cart-content p.product-total, .page-content.page-cms #blockcart-modal .cart-content ul.product-total {
    padding: .5rem;
    background-color: #3b2a24;
}

.bank-box {
    float: left;
    width: 135px;
    height: 71px;
    margin-left: 4px;
    margin-top: 5px;
    padding: 0 0;
    text-align: center;
    border: 1px solid #eee;
    cursor: pointer;
    cursor: hand;
    background: #C9B39A;
}

/* ===== Menu Superfish - Rozwijane podmenu ===== */
.sf-menu {
  background: transparent;
  border-bottom: 3px solid var(--accent-primary);
  position: relative;
}

.sf-menu > li {
  float: left;
  position: relative;
  border-right: 1px solid var(--background-dark);
}

.sf-menu li li {
  background: rgba(42, 29, 25, 0.98);
}

/* Podmenu (rozwijane listy) */
.sf-menu ul {
  background: rgba(42, 29, 25, 0.98) !important;
  border: 1px solid rgba(214, 185, 140, 0.3);
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.3);
}

.sf-menu ul li {
  background: rgba(42, 29, 25, 0.98);
  border-bottom: 1px solid rgba(214, 185, 140, 0.1);
}

.sf-menu ul li a {
  color: var(--text-beige) !important;
  padding: 0.75rem 1.25rem;
  white-space: nowrap;
  text-shadow: none;
}

/* Podmenu hover - ciemnobrązowe tło */
.sf-menu ul li:hover,
.sf-menu ul li.sfHover,
.sf-menu ul li a:focus,
.sf-menu ul li a:hover,
.sf-menu ul li a:active {
  background: rgba(163, 104, 58, 0.95) !important;
  outline: 0;
}

.sf-menu ul li a:hover {
  color: var(--text-light) !important;
}

#products .all-product-link, .featured-products .all-product-link, .product-accessories .all-product-link {
    margin-top: 1.5rem;
    margin-bottom: 1.5rem;
    clear: both;
    font-weight: 500;
    color: #7a7a7a;
    text-transform: lowercase;
}

.product-features>dl.data-sheet dd.value, .product-features>dl.data-sheet dt.name {
    -webkit-box-flex: 1;
    -ms-flex: 1 0 40%;
    flex: 1 0 40%;
    min-height: 2.5rem;
    padding: .625rem;
    margin-right: .625rem;
    margin-bottom: .5rem;
    font-weight: 500;
    text-transform: capitalize;
    word-break: normal;
    background: #6B4B3E;
    text-transform: lowercase;
}

.sf-menu a, .sf-menu a:visited {
    color: rgba(0, 0, 0, .65);
    white-space: nowrap;
    text-shadow: none;
}

/* Kontener główny modułu - przezroczysty */
#custom-text {
    padding: 3rem 1rem;
    background: transparent !important;
    border: none !important;
    box-shadow: none !important;
}

/* Rząd ikon - układ poziomy */
.orientica-info-row {
    display: flex;
    justify-content: center;
    align-items: flex-start;
    max-width: 1100px;
    margin: 0 auto;
    gap: 20px;
}

/* Pojedynczy blok informacyjny */
.info-block {
    flex: 1;
    display: flex;
    flex-direction: column;
    align-items: center; /* Centrowanie wszystkich elementów w kolumnie */
    text-align: center;
}

/* Centrowanie samej ikony */
.icon-container {
    display: flex;
    justify-content: center;
    align-items: center;
    width: 100%;
    margin-bottom: 15px;
}

/* Styl ikony Material Icons */
.info-block .material-icons {
    font-size: 44px;
    color: var(--text-gold) !important; /* Twoje złoto #D6B98C */
    height: auto;
    width: auto;
}

/* Nagłówek - Libre Baskerville */
.info-block h3 {
    font-family: "Libre Baskerville", serif !important;
    color: var(--text-gold) !important;
    font-size: 1.2rem !important;
    margin: 0 0 8px 0 !important;
    text-transform: lowercase; /* Styl z Twojego screena */
}

/* Tekst opisu - Beżowy */
.info-block p {
    font-family: "Lato", sans-serif;
    color: var(--text-beige) !important; /* Twój beż #C9B39A */
    font-size: 0.95rem;
    margin: 0;
    line-height: 1.4;
}

/* Poprawka dla telefonów */
@media (max-width: 767px) {
    .orientica-info-row {
        flex-direction: column;
        gap: 40px;
    }
}
.pagination .page-list {
    padding: .375rem;
    margin-bottom: 0;
    background: transparent !important;
}

#manufacturer #main ul .brand {
    position: relative;
    width: calc(20% - 10px);
    min-width: 210px;
    padding: 10px;
    margin: 5px;
    text-align: center;
    background: transparent !important;
    -webkit-transition: .4s ease-out;
    transition: .4s ease-out;
}

.page-customer-account #content {
    padding: 1rem;
    background: transparent !important;
    font-size: .875rem;
    color: #7a7a7a;
}

.brands-sort .select-title, .products-sort-order .select-title, .suppliers-sort .select-title {
    display: inline-block;
    width: 100%;
    padding: .625rem;
    color: var(--text-gold);
    cursor: pointer;
    background: var(--bg-dark);
    border: 1px solid rgba(0, 0, 0, .25);
}
.brands-sort .select-list, .products-sort-order .select-list, .suppliers-sort .select-list {
    display: block;
    padding: .625rem 1.25rem;
    color: #232323;
    background: var(--bg-darkest);
}
.brands-sort .dropdown-menu, .products-sort-order .dropdown-menu, .suppliers-sort .dropdown-menu {
    left: auto;
    width: 16.88rem;
    margin: 0;
    background: var(--bg-darkest);
    border: 0;
    border-radius: 0;
    -webkit-box-shadow: 2px 2px 4px 0 rgba(0, 0, 0, .1);
    box-shadow: 2px 2px 4px 0 rgba(0, 0, 0, .1);
}
.alert-info {
    background-color: transparent !important;
    border-color: transparent !important;
    color: var(--text-gold);
}

.active_filters {
    padding: .625rem 1.875rem 0;
    margin-bottom: 1.25rem;
    background: var(--accent-green) !important;
    color: var(--text-gold) !important;
}
.active_filters .filter-block {
    display: inline-block;
    padding: .625rem;
    margin-right: .625rem;
    margin-bottom: .625rem;
    font-size: .8125rem;
    color: var(--text-beige);
    background: var(--bg-card);
}