/* start variables */
:root{
    --main-color:#2196F3;
    --main-color-alt:#1787E0;
    --main-transition:  0.3s;
    --section-padding: 15px;
    --section-background: #ececec;
  }
  
  /* ens variables */
  /* start component */
  .special-heading{
    margin: 40px auto;
    width: fit-content;
    border: 1px solid #555;
    padding: 10px;
    font-size: 30px;
    letter-spacing: 2px;
    text-transform: uppercase;
    position: relative;
    transition: 1s;
    transition-duration: 1s;
    z-index: 3;
  }
  .special-heading:hover{
    color: white;
    border-color:white ;
  }
  .special-heading:hover::after{
    left: 0;
    width: 100%;
    height: 100%;
    border-radius: 0;
    z-index: -1;
  
  }
  .special-heading:hover::before{
    right: 0;
    width: 100%;
    height: 100%;
    border-radius: 0;
    z-index: -1;
  }
  .special-heading::after{
    content: '';
    position: absolute;
    width: 10px;
    height: 10px;
    border-radius: 50%;
    left: -20px;
    top: 50%;
    transform: translateY(-50%);
    background-color: var(--main-color);
    transition: .6s;
  }
  .special-heading::before{
    content: '';
    position: absolute;
    width: 10px;
    height: 10px;
    border-radius: 50%;
    right: -20px;
    top: 50%;
    transform: translateY(-50%);
    background-color: var(--main-color);
    transition: .6s;
  }
  /* end component */
  /* strat global rules */
  *{
    -webkit-box-sizing:border-box ;
    -moz-box-sizing:border-box ;
    box-sizing: border-box;
    padding: 0;
    margin: 0;
  }
  body{
    font-family: "Cairo", sans-serif;
  }
  html{
    scroll-behavior: smooth;
  }
  ul{
    list-style: none;
  }
  a{
    text-decoration: none;
    display: block;
  }
.container {
    padding-left: 15px;
    padding-right: 15px;
    margin-left: auto;
    margin-right: auto;
    overflow: hidden
}
  /* Small */
  @media (min-width: 768px) {
    .container,content {
      width: 750px;
    }
  
  }
  
  /* Medium */
  @media (min-width: 992px) {
    .container,content {
      width: 970px;
    }
  }
  /* Large */
  @media (min-width: 1200px) {
    .container,content {
      width: 1170px;
    }
  }
  /* end global rules */
   .holder{
display: grid;
grid-template-columns: repeat(auto-fill,minmax(500px,1fr));
padding:30px 40px 0 ;
justify-content: center;
align-items: start;

  }

  .image-column {
    flex: 1; /* Takes up available space */
    padding: 10px;
  }

  .main-image {
width: 100%;
    margin: auto;
    margin-bottom: 5px;
    border-radius: 10px;
    border: 1px solid   #007bff83;;
    display: block; /* Prevents a small gap below the image */
  }

  .thumbnail-images {
    display: flex;
    gap: 3px;
  }

  .thumbnail {
    width: 170px; /* Adjust thumbnail size */
    cursor: pointer;
    padding: 4px;
    border-radius: 10px;
    border: 1px solid  #007bff83;;
  }
  .holder-details{
    padding: 30px;
  }
  .details-column {
    flex: 1;
    padding: 10px;
  }

.holder  .product-name {
    font-size: 30px;
    margin-bottom: 20px;
    font-weight: 900;
  }

  .holder .description {
    color: #007bff;
    font-size: 16px;
    font-weight: 600;
    line-height: 2;
    margin-bottom: 20px;
  }

  .details {
    margin-bottom: 20px;
  }
  .details ul{
 height: 357px;
  }

  .share {
    margin-bottom: 20px;
  }

  .tabs {
    display: flex;
    margin-top: 20px;
  }

  .tab {
    padding: 10px 20px;
    cursor: pointer;
    border-bottom: none; /* Remove bottom border */
    border-radius: 5px 5px 0 0; /* Rounded top corners */
    margin-right: 5px;
    font-weight: 900;
    text-transform: capitalize;
    font-size: 18px;
  }

  .tab.active {
    border-bottom: 1px solid #1787E0; /* Match background for seamless look */
    color: #007bff;
    transition: .3s;
  }

  .tab-content {
text-align: center;
    padding: 20px;
    border-radius: 0 0 5px 5px; /* Rounded bottom corners */
  }

  .tab-content > div {
    /* Hide all content divs initially */
    display: none;
    height: 300px;
    
  }
  .tab-content #description{
    color: #007bff;
    font-size: 16px;
    font-weight: 600;
    line-height: 2.2;
    max-width: 800px;
    margin: auto;

  }

  .tab-content > div.active {
    /* Show only the active tab content */
    display: block;

  }




  /* Style the video */
  video {
   width: 100%; /* Make video responsive */
   height:100%;
  }
  #video{
text-align:center

  }


 
  .top-sec{
    background-color: #eee;
    padding: 30px 50px ;
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-weight: 900;
    font-size: 18px;
  }
  .top-sec div{
    display: flex;
    gap: 10px;
  }



  @media (max-width:991px) {
    video{
      width: 100%;
    }
  }

  @media (max-width: 768px) {

    video {
        width: 100%;
    }
    .tab-content > div{
      height: 195px;
    }
    .tab-content{
        padding:10px 0
    }
    .tab-content #description {
        color: #007bff;
        font-size: 14px;
        font-weight: 600;
        line-height: 1.2;
        margin: auto;
    }
    .details-column{
        overflow:hidden
    }
    .details-column {
        text-align: center;
    }

  }
  @media (max-width:500px){

    .holder .description {
        font-size: 14px;
        line-height: 1.6;
        max-width: 400px;
        margin:auto;
        text-align: center
    }

    .image-column {
        max-width: 400px;
        text-align: center;
        margin: auto;
    }
  }
@media (max-width:420px) {
    .holder .description {
        font-size: 13px;
        line-height: 1.6;
        max-width: 350px;
        margin: auto;
        text-align: center
    }

    .image-column {
        max-width: 350px;
        text-align: center;
        margin: auto;
    }

}