/*
    Theme Name: Longorya2026
    Text Domain: longorya2026
    Theme URI: 
    Description: longorya2026
    Version: 1.2.49
    Author: longorya
    Author URI: 
    License: GNU General Public License v2 or later
    License URI: http://www.gnu.org/licenses/gpl-2.0.html
*/

.product-specs-table {
	width: 90%;
	border-collapse: collapse;
	background-color: rgba(245, 245, 245, 0.3);
    color: #707070;
}

.product-specs-table tbody {}

.product-specs-table tr { 
	border-bottom: 1px solid #707070;
}

.product-specs-table th {
	text-align: left;
	padding: 8px 15px;
	font-weight: 600;
	width: 30%;
	vertical-align: top;
}

.product-specs-table td {
	padding: 8px 15px 8px 0; 
	vertical-align: top;
}

.product-cta-box {
	/* background-color: rgba(170, 128, 35, 0.05); */
	border: 2px solid #aa8023;
	padding: 25px;
	/* margin-top: 40px; */
	margin-bottom: 40px;
	text-align: center;
    width: 90%;
}

.product-cta-box2 {
	/* background-color: rgba(170, 128, 35, 0.05); */
	padding: 25px;
    width: 90%;
    -webkit-box-shadow: 0px 3px 6px #00000029;
    box-shadow: 0px 3px 6px #00000029;
    text-align: center;
    margin-bottom: 40px;
}

.product-cta-box p, .product-cta-box2 p {
	font-size: 1.1rem;
	margin-bottom: 20px;
	color: #707070;
}

.product-cta-box .cta-button {
	display: inline-block;
	background-color: transparent;
	color: #707070;
	padding: 12px 30px;
	text-decoration: none;
	text-transform: uppercase;
	font-weight: 600;
	letter-spacing: 1px;
	transition: background-color 0.3s ease;
    border: 2px solid #707070;
    max-width: 100%;
}

.product-cta-box2 .cta-button {
	display: inline-block;
	background-color: transparent;
	color: #aa8023;
	padding: 12px 30px;
	text-decoration: none;
	text-transform: uppercase;
	font-weight: 600;
	letter-spacing: 1px;
	transition: background-color 0.3s ease;
    border: 2px solid #aa8023;
    max-width: 100%;
}

.product-cta-box .cta-button:hover {
	background-color: transparent;
	color: #707070;
}

.w-90{
    width: 90% !important; 
} 

/* Benefits Table */
.benefits-table {
    /* margin-top: 30px; */
    background-color: transparent;
}
.benefits-table tr{
    border-bottom: none
}

.benefits-table th {
    width: 55px;
    padding: 8px 15px !important;
    vertical-align: middle !important;
}

.benefits-table td {
    padding: 8px 0 !important;
    vertical-align: middle !important;
}

.benefits-table .icon-wrapper {
    display: flex;
    justify-content: center;
}

.benefits-table .icon-wrapper img {
    max-height: 22px;
    display: block;
}

.benefits-table p {
    margin: 0;
    font-size: 0.95rem;
    line-height: 1.4;
    margin-bottom: 0 !important;
}

.download-grid {
    display: flex;
    /*flex-wrap: wrap;*/
    gap: 30px;
    padding: 10px 0;
    justify-content: flex-start;
}

.download-card {
    flex: 0 0 auto;
    margin-bottom: 20px;
    text-align: center;
}

.download-card a {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-decoration: none;
    color: inherit;
    transition: transform 0.3s ease;
    width: fit-content !important;
}

.download-card a:hover {
    transform: translateY(-5px);
}

.thumbnail-wrapper {
    width: 100px; /* Schön große Thumbnails */
    height: 120px;
    background: #f9f9f9;
    border: 1px solid #eee;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 15px;
    border-radius: 8px;
    box-shadow: 0 4px 10px rgba(0,0,0,0.05); /* Dezenter Schatten */
}

.thumbnail-wrapper img {
    width: 40px;
    height: auto; 
    opacity: 0.7;
}

.download-label {
    display: block;
    font-size: 14px;
    font-weight: 600;
    line-height: 1.3;
    color: #707070;
    max-width: 130px;
    text-transform: none;
    letter-spacing: normal;
    text-align: start;
}

/* Responsive: 2 Spalten auf Tablets */
@media (max-width: 768px) {
    .download-card {
        flex: 0 0 calc(50% - 25px);
    }
}

/* Responsive: 1 Spalte auf Handys */
@media (max-width: 320px) {
    .download-card {
        flex: 0 0 100%;
    }
}

/* Accordion Toggle Switch */
.accordion-master-toggle {
    padding: 15px 20px;
    margin-bottom: 25px;
}

.toggle-text {
    font-weight: 600;
    color: #333;
    font-size: 0.95rem;
    margin-right: 15px;
}

/* The switch - the box around the slider */
.switch {
  position: relative;
  display: inline-block;
  width: 50px;
  height: 24px;
}

/* Hide default HTML checkbox */
.switch input {
  opacity: 0;
  width: 0;
  height: 0;
}

/* The slider */
.slider {
  position: absolute;
  cursor: pointer;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-color: #333;
  -webkit-transition: .4s;
  transition: .4s;
}

.slider:before {
  position: absolute;
  content: "";
  height: 18px;
  width: 18px;
  left: 3px;
  bottom: 3px;
  background-color: white;
  -webkit-transition: .4s;
  transition: .4s;
}

input:checked + .slider {
  background-color: #aa8023;
}

input:focus + .slider {
  box-shadow: 0 0 1px #aa8023;
}

input:checked + .slider:before {
  -webkit-transform: translateX(26px);
  -ms-transform: translateX(26px);
  transform: translateX(26px);
}

/* Rounded sliders */
.slider.round {
  border-radius: 24px;
}

.slider.round:before {
  border-radius: 50%;
}

.accordion-body .product-specs-table {
    width: 100%;
}
.accordion-body .product-specs-table th{
    padding: 8px 15px 8px 19px;
}

.accordion-body h3{
    margin-bottom: .5rem;
}

.products-overview .download-section{
    width: 30%;
}
@media (max-width: 768px) {
    .products-overview .download-section{
        width: 100%;
    }
} 