/* Global Styles */
* {
	margin: 0;
	padding: 0;
	box-sizing: border-box;
	font-family: Arial, sans-serif;
}

body {
	background-color: #f0f0f0;
	color: #333;
}

.container {
	width: 90%;
	max-width: 1200px;
	/* background-color: blue; */
	margin: 0 auto;
    justify-content: center; /* Center horizontally */
    align-items: center;     /* Center vertically */
    /* Added om 30 Apr 2025 */
	/* display: flex; */
	/* Added om 30 Apr 2025 */
  	/* flex-direction: row; */
}

/* For tablets and smaller */
@media (max-width: 768px) {
  .container {
    width: 90%;
    display: flex;
    flex-direction: column;
    margin: 0 auto;
    justify-content: center; /* Center horizontally */
    align-items: center;     /* Center vertically */
  }
}

.site-desc {
	color: white;
	text-decoration: none;
	font-size: 18px;
	align-content: center;
	font-size: 28px;
	padding: 10px 0;
	
}
.site-desc-small {
	color: white;
	text-decoration: none;
	font-size: 18px;
	align-content: center;
	font-size: 20px;
	
	
}



/* Header */
header {
	background-color: #2e7d32;
	color: #fff;
	padding: 20px 0;
}

header .logo h1 a {
	color: #fff;
	text-decoration: none;
	font-size: 18px;
	align-content: left;
}

.nav-menu ul {
	list-style-type: none;
	display: flex;
	justify-content: flex-end;
}

.nav-menu ul li {
	margin-left: 20px;
}

.nav-menu ul li a {
	color: #fff;
	text-decoration: none;
	font-size: 16px;
}

/* Hero Section   color: #fff;   color: #2e7d32; */
.hero {
	background-image: url('images/bk.jpg');
	background-size: cover;
	background-position: center;
	color: #fff;
	text-align: center;
	padding: 20px 0;
	
}

.hero h2 {
	font-size: 26px;
}

.hero p {
	margin-top: 10px;
	font-size: 18px;
}

/* Products Section */
.products {
	background-color: #fff;
	padding: 40px 0;
	justify-content: center; /* Center horizontally */
    align-items: center;     /* Center vertically */
}


.products-heading {
	background-color: #fff;
	padding: 10px 0;
	justify-content: center; /* Center horizontally */
    align-items: center;     /* Center vertically */
    text-align: center; 
    font-weight: bold;
}
.home-heading {
	background-color: #fff;
	padding: 10px 30px;
	justify-content: center; /* Center horizontally */
    align-items: center;     /* Center vertically */
    text-align: left; 
    font-weight: bold;
    font-size: 30px;
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
}

.home-content {
	background-color: #fff;
	padding: 10px 30px;
	justify-content: center; /* Center horizontally */
    align-items: center;     /* Center vertically */
    text-align: left; 
    font-size: 15px;
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    
}

.products h2 {
	text-align: center;
	margin-bottom: 20px;
}

.product-grid {
	display: flex;
	justify-content: space-between;
	flex-wrap: wrap;
}

.product-item {
	background-color: #f9f9f9;
	padding: 20px;
	border-radius: 8px;
	text-align: center;
	width: 23%;
	margin-bottom: 20px;
}

.product-item img {
	width: 100%;
	height: auto;
	border-radius: 8px;
}

.product-item h3 {
	margin-top: 10px;
	font-size: 20px;
}

.product-item p {
	margin-top: 10px;
	color: #2e7d32;
	font-size: 18px;
}

.product-item button {
	margin-top: 10px;
	padding: 10px 20px;
	background-color: #2e7d32;
	color: #fff;
	border: none;
	cursor: pointer;
	font-size: 16px;
	border-radius: 4px;
}

.product-item button:hover {
	background-color: #1b5e20;
}

/* Footer */
footer {
	background-color: #2e7d32;
	color: #fff;
	padding: 20px 0;
	text-align: center;
}

.footer-menu {
	list-style-type: none;
	display: flex;
	justify-content: center;
	margin-top: 10px;
}

.footer-menu li {
	margin-left: 20px;
}

.footer-menu li a {
	color: #fff;
	text-decoration: none;
}
.styled-product-image {
  width: 150px;         /* Set the width */
  height: 175px;        /* Set the height */
  border: 4px solid #333;  /* Set a solid border with color */
  border-radius: 8px;   /* Optional: rounded corners */
  object-fit: cover;    /* Ensures image covers the area without distortion */
  font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
  font-size: 16px;
  color: #333;
  font-weight: 500;
}
.product-image-label {
  margin-top: 10px;
  font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
  font-size: 16px;
  color: #333;
  font-weight: 500;
}
.tab {
	padding: 14px 20px;
	cursor: pointer;
	color: black;
	background-color: #90EE90;
	/* color: white;*/
	text-align: center;
	flex-grow: 1;
	border-bottom: 2px solid black;
	justify-content: center; /* Center horizontally */
    align-items: center;     /* Center vertically */
	
	/* border-bottom: 2px solid transparent; */
}

.tab-container {
  position: fixed; /* or absolute */
  top: 100px; /* adjust as needed */
  left: 20px; /* adjust as needed */
  z-index: 1000; /* keep it above other content */
  background-color: white;
  padding: 10px;
  border: 1px solid #ddd;
  border-radius: 8px;
  box-shadow: 0 4px 12px rgba(0,0,0,0.1);
}

.tab-new {
	padding: 12px 12px;
	cursor: pointer;
	color: black;
	background-color: #90EE90;
	/* color: white;*/
	text-align: center;
	flex-grow: 1;
	border-bottom: 2px solid black;
	font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
  	font-size: 12px;
  	justify-content: center; /* Center horizontally */
  	align-items: center;     /* Center vertically */
}

.tab:hover {
	/* background-color: #555; */
	/* background-color: #fff; */
	background-color: #2e7d32;
}

.tab.active {
	background-color: #2e7d32;
	border-bottom: 2px solid #2e7d32;
	color: white; 
	
}
.tab-active-new {
	text-align: center;
	background-color: #2e7d32;
	border-bottom: 2px solid #2e7d32;
	color: white;
	font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
  	font-size: 12px;
  	justify-content: center; /* Center horizontally */
    align-items: center;     /* Center vertically */
}
/* Tab content */
.tab-content {
	display: none;
	padding: 10px;
	border: 1px solid #ddd;
	background-color: white;
	border-radius: 0 0 8px 8px;
	justify-content: center; /* Center horizontally */
    align-items: center;     /* Center vertically */
	
}

.tab-content.active {
	display: block;
    justify-content: center; /* Center horizontally */
    align-items: center;     /* Center vertically */
}


.home-items {
	width: 100%;
	display: flex;
	/* justify-content: space-between;*/
	gap: 10px;
	flex-wrap: wrap;
	align-content: center;
	padding-left: 120px;
	
	/* jbackground-color: blue; */
	
}

.home-item {
	background-color: #f4f4f4;
	/* border: 1px solid #ddd; */
	border: 4px solid #228B22;
	/*  width: 200px; */
	border-radius: 8px;
	padding: 20px;
	text-align: center;
	flex-basis: calc(15% - 10px);
	/* Each item takes 25% of the width minus the gap */
}

.iframe-stype-knee {
	width: 100%; /* Set width to 100% or as needed */
	height: 1300px; /* Set height as needed */
	border: none; /* Remove default border */
	overflow: hidden; /* Hide overflow (no scrollbars) */
	padding: 20px;
	/* align-items: center;
	align-content: center; */
}

.iframe-stype-wrist {
	width: 100%; /* Set width to 100% or as needed */
	height: 1100px; /* Set height as needed */
	border: none; /* Remove default border */
	overflow: hidden; /* Hide overflow (no scrollbars) */
}

.iframe-stype-allied {
	width: 100%; /* Set width to 100% or as needed */
	height: 1050px; /* Set height as needed */
	border: none; /* Remove default border */
	overflow: hidden; /* Hide overflow (no scrollbars) */
}

.iframe-stype-foot {
	width: 100%; /* Set width to 100% or as needed */
	height: 800px; /* Set height as needed */
	border: none; /* Remove default border */
	overflow: hidden; /* Hide overflow (no scrollbars) */
}

.iframe-stype-others {
	width: 100%; /* Set width to 100% or as needed */
	height: 1050px; /* Set height as needed */
	border: none; /* Remove default border */
	overflow: hidden; /* Hide overflow (no scrollbars) */
}

.feature-item {
	background-color: #f4f4f4;
	border: 1px solid #ddd;
	border-radius: 8px;
	padding: 20px;
	text-align: left;
	flex-basis: calc(15% - 10px);
	/* Each item takes 25% of the width minus the gap */
}

.text_style_header {
	
	font-size : 12 px;
	font-weight: bold;
	padding: 2px 4px;
}

.text_style_feature {
	color: black; /* Customize the highlight color */
	font-size : 10 px;
	padding: 2px 4px;
	overflow-wrap: break-word;
	word-break: break-word;
	
}

.text_style_key {
	color: black; /* Customize the highlight color */
	padding: 2px 4px;
}

.text_style_size {
	color: black; /* Customize the highlight color */
	padding: 2px 4px;
}

/*   Style for feature text */
.bullet-text p {
    position: relative;
    padding-left: 20px;
    text-indent: -10px;
    margin-bottom: 8px;
    word-wrap: break-word;
    background-color:#F0FFE0;
  }

  .bullet-text p::before {
    content: "•";
    position: absolute;
    left: 0;
    color: #333;
    background-color:#F0FFE0;
  }


.button-style {
	border: 1px;
	background-color: darkgreen;
	color: white;
	width: 100px;
	height: 40px;
	border-radius: 12px;
}

.button-style-large {
	border: 1px;
	background-color: darkgreen;
	color: white;
	width: 150px;
	height: 25px;
	border-radius: 12px;
}

/* New Styles for details page    */
  * {
      box-sizing: border-box;
      font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
      margin: 0;
      padding: 0;
    }

    body {
      background-color: #f2f2f2;
      padding: 20px;
    }

    .product-page {
      display: flex;
      gap: 20px;
      background-color: white;
      padding: 20px;
      border-radius: 12px;
      box-shadow: 0 4px 10px rgba(0,0,0,0.1);
    }

    .image-section {
      flex: 1;
      max-width: 400px;
      /* Lemon Cream */
      /* background-color:#F9FFEC; */
    }

    .image-section img {
      width: 100%;
      border: 1px solid #ddd;
      border-radius: 8px;
     
    }

    .details-section {
      flex: 2;
      display: flex;
      flex-direction: column;
      /*  peach yellow background-color: #FFF0D9;  */
      /* Pale Line */
      background-color:#F0FFE0;
      border: 1px;
      gap: 15px;
      /* border: 2px solid #4CAF50;  */     /* Green border, 2px width */
      /* this is for oval shape */
      /* border-radius: 50px; */ 	
    }

   .size-section {
     /* flex: 2;
      display: flex;
      flex-direction: column; */
      /*  peach yellow background-color: #FFF0D9;  */
      /* Pale Line */
      background-color:light-grey;
      border: 1px;
      border-radius: 8px;
      gap: 15px;
    }

    .product-title {
      font-size: 24px;
      font-weight: 600;
      color: #222;
    }

    .product-rating {
      color: #ff9900;
      font-size: 14px;
    }

    .price {
      font-size: 28px;
      color: #B12704;
      font-weight: bold;
    }

    .stock {
      color: green;
      font-weight: 600;
    }

    .description {
      font-size: 14px;
      color: #444;
      line-height: 1.5;
    }

    .actions {
      display: flex;
      gap: 10px;
      margin-top: 10px;
    }

    .btn {
      padding: 12px 18px;
      font-size: 14px;
      border-radius: 6px;
      cursor: pointer;
      font-weight: bold;
    }

    .btn.buy {
      background-color: #FFA41C;
      border: none;
      color: #222;
    }

    .btn.cart {
      background-color: #FFD814;
      border: 1px solid #fcd200;
      color: #222;
    }

    @media (max-width: 768px) {
      .product-page {
        flex-direction: column;
        align-items: center;
      }
      .details-section {
        width: 100%;
      }
    }