/*
 Theme Name:   Woodmart Child
 Description:  Woodmart Child Theme
 Author:       XTemos
 Author URI:   http://xtemos.com
 Template:     woodmart
 Version:      1.0.0
 Text Domain:  woodmart
*/


  .kingspanwood-container {
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 100px;
            max-width: 1900px;
            margin: 0 auto;
            padding-top: 40px;
        }

        @media (max-width: 768px) {
            .kingspanwood-container {
                grid-template-columns: 1fr;
                gap: 20px;
            }
        }

        .product-images {
            display: flex;
            flex-direction: column;
            gap: 15px;
        }

        .main-image {
            width: 100%;
            aspect-ratio: 1;
            overflow: hidden;
            border-radius: 3px;
            background: #f9f9f9;
            display: flex;
            align-items: center;
            justify-content: center;
        }

        .main-image img {
            width: 100%;
            height: 100%;
            object-fit: cover;
        }

        .thumbnail-slider {
            display: grid;
            grid-template-columns: repeat(4, 1fr);
            gap: 10px;
        }

        .thumbnail {
            cursor: pointer;
            border: 2px solid #e0e0e0;
            border-radius: 6px;
            overflow: hidden;
            aspect-ratio: 1;
            transition: all 0.2s ease-in-out;
            background: #f9f9f9;
            display: flex;
            align-items: center;
            justify-content: center;
        }

        .thumbnail img {
            width: 100%;
            height: 100%;
            object-fit: cover;
        }
.main-image {
border-radius:3px !important;
}
        .thumbnail.active {
            border-color: #28a745;
            box-shadow: 0 0 0 2px rgba(40, 167, 69, 0.2);
        }

        .thumbnail:hover {
            border-color: #999;
        }

        .product-short-description {
            font-size: 13px;
            color: #666;
            line-height: 1.6;
      margin-top:15px;
        }

      

        .accordion-item {
            
            border-radius: 8px;
            margin-bottom: 15px;
            overflow: hidden;
            background: #fff !important;
        }

        .accordion-title {
			padding: 24px 16px !important;
            cursor: pointer;
            padding: 15px;
            font-size: 14px;
            font-weight: 600;
            color: #333;
            display: flex;
            justify-content: space-between;
            align-items: center;
            background: #fff;
            transition: background 0.2s ease-in-out;
            user-select: none;
        }

        .accordion-title:hover {
            background: #f1f1f1;
        }

        .accordion-title::after {
            content: ' ';
            font-size: 20px;
            color: #666;
			  width: 12px;
  height: 12px;
  background-image: url('https://7.entwurf-webseite.de/wp-content/uploads/2025/10/Icon-1.svg');
  background-repeat: no-repeat;
  background-size: contain; /* or cover */
  background-position: center;
        }

        .accordion-title.active::after {
            content: 'âˆ’';
            transform: rotate(0deg);
        }

        .accordion-content {
            display: none;
            padding: 20px 15px;
            font-size: 13px;
            color: #555;
            line-height: 1.6;
            background: #fff;
            max-height: 400px;
            overflow-y: auto;
        }

        .accordion-content.active {
            display: block;
        }

        .accordion-content ul {
            margin: 0;
            padding-left: 20px;
        }

        .accordion-content li {
            margin-bottom: 8px;
        }

        .accordion-content a {
            color: #0073aa;
            text-decoration: none;
        }

        .accordion-content a:hover {
            text-decoration: underline;
        }

        .product-info {
            display: flex;
            flex-direction: column;
           
        }

        .product-header {
            display: flex;
            flex-direction: column;
            gap: 5px;
        }

        .product-title {
            color: rgba(51, 51, 51, 1);
			font-family: Arial;
            font-weight: 400;
            font-style: Regular;
            font-size: 34px;
            line-height: 40.8px;
			    margin-bottom: 0px;
        }

        .product-rating {
            display: flex;
            align-items: center;
       
            flex-wrap: wrap;
        }
		.star-rating:before{
color:rgba(40, 167, 69, 1) !important;
}
        .product-rating .star-rating {
            display: inline-flex;
            gap: 2px;
			color:rgba(40, 167, 69, 1) !important;
        }

        .rating-text {
			font-family: 'Satoshi', Arial, Helvetica, sans-serif;
font-weight: 400;
font-style: Regular;
font-size: 18px;

line-height: 28.8px;


            color:rgba(0, 0, 0, 1);
    
        }

       

        

        .product-reviews {
            display: grid;
            grid-template-columns: repeat(3, 1fr);
            gap: 15px;
            margin-top: 15px;
        }

        @media (max-width: 992px) {
            .product-reviews {
                grid-template-columns: repeat(2, 1fr);
            }
        }
		.product-short-description.fffff{
margin-top:0px !important;
}
		.product-short-description p{
font-family: Arial;
font-weight: 400;
font-style: Regular;
font-size: 16px;
line-height: 28.8px;
			margin-bottom:0px !important;
}
        @media (max-width: 600px) {
            .product-reviews {
                grid-template-columns: 1fr;
            }
        }

        .review-card {
            border: 1px solid #ddd;
            border-radius: 8px;
            padding: 15px;
            background-color: #fafafa;
            box-shadow: 0 2px 5px rgba(0,0,0,0.05);
            transition: all 0.2s ease-in-out;
        }

        .review-card:hover {
            transform: translateY(-2px);
            box-shadow: 0 4px 10px rgba(0,0,0,0.1);
        }

        .review-card strong {
            font-size: 14px;
            color: #333;
            display: block;
        }

        .review-rating {
            margin: 8px 0;
            color: #ffc107;
            font-size: 14px;
        }

        .review-text {
            margin-top: 8px;
            font-size: 13px;
            color: #666;
            line-height: 1.5;
        }

        .review-date {
            font-size: 12px;
            color: #999;
        }

        .variation-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(140px, 1fr));
            gap: 12px;
            margin-bottom: 20px;
        }

        .variation-option {
            border: 2px solid #e0e0e0;
            border-radius: 6px;
            padding: 12px;
			padding-top:0px;
            text-align: center;
            background: #fff;
            cursor: pointer;
            transition: all 0.2s ease-in-out;
            font-size: 12px;
            font-weight: 500;
            color: #333;
            line-height: 1.4;
        }
.variation-thumb{
padding-top:12px;
}
        .variation-option:hover {
            border-color: #999;
          
        }

        .variation-option.active {
            border-color: #28a745;
           
        }
		.variation-name{
font-family: Arial;
font-weight: 700;
font-style: Bold;
font-size: 16.31px;
text-align: center;
vertical-align: middle;
text-transform: uppercase;
			color:rgba(76, 175, 80, 1) !important;

}
		
        .variation-option small {
            display: block;
            font-size: 13px;
            font-weight: 700;
            margin-top: 6px;
            color: #28a745;
        }

        .section-header {
         
          
           
			font-family: Arial;
font-weight: 400;
font-style: Regular;
font-size: 22px;
color:rgba(36, 36, 36, 1);

        }

    
		.variation-price{
font-family: Arial;
font-weight: 400;
font-style: Regular;
font-size: 13.78px;
line-height: 22.4px;
text-align: center;

}
		.option{
background-color:rgba(233, 244, 236, 1) !important;
}
			.option:hover{
background-color:rgba(233, 244, 236, 1) !important;
}
		.option.active{
background-color:white !important;
}
		.buy-button .price bdi{
color:#fff !important;
			font-family: Arial;
font-weight: 700;
font-style: Bold;
font-size: 29px;

line-height: 34.8px;

text-transform: capitalize;

}
		.content-section .prce bdi{
font-family: Arial;
font-weight: 700;
font-style: Bold;
font-size: 30px;
line-height: 48px;


}
		.container.arsn{
padding-inline:0px;
		 border-radius:	8px;
			border:15px solid rgba(233, 244, 236, 1);
/* 			background-color:rgba(255, 255, 255, 1); */
			margin-block:20px;
}
        .purchase-section {
            display: flex;
            flex-direction: column;
                   
        }

        .buy-button {
			margin-bottom:10px;
            background: #007F5C;
            color: #fff;
            border: none;
            border-radius: 8px;
			
			font-family: Arial;
font-weight: 700;
font-style: Bold;
font-size: 29px;

line-height: 34.8px;
text-align: center;
text-transform: capitalize;
            padding: 18px 24px;         
            cursor: pointer;
            transition: all 0.2s ease-in-out; 
        }

        .buy-button:hover:not(:disabled) {
            background: #218838;
            box-shadow: 0 4px 12px rgba(40, 167, 69, 0.3);
            transform: translateY(-2px);
        }

        .buy-button:disabled {
            opacity: 0.7;
            cursor: not-allowed;
        }

        .payment-methods {
            display: flex;
            gap: 8px;
            flex-wrap: wrap;
            font-size: 12px;
            color: #999;
            align-items: center;
            justify-content: center;
            margin-top: 10px;
        }

        .payment-methods span {
            display: inline-flex;
            gap: 6px;
        }

        .payment-methods img {
            height: 20px;
            width: auto;
        }

        .delivery-info {
          color:rgba(51, 51, 51, 1);
            text-align: center;
         font-family: Arial;
font-weight: 400;
font-style: Regular;
font-size: 17.86px;
margin-bottom:10px;


          
          
        }

        

        .arsn .container {
            width: 100%;
            max-width: 560px;
            background: #dfe3d8;
            border-radius: 16px;
            overflow: hidden;
            box-shadow: 0 2px 8px rgba(0,0,0,0.08);
			margin-block:10px;
        }

        .options-wrapper {
            display: grid;
            grid-template-columns: 1fr 1fr;
        }

        .option {
            display: flex;
            align-items: center;
            padding: 18px 20px;
            cursor: pointer;
            transition: background 0.2s;
            background: #dfe3d8;
            border: none;
        }

        .option.active {
            background: white;
        }

        .option:first-child.active {
            border-radius: 16px 0 0 0;
        }

        .option:last-child.active {
            border-radius: 0 16px 0 0;
        }

        .radio-container {
            position: relative;
            margin-right: 12px;
            flex-shrink: 0;
        }

        input[type="radio"] {
            appearance: none;
            width: 18px;
            height: 18px;
            border: 2px solid #5a5a5a;
            border-radius: 50%;
            cursor: pointer;
            position: relative;
            transition: all 0.2s;
        }
		.infosettting{
display:flex;
			justify-content:space-between;
			margin-bottom:15px;
}
		.infoimages img{
height: 70.8px;
    background: white;
}
        input[type="radio"]:checked {
            border-color: #00a86b;
            border-width: 2px;
        }

        input[type="radio"]:checked::after {
            content: '';
            position: absolute;
            top: 50%;
            left: 50%;
            transform: translate(-50%, -50%);
            width: 8px;
            height: 8px;
            background: #00a86b;
            border-radius: 50%;
        }

        .option-text {
            flex: 1;
            color: #1a1a1a;
            font-size: 14px;
            font-weight: 400;
            line-height: 1.4;
        }

        .content-section {
            background: white;
            padding: 28px 24px 32px 24px;
        }

        .content-section .price {
            color: #00a86b;
            font-size: 38px;
            font-weight: 700;
            margin-bottom: 28px;
            letter-spacing: -0.5px;
        }

        .features {
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 32px;
        }

        .feature {
            display: flex;
            flex-direction: column;
        }

        .feature-title {
            color: #1a1a1a;
            font-size: 14px;
            font-weight: 600;
            margin-bottom: 6px;
            display: flex;
            align-items: flex-start;
            line-height: 1.4;
        }

        .feature-title::before {
            content: 'â€¢';
            margin-right: 8px;
            font-size: 16px;
            line-height: 1.4;
        }

        .feature-description {
            color: #6b6b6b;
            font-size: 13px;
            line-height: 1.5;
            padding-left: 16px;
        }

        .bos4w-display-dropdown {
            margin-top: 15px;
        }

        .subscription-dropdown {
            width: 100%;
            padding: 10px;
            font-size: 14px;
            border: 1px solid #e0e0e0;
            border-radius: 6px;
            background: #fff;
            cursor: pointer;
        }

        .subscription-dropdown:focus {
            outline: none;
            border-color: #28a745;
            box-shadow: 0 0 0 3px rgba(40, 167, 69, 0.1);
        }

        @media (max-width: 480px) {
            .options-wrapper {
                grid-template-columns: 1fr;
            }

            .features {
                grid-template-columns: 1fr;
                gap: 24px;
            }

            .content-section .price {
                font-size: 34px;
            }
        }
		
		
		
		
		
		
		
		.variation-thumb img{
height: 63px;
}	
		
		
		
		.product-image-carousel {
    position: relative;
    overflow: hidden;
    width: 100%;
    margin: 0px !important;
  
    align-self: center;
}
		.carusal-inner{
width: 90%;
    margin-inline: auto;
    align-self: center;
    overflow: hidden;
}
.carousel-images {
  display: flex;
  transition: transform 0.5s ease-in-out;
}

.carousel-slide {
  flex: 0 0 25%; /* 3 images visible */
  box-sizing: border-box;
  padding: 5px;
}

.carousel-slide img , .carousel-slide .iframe {
  width: 100%;
  border-radius: 10px;
  display: block;
}

.carousel-prev,
.carousel-next {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  background-color:transparent;
  color:#000;
  border: none;
  font-size: 24px;
  padding: 8px 12px;
  cursor: pointer;
  border-radius: 50%;
}

.carousel-prev { left: -1px; }
.carousel-next { right: -1px; }

.carousel-prev:hover,
.carousel-next:hover {
color:#333;
	  background-color:transparent;
}

		
		.carousel-slide {
  position: relative;
  transition: opacity 0.3s ease;
}

.carousel-slide.active::after {
  content: "";
  position: absolute;
  inset: 0;
  background: rgba(255, 255, 255, 0.3); /* white overlay with opacity */
  pointer-events: none;
  border-radius: 8px; /* optional, match image corners */
}
		.accrodionstar{
padding-right:10px;
}
		
		
		.kingspanwood-accordion .accordion-item {
  border-bottom:none ;
			background-color:rgba(255, 255, 255, 0.002);
	box-shadow: 0px 8px 20px 0px rgba(0, 0, 0, 0.15);
  margin-bottom: 24px;
}

.kingspanwood-accordion .accordion-title {
  cursor: pointer;
  padding: 12px 16px;
  font-weight: bold;
  position: relative;
  display: flex;
  justify-content: space-between;
  align-items: center;
	
	border:none !important;
}




.kingspanwood-accordion .accordion-content {
  display: none;
  padding: 10px 16px 12px;
  animation: fadeIn 0.3s ease;
}

.kingspanwood-accordion .accordion-item.active .accordion-content {
  display: block;
}

@keyframes fadeIn {
  from { opacity: 0; transform: translateY(-5px); }
  to { opacity: 1; transform: translateY(0); }
}

		
		