/* 
Theme Name: Hello Elementor Child
Theme URI: https://github.com/elementor/hello-theme-child/
Description: Hello Elementor Child is a child theme of Hello Elementor, created by Elementor team
Author: Elementor Team
Author URI: https://elementor.com/
Template: hello-elementor
Version: 2.0.0
Text Domain: hello-elementor-child
License: GNU General Public License v3 or later.
License URI: https://www.gnu.org/licenses/gpl-3.0.html
Tags: flexible-header, custom-colors, custom-menu, custom-logo, editor-style, featured-images, rtl-language-support, threaded-comments, translation-ready
*/

/* Add your custom styles here */



html, body {
  overflow-x: hidden !important;
}

.year100::before {
  content: "";
  position: absolute;
  left: -120px;
  top: -25px;
  width: 120px;
  height: 70px;
  background-image: url("/wp-content/uploads/german.png");
  background-size: contain;
  background-repeat: no-repeat;
  background-position: left top;
  pointer-events: none;
  transform: rotate(-75deg);
}

.yearmob100::before {
  content: "";
  position: absolute;
  right: -50px;
  top: -50px;
  width: 90px;
  height: 150px;
  background-image: url("/wp-content/uploads/german.png");
  background-size: contain;
  background-repeat: no-repeat;
  background-position: left top;
  pointer-events: none;
  transform: rotate(75deg);
}

.mainyears video.elementor-video {
  background-color: #fff !important;
}

.productsection {
  display: -webkit-box;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 2;
  overflow: hidden;
}

.productname h4 {
  display: -webkit-box;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 3;
  overflow: hidden;
}

.productcarousel .elementor-swiper-button {
  background: #009fdf;
  padding: 15px;
  border-radius: 50px;
}

.product-information-list {
  width: 100%;
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 20px;
}

@media (min-width:300px) and (max-width:991px) {
  .product-information-list {
    width: 100%;
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
  }
}

@media (min-width:300px) and (max-width:767px) {
  .product-information-list {
    width: 100%;
    display: grid;
    grid-template-columns: repeat(1, 1fr);
    gap: 20px;
  }
}

.product-information-list .product-information-item {
  width: 100%;
  float: left;
  margin: 0;
  padding: 20px;
  border: 1px solid #dfdfdf;
  border-top: 3px solid #dfdfdf;
  border-radius: 5px;
  background: #fff;
}

.product-information-list .product-information-item:hover {
  border: 1px solid #009fdf;
  border-top: 3px solid #009fdf;
}

.product-information-list .product-information-item img {
  width: 50px;
  margin: 0 0 30px;
  padding: 12px;
  border-radius: 50px;
  background: #009fdf;
}

.product-information-list .product-information-item h4 {
  width: 100%;
  margin: 0 0 10px;
  font-size: 20px;
  color: #000;
}

.product-information-list .product-information-item .details {
  width: 100%;
  margin: 0;
  font-size: 16px;
  color: #696969;
}

.online-store-list {
  width: 100%;
  display: flex;
  gap: 6px;
}

@media (min-width:300px) and (max-width:767px) {
  .online-store-list {
    width: 100%;
    display: grid;
    gap: 10px;
    grid-template-columns: repeat(3, 1fr);
  }
}

@media (min-width:300px) and (max-width:500px) {
  .online-store-list {
    width: 100%;
    display: grid;
    gap: 10px;
    grid-template-columns: repeat(1, 1fr);
  }
}

.online-store-list .online-store-item {
  width: auto;
  display: inline-block;
  margin: 0;
}

.online-store-list .online-store-item a {
  width: 100%;
  display: flex;
  gap: 10px;
  font-family: "myriad-pro-semi-condensed", Sans-serif;
  font-style: oblique;
  border-radius: 3px;
  background: #009fdf;
  color: #fff;
  font-size: 16px;
  font-weight: 800;
  text-transform: uppercase;
  padding: 10px 12px;
  text-align: center;
  align-items: center;
  justify-content: space-between;
  /* Border animation */
  position: relative;
  border: 2px solid transparent;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  overflow: hidden;
  /* Auto-animation - always running */
  animation: pulse-glow 2.5s ease-in-out infinite;
}

.online-store-list .online-store-item a::before {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(255,255,255,0.3), transparent);
  transition: left 0.6s;
  /* Auto shimmer every 3 seconds */
  animation: shimmer-sweep 3s ease-in-out infinite;
}

.online-store-list .online-store-item a:hover {
  transform: translateY(-2px);
  box-shadow: 0 12px 35px rgba(0, 159, 223, 0.5);
  animation: pulse-glow 1s ease-in-out infinite;
}

.online-store-list .online-store-item a:hover::before {
  left: 100%;
  animation-duration: 0.8s;
}

/* Continuous pulse glow - screams "click me!" */
@keyframes pulse-glow {
  0%, 100% { 
    box-shadow: 0 0 0 0 rgba(255, 255, 255, 0.4),
                0 4px 15px rgba(0, 159, 223, 0.2);
  }
  50% { 
    box-shadow: 0 0 0 12px rgba(255, 255, 255, 0),
                0 8px 25px rgba(0, 159, 223, 0.4);
  }
}

/* Auto shimmer sweep every 3 seconds */
@keyframes shimmer-sweep {
  0% { left: -100%; }
  20% { left: 100%; }
  100% { left: 100%; }
}

.online-store-list .online-store-item a img {
  height: 25px;
  vertical-align: middle;
}

.online-store-list .online-store-item a span


.online-store-list .online-store-item a span {
  width: 15px;
  margin: -4px 0 0 0;
}

.online-store-list .online-store-item a span img.btnlink{height:16px; margin:-3px 0 0 0;}

/* === Main Wrapper === */
.custom-gallery-slider-wrapper {
  width: 100%;
  display: inline-block;
  margin: 0 auto;
}

/* Main slider content */
.custom-gallery-slider-wrapper video,
.custom-gallery-slider-wrapper img {
  border-radius: 10px;
  overflow: hidden;
}

/* Hide default Slick arrows pseudo-elements */
.custom-gallery-slider-wrapper .slick-arrow:before,
.custom-gallery-slider-wrapper .slick-arrow:after {
  display: none !important;
}

/* Custom arrows styling */
.custom-gallery-slider-wrapper .slick-next,
.custom-gallery-slider-wrapper .slick-prev {
  padding: 10px;
  display: inline-block;
  z-index: 999;
  height: auto;
  border: none;
  border-radius: 20px;
}

/* Next/Prev arrows position */
.custom-gallery-slider-wrapper .slick-next {
  right: 10px;
}

.custom-gallery-slider-wrapper .slick-prev {
  left: 10px;
}

/* === Layout for vertical thumbnails === */
.custom-gallery-slider-layout {
  display: flex;
  align-items: flex-start;
  gap: 15px;
}

/* Thumbnail navigation (vertical) */
.custom-gallery-slider-nav {
  width: 60px;
  margin: 0;
}

.custom-gallery-slider-nav .slick-track {
  display: flex !important;
  flex-direction: column;
}

.custom-gallery-slider-nav .slick-slide {
  width: 100% !important;
  padding: 5px 0;
}

.custom-gallery-slider-nav img {
  width: 100%;
  height: auto;
  border-radius: 6px;
  cursor: pointer;
  opacity: 0.7;
  transition: all 0.3s ease;
}

.custom-gallery-slider-nav .slick-current img {
  border: 2px solid #0073aa;
  opacity: 1;
}

/* Main slider width */
.custom-gallery-slider-for {
  width: calc(100% - 60px);
}

/* Slide caption */
.slide-caption {
  text-align: center;
  margin-top: 8px;
  font-size: 14px;
  color: #444;
}

/* === Video Thumbnail Play Overlay === */
.video-thumb {
  position: relative;
  display: inline-block;
  width: 100%;
  border-radius: 6px;
  overflow: hidden;
}

.video-thumb img {
  width: 100%;
  height: auto;
  display: block;
}

.video-thumb .play-icon {
  width: 30px;
  height: 30px;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  color: white;
  background: #0073aa;
  border-radius: 50%;
  pointer-events: none;
  font-size: 16px;
  padding: 4px 10px;
}

.video-thumb.no-thumb {
  background: #000;
  width: 100%;
  height: 100%;
  min-height: 80px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.custom-gallery-slider-nav .slick-current .video-thumb img {
  border: 2px solid #0073aa;
}

/* === Responsive Adjustments === */
@media (max-width:1024px) {
  .custom-gallery-slider-layout {
    flex-direction: column;
    align-items: center;
  }

  .custom-gallery-slider-for {
    width: 100% !important;
    order: 1;
  }

  .custom-gallery-slider-nav {
    width: 100% !important;
    margin-top: 10px;
    order: 2;
  }

  .custom-gallery-slider-nav .slick-track {
    flex-direction: row !important;
  }

  .custom-gallery-slider-nav .slick-slide {
    width: auto !important;
    padding: 0 5px;
  }
}

@media (max-width:480px) {
  .custom-gallery-slider-nav .slick-slide {
    padding: 0 3px;
  }
}

.brand-information-table {
  width: 100%;
  max-width: 700px;
  margin: 24px 0;
  border-collapse: collapse;
  background: #fff;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.03);
}

.brand-information-table th,
.brand-information-table td {
  padding: 12px 16px;
  border: 1px solid #eaeaea;
  text-align: left;
}

.brand-information-table th {
  background: #f5f5f5;
  font-weight: 600;
}

.brand-information-table tr:nth-child(even) {
  background: #fafafa;
}

/* STACKED RESPONSIVE FOR SMALL SCREENS */
@media (max-width:600px) {
  .brand-information-table,
  .brand-information-table thead,
  .brand-information-table tbody,
  .brand-information-table th,
  .brand-information-table td,
  .brand-information-table tr {
    display: block;
    width: 100%;
  }

  .brand-information-table thead tr {
    /* hide table header row */
    position: absolute;
    top: -9999px;
    left: -9999px;
  }

  .brand-information-table tr {
    margin-bottom: 1.5em;
    border: 1px solid #ccc;
    padding: 0;
    box-shadow: 0 2px 6px rgba(0, 0, 0, 0.05);
    background: #fff;
    border-radius: 6px;
  }

  .brand-information-table td {
    text-align: center;
    border: none;
    border-bottom: 1px solid #eee;
    position: relative;
  }

  .brand-information-table td:last-child {
    border-bottom: 0;
  }

  /* Add label before each td using data-label attr */
  .brand-information-table td:before {
    content: attr(data-label);
    position: absolute;
    left: 16px;
    top: 12px;
    font-weight: 600;
    text-transform: uppercase;
    font-size: 12px;
    color: #555;
    width: 45%;
    white-space: nowrap;
    text-align: left;
  }
}

#sb_instagram #sbi_images {
  padding: 0;
}


.imageSlidebox .elementor-swiper-button{background:#00558c; padding:10px; border-radius:80px;}