/* ====== LOGÓ + KONTAKT BLOKK ====== */

.hv-contact-bar {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 32px;
  max-width: 900px;
  /* margin: 2.5rem auto; */
  /* padding: 1rem 0; */
  text-align: center;
}

/* LOGÓ + FELIRAT */
.hv-logo {
  display: flex;
  flex-direction: column;
  align-items: center;
}

.hv-logo img {
  display: block;
  width: 130px;
  height: auto;
}

.hv-title {
  margin-top: 8px;
  font-size: 18px;
  font-weight: 600;
  color: #0f172a;
}

/* INFÓ BLOKK */
.hv-info {
  text-align: left;
}

.hv-info p {
  margin: 3px 0;
  font-size: 15.5px;
  color: #1f2937;
}

.hv-info a {
  color: #10b981;
  text-decoration: none;
  font-weight: 600;
}

.hv-info a:hover {
  text-decoration: underline;
}

/* ===== DESKTOP (≥769px) =====
   Csak a logó + cím maradjon, az infó ne látszódjon
=================================================== */
@media (min-width: 769px) {
  .hv-info {
    display: none;
  }

  .hv-contact-bar {
    justify-content: left;
  }
}

/* ===== MOBIL (≤768px) =====
   Logó balra, infó jobbra egymás mellett
=================================================== */
@media (max-width: 768px) {
  .hv-contact-bar {
    flex-direction: row;
    align-items: center;
    justify-content: center;
    gap: 20px;
    margin-top: 15px;
  }

  .hv-logo {
    flex-direction: column;
    align-items: center;
    text-align: center;
  }

  .hv-title {
    font-size: 16px;
    margin-top: 6px;
  }

  .hv-info {
    display: block;
    text-align: left;
  }

  .hv-info p {
    font-size: 14.5px;
    margin: 2px 0;
  }

  .hv-info a {
    display: inline-block;
    font-size: 14.5px;
  }
}


/**** ========== SPEC TABLE SKIN (Desktop + Mobile + Dark) ========== ****/
/* Alap – erős szelektor, hogy verje a Bootstrap .table szabályokat is */
.productdetails-view .product-description table.spec-table{
  --spx-bg:#fff; --spx-border:#e5e7eb; --spx-text:#111827; --spx-muted:#6b7280;
  --spx-accent:#f8fafc; --spx-radius:16px; --spx-shadow:0 10px 25px rgba(0,0,0,.06);

  width:100%;
  max-width:820px;
  margin:2rem 0;
  border:none;
  border-collapse:separate;
  border-spacing:0;
  background:var(--spx-bg);
  border-radius:var(--spx-radius);
  overflow:hidden;
  box-shadow:var(--spx-shadow);
  table-layout:fixed;
  font-size:16px;
  line-height:1.55;
}

/* Sorok */
.productdetails-view .product-description table.spec-table > tbody > tr{
  transition:background .18s ease;
}
.productdetails-view .product-description table.spec-table > tbody > tr:nth-child(odd){
  background:var(--spx-accent);
}
.productdetails-view .product-description table.spec-table > tbody > tr:hover{
  background:#eef2ff;
}

/* Cellák */
.productdetails-view .product-description table.spec-table > tbody > tr > td{
  padding:14px 18px;
  color:var(--spx-text);
  vertical-align:top;
  border-bottom:1px solid var(--spx-border);
  word-break:break-word;
}
.productdetails-view .product-description table.spec-table > tbody > tr:last-child > td{
  border-bottom:0;
}

/* Címke / érték */
.productdetails-view .product-description table.spec-table > tbody > tr > td:first-child{
  width:45%;
  font-weight:600;
  color:#0f172a;
}
.productdetails-view .product-description table.spec-table > tbody > tr > td:last-child{
  color:#1f2937;
}

/* Sötét mód */
@media (prefers-color-scheme: dark){
  .productdetails-view .product-description table.spec-table{
    --spx-bg:#0b1020; --spx-border:#1f2a44; --spx-text:#d1d5db; --spx-muted:#94a3b8; --spx-accent:#0e1830;
    box-shadow:none;
  }
  .productdetails-view .product-description table.spec-table > tbody > tr:hover{ background:#1e293b; }
  .productdetails-view .product-description table.spec-table > tbody > tr > td:first-child{ color:#e5e7eb; }
  .productdetails-view .product-description table.spec-table > tbody > tr:nth-child(odd){ background:#111827; }
}

/* Mobil (≤768px): kártyás, címke felül / érték alatta */
@media (max-width:768px){
  .productdetails-view .product-description table.spec-table{
    border:0; box-shadow:none; background:transparent; border-radius:0; margin:1rem 0;
  }
  .productdetails-view .product-description table.spec-table,
  .productdetails-view .product-description table.spec-table > tbody,
  .productdetails-view .product-description table.spec-table > tbody > tr{
    display:block; width:100%;
  }
  .productdetails-view .product-description table.spec-table > tbody > tr{
    background:var(--spx-bg);
    border:1px solid var(--spx-border);
    border-radius:12px;
    margin:12px 0;
    overflow:hidden;
    box-shadow:0 3px 10px rgba(0,0,0,.05);
  }
  .productdetails-view .product-description table.spec-table > tbody > tr > td{
    display:block; border:0; padding:12px 14px;
  }
  .productdetails-view .product-description table.spec-table > tbody > tr > td:first-child{
    width:100%;
    font-size:13px;
    letter-spacing:.02em;
    color:var(--spx-muted);
    font-weight:600;
    padding-bottom:6px;
  }
  .productdetails-view .product-description table.spec-table > tbody > tr > td:last-child{
    font-size:16px; color:var(--spx-text); font-weight:600; padding-top:0;
  }
}

/**** ========== LEÍRÁS BLOKK FINOMÍTÁS (opcionális) ========== ****/
.productdetails-view .product-description{
  max-width:850px;
  margin:0 auto;
  padding:0 10px;
  font-size:16px;
}

/* "Tulajdonságok:" cím */
.productdetails-view .product-description p:first-child{
  font-weight:700;
  font-size:1.1rem;
  color:#111827;
  margin-bottom:.8rem;
  border-left:4px solid #10b981;
  padding-left:12px;
  text-transform:uppercase;
  letter-spacing:.02em;
}

/* Pipás lista */
.productdetails-view .product-description p{ margin:0; }
.productdetails-view .product-description p + p{ margin-top:.45rem; }
.productdetails-view .product-description p:not(:first-child){
  position:relative; padding-left:28px; color:#1f2937; font-size:15.5px;
}
.productdetails-view .product-description p:not(:first-child)::before{
  content:""; position:absolute; left:0; top:.35rem; width:16px; height:16px; border-radius:4px;
  /* box-shadow:inset 0 0 0 2px #10b981; */
  background:radial-gradient(circle at 50% 50%, #10b981 0 4px, transparent 5px);
  opacity:.9;
}



/**************** Table CSS END **********************************************************************/

/* Pagination */

.browse-view .vm-pagination ul li>a, .browse-view .vm-pagination ul li>span

{
    width: auto !important;
    min-width: 30px !important;
    padding: 0 10px !important;
    border-radius: 0px !important;
}

/* ===== SVG Social Icons ===== */

/* Általános konténer: Bal ikonok, jobb szöveg */
.top-address-2 {
  display: flex;
  align-items: center;
  gap: 20px; /* Ikonok és szöveg közti távolság */
  float: right;
  text-align: right;
  margin-top: 20px;
}

/* Social ikonok oszlopban (egymás alatt) */
.social-icons-only {
  display: flex;
  flex-direction: column;
  gap: 15px; /* Ikonok közötti távolság */
  align-items: center;
}

/* Középre igazított social ikonok (egymás mellett) */
.social-row {
  text-align: center;
  padding: 5px 0;
}

.social-icons-centered {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 10px; /* Ikonok közti távolság */
}

/* Linkek alap stílusa */
.social-link, 
.social-icons-only a {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  font-size: 14px;
  font-weight: bold;
  color: #444;
  text-decoration: none;
  transition: color 0.3s, transform 0.3s, fill 0.3s;
}

/* SVG ikonok alap stílusa */
.social-link svg,
.social-icons-only svg {
  width: 24px;
  height: 24px;
  fill: currentColor; /* Szülő szín öröklése */
  transition: fill 0.3s, transform 0.3s;
}

/* Hover effektek (szín + nagyítás) */
.social-link:hover,
.social-icons-only a:hover {
  transform: scale(1.2);
}

/* Facebook hover szín */
.social-link[href*="facebook"]:hover,
.social-icons-only a[href*="facebook"]:hover {
  color: #1877f2; /* Facebook kék */
}

/* Instagram hover szín */
.social-link[href*="instagram"]:hover,
.social-icons-only a[href*="instagram"]:hover {
  color: #e4405f; /* Instagram pirosas */
}

/* Jobb oldali szövegrész (címek) */
.contact-info, 
.top-address-1 {
  font-size: 14px;
  color: #333;
  line-height: 1.5;
}


/** **/

@media (max-width: 991.98px){
.t4-navbar .navbar.navbar-expand-lg {
    float: none;
    display: none;
  }
 
}

  .t4-navbar .navbar {
    float: left;
    min-height: 52px;
    width: 110%;
  }

.module-title  {
    padding: 5px 10px;
    background-color: #323a45;
    color: #fff;
}

.com-content-article .page-header h2 {
    padding: 5px 30px;
    background-color: #323a45;
  color: #fff; }

.category-view .row .category .spacer {
    background-color: #fff;
    padding-top: 30px;
	min-height: 310px;
}

 .browse-view .row .product .spacer {
    padding: 0px 10px !important;
    background-color: #fff;
}
.com_virtuemart .category-view .spacer a {
  text-align: center;
}


.browse-view .vm-product-media-container {
    min-height: 250px;
}

.vm-product-descr-container-1>h2, .vm-product-descr-container-0>h2 {
    min-height: 45px;
}

.vm-product-media-container {
  display: flex;
  align-items: center;
  justify-content: center;
}

.productdetails .vm-product-media-container {
    display: block;
}

@media (max-width: 767px) {
  .vm-product-media-container {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
  }

  .vm-product-media-container img {
    max-width: 100%;
    height: auto;
  }
}

.breadcrumb {
    padding: 10px 0;
}

.sidebar-l {
    padding-right: 1rem;
}

.category.floatleft.width33 {
    background-color: #fff;
  	border: 1px solid #ddd;
}

@media (min-width: 768px){
.vm-col-3, .width33.width33 {
    -webkit-box-flex: 0;
    -ms-flex: 0 0 33.3333333333%;
    flex: 0 0 32%;
    max-width: 32%;
    margin: 5px;
}
}

div[class*=-view] .vm-col.product {
    min-width: 285px;
}

div[class*=-view] div.row .product{
  justify-content: center;
}

.com_virtuemart .category-view .spacer a {
    font-size: 17px;
    color: #212121;
    font-weight: 400;
}

/** Ask a Question **/
.ask-a-question-view .form-field textarea.field,
.ask-a-question-view .form-field textarea.field:hover,
.ask-a-question-view input.counter, 
.ask-a-question-view input#name, 
.ask-a-question-view input#email,
.general-bg, input.custom-attribute, 
input.quantity-input, 
.manufacturer-product-link a, 
a.ask-a-question, 
input.vm-default, 
a.product-details, 
a.details, 
div.details, 
button.default {
	background: unset;
}

button#close-iframe {
    display: none;
}

.com_virtuemart #askform input[type=text] {
    height: 30px;
    border: 1px solid rgba(0, 0, 0, 0.1);
    -webkit-box-shadow: none;
    box-shadow: none;
    padding: 0;
}

label {
	min-width: 60px;
}

.ask-a-question-view, .manufacturer-details-view .spacer {
    padding: 0;
}

@media only screen and (max-width: 767px) {
    #fancybox-wrap {
        left: 0 !important;
    }
}

/* Slider */

.slider-content-inner {
    background: #00000085;
    padding: 2em;
}

.ask-a-question-view input.counter, 
.ask-a-question-view input#name, 
.ask-a-question-view input#email {
	margin: 0;
    padding: 20px !important;
}

/* Border */

.border {
    border: none !important;
}

/* RSForm */

.form-control, .inputbox {
    max-width: 100%;
}

@media (min-width: 576px){
.col-sm-3 {
    -webkit-box-flex: 0;
    -ms-flex: 0 0 25%;
    flex: 0 0 25%;
    max-width: none;
  }}

@media (min-width: 768px){
.form-horizontal .control-label {
    text-align: left;
  }}

.acm-slideshow.acm-owl {
    display: none;
}

.item-380 .acm-slideshow.acm-owl {
  display: block;
}

/* Collapsible on Virtuemart Product Page */

.collapsible {
  cursor: pointer;
  border: none;
  text-align: left;
  outline: none;
  font-size: 15px;
  background-color: #f1f1f1;
  padding: 10px 15px;
  width: 100%;
  margin-bottom: 20px;
}

.content {
  padding: 0 15px;
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.2s ease-out;
  background-color: #ffffff;
}

button.collapsible:focus {
color: #000;
}

/* Virtuemart Category Dropdown fix in Category edit mode */

.chosen-container-single .chosen-single {
width: 200px;
}

/* Top Mobile Address module */

.address-table {
width: 100%;
text-transform: capitalize;
}

.address-table td {
width: 49.7299%;
}
.border-right-cell {
border-right: 1px solid #9E9E9E;
padding-right: 10px;
text-align: right;
}
.padding-left-cell {
padding-left: 10px;
text-align: left;
}

/* By default, show all custom divs */
.t4-col.footer-logo .custom {
display: block;
}

/* Hide the second custom div on screens larger than 768px */
@media (min-width: 769px) {
.t4-col.footer-logo .custom:nth-child(1) {
  display: none;
}
}

.review-title {
  display: none;
}

/****************** VM Vertical middle */

/* A csempe kattintható része: oszlopos layout, fix magasság */
.category-view .row .category .spacer h2 a{
  display: flex;
  flex-direction: column;
  align-items: center;      /* vízszintes közép */
  justify-content: flex-start; /* cím felül marad */
  height: 240px;            /* csempe magasság (állítsd) */
  text-align: center;
}

/* Ne legyen extra sortörés */
.category-view .row .category .spacer h2 a br{
  display: none;
}

/* A képet a maradék hely közepére rakjuk (függetlenül a kép magasságától) */
.category-view .row .category .spacer h2 a img.browseCategoryImage{
  display: block;
  margin-top: auto !important;
  margin-bottom: auto !important;
  margin-left: 0 !important;
  margin-right: 0 !important;

  max-width: 85%;
  max-height: 160px;        /* logo max magasság (állítsd) */
  width: auto;
  height: auto;
}
