/*
 * Copyright (c) 2025 Shelfrise
 * All rights reserved.
 * 
 * This CSS file is proprietary and confidential.
 * Unauthorized copying, distribution, or modification of this file,
 * via any medium, is strictly prohibited.
 * 
 * Website: [www.shelfrise.net]
 * Contact: [shelfrise@outlook.com]
 */
* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}
body, table, td, th {
  font-family:'open sans', sans-serif !important;
  font-size: 14px;
  line-height: 1.4;
   overflow-x: hidden;
 
}

img {
  max-width: 100% !important;
  height: auto !important;
  border: none !important;
}

table {
  border-collapse: collapse;
  width: 100%;
}
/* Typography Reset & Standards */
h1, h2, h3, h4, h5, h6 {
  font-weight: bold;
  line-height: 1.2;
  margin: 0 0 15px 0;
  color: inherit;
  padding:0;
}

h1 { font-size: 28px; }
h2 { font-size: 24px; }
h3 { font-size: 20px; }
h4 { font-size: 18px; }
h5 { font-size: 16px; }
h6 { font-size: 14px; }

p {
  margin: 0 0 15px 0;
  line-height: 1.5;
  padding:0;

}

a {
  color: #0066cc;
  text-decoration: underline;
  padding:0;
}

a:hover {
  text-decoration: none;
}

ul, ol {
  margin: 0 0 15px 20px;
 
}

li {
  margin-bottom: 0px;
}

strong, b {
  font-weight: bold;
}

em, i {
  font-style: italic;
}

/* Common utility classes */
.text-center { text-align: center !important; }
.text-left { text-align: left !important; }
.text-right { text-align: right !important; }
.font-bold { font-weight: bold !important; }
.no-margin { margin: 0 !important; }
.no-padding { padding: 0 !important; }

/* Most reliable approach for eBay */
@media (min-width: 1200px) {
    .container
   {
        max-width:1050px !important;	
    }
}
/* Hide eBay’s extra <center> or wrapper tables */
#page + center
 {
  display: none !important;
}
/* Remove eBay’s injected <br clear="all"> */
br[clear="all"] {
  display: none !important;
}
/* Reset fonts (override eBay’s inline defaults) */
 #page {
  
}

.top-message
{
  background:#EFF0EF;
 }
 .top-message p
 {
	 display:flex;
	 justify-content:center;
	 color:#333;
     font-size:14px;
      font-family: "Open Sans", sans-serif;
     text-transform:uppercase;
	 font-weight: 500;
    padding:10px;
 }
	 .top-message p
	 {
	font-size:17px;
	text-align:center;
	 display:block;}

 #header

 {background-color:#fff;}
 .logo 
 {

padding: 10px 0px;
 }
 .logo a img
 {
width:138px;
 }
  .logo img
  {
	  display: flex;
    justify-content:flex-start;
  }
 .s3info {
  width: 400px;
  margin-top: 25px;
}
#headerwrapper
{
	display: flex;
  flex-direction: row;
  justify-content: space-between;
}
  /* ==================================================
      COMMON MENU STYLES for BOTH MOBILE AND DESKTOP
     ================================================== */
 .categories
 {
	 
	 list-style-type:none;
	 margin:0;
	 padding:0;
	 
 }
  .categories a
  {
	text-decoration:none;
	color:#fff;
	font-size:14px;
	font-weight:500;
	}
	
	  /* ==================================================
           DESKTOP MENU STYLES
        ================================================== */
		#desktop-menu
		{
			background-color:#224577;
		}
		

	 #desktop-menu .row
		{
	background-color:#224577;
	border-radius:5px;
	margin: 0;
		}
			#header-menu-mobile .row
			
				{
	background-color:#333;
	border-radius:5px;
	margin: 0;
		}
			
 #desktop-menu .categories
 {
	 display:flex;
	 flex-direction:row;
	 flex-wrap:nowrap;
	 justify-content:center;
 }
 #desktop-menu .categories li
 {
	 
        /* flex:1;*/
          position: relative; 
 }
 #desktop-menu .categories li a
 {
	 display:block;
	 text-align:center;
	 padding: 10px 25px;
	 height:auto;
	 color:#fff;
	transition: background-color 0.3s ease;
	font-family: "open sans", sans-serif;
  font-size: 14px;
  text-transform: uppercase;
 }
 
 #desktop-menu .categories > li > a:hover
 {
	 background-color:#2e5fa3;
    border-radius: 3px; /* Add rounded corners */
    margin: 0 5px;
 }
  /* later on i will add there dropdown section */
 
    /* ==================================================
           MOBILE MENU STYLES
      ================================================== */
           MOBILE MENU STYLES
#header-menu-mobile
		{
			background-color:#000;
		}
        #header-menu-mobile .row {
          
            border-radius: 5px;
            margin: 20px 0;
        }

        /* ==================================================
           MOBILE MENU TOGGLE BUTTON
           ================================================== */

        .mobile-control {
            /* Hide the checkbox - we'll use it for CSS-only toggle */
            display: none;
        }

        .mobile-menu-toggle {
            /* Style the toggle button */
            display: block;
            cursor: pointer;
            padding: 0 15px;
            height: 40px;
            line-height: 38px;
            color: #fff;
            font-weight: 700;
            font-size: 14px;
           margin:0;
		   color:#fff !important;
		   font-family: "open sans", sans-serif;
        }

        /* ==================================================
           HAMBURGER ICON STYLES
           ================================================== */

        .mobile-menu-toggle .icon {
            /* Container for hamburger lines */
            float: left;
            width: 22px;
            margin-right: 8px;
            margin-top: 9px;
            padding: 3px 0;
        }

        .mobile-menu-toggle .icon span {
            /* Individual hamburger lines */
            display: block;
            background-color: #fff !important;
            width: 100%;
            height: 3px;
            transition: all 0.3s ease; /* Smooth animation */
        }

        .mobile-menu-toggle .icon span + span {
            /* Space between lines */
            margin-top: 4px;
        }

        /* ==================================================
           HAMBURGER ANIMATION (when menu is open)
           ================================================== */

        .mobile-control:checked + .mobile-menu-toggle .icon span:nth-child(1) {
            /* Top line rotates and moves down */
            transform: rotate(45deg) translate(5px, 5px);
        }

        .mobile-control:checked + .mobile-menu-toggle .icon span:nth-child(2) {
            /* Middle line disappears */
            opacity: 0;
        }

        .mobile-control:checked + .mobile-menu-toggle .icon span:nth-child(3) {
            /* Bottom line rotates and moves up */
            transform: rotate(-45deg) translate(7px, -6px);
        }

        /* ==================================================
           MOBILE MENU DROPDOWN STYLES
           ================================================== */

        #header-menu-mobile .categories {
            /* Hidden by default */
            display: none;
            padding: 0 15px 10px;
            background-color: #333333;
        }

        #header-menu-mobile .categories > li {
            /* List item styling */
            border-bottom: 1px solid #444;
        }

        #header-menu-mobile .categories > li:last-child {
            border-bottom: none;
        }

        #header-menu-mobile .categories > li > a {
            /* Mobile menu link styling */
            display: block;
            padding: 12px 0;
            color: #fff;
            transition: color 0.3s ease;
			font-family: "open sans", sans-serif;
			font-size:12px;
        }

        #header-menu-mobile .categories > li > a:hover {
            color: #ff6b35; /* Green on hover */
        }

        /* ==================================================
           TOGGLE FUNCTIONALITY (Pure CSS)
           ================================================== */

        .mobile-control:checked ~ .categories {
            /* Show menu when checkbox is checked */
            display: block !important;
            animation: slideDown 0.3s ease-out;
        }

        /* Slide down animation */
        @keyframes slideDown {
            from {
                opacity: 0;
                max-height: 0;
            }
            to {
                opacity: 1;
                max-height: 500px;
            }
        }
		/* selling point start*/
/*-----------selling point start------------*/
		
 .trust-badges-section-inline {
    background: #fff;
    padding: 0;
    border-top: 1px solid rgba(255,255,255,0.1);
    border-bottom: 1px solid rgba(255,255,255,0.1);
  }

  .container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 16px;
  }

  .trust-badges-flex {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 8px;
  }

  .trust-badge-inline-item {
    display: flex;
    align-items: center;
    gap: 12px;
    flex: 1;
    padding: 6px 10px;
    border-radius: 8px;
    transition: background 0.2s ease;
  }

  .trust-badge-inline-item:not(:last-child) {
   
  }

  .badge-icon-inline {
    flex-shrink: 0;
    width: 40px;
    height: 40px;
    background: rgba(255,255,255,0.12);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
  }

  .badge-icon-inline i {
    font-size: 18px;
    color: #224577;
  }

  .badge-text-inline h4 {
    color: #333;
    font-size: 11px;
    font-weight: 700;
    margin: 0 0 2px 0;
    text-transform: uppercase;
    letter-spacing: 0.4px;
    line-height: 1.2;
    white-space: nowrap;
  }

  .badge-text-inline p {
    color: #000;
    font-size: 10px;
    margin: 0;
    line-height: 1.3;
    white-space: nowrap;
  }

  /* ── MOBILE ── */
  @media (max-width: 767px) {
    .trust-badges-section-inline {
      padding: 0;
    }

    .trust-badges-flex {
      display: grid;
      grid-template-columns: 1fr 1fr;
      gap: 0;
    }

    .trust-badge-inline-item {
      flex-direction: column;
      align-items: center;
      text-align: center;
      gap: 8px;
      padding: 16px 10px;
      border-right: none !important;
      border-bottom: 1px solid rgba(255,255,255,0.1);
    }

    /* Remove bottom border from last row */
    .trust-badge-inline-item:nth-child(3),
    .trust-badge-inline-item:nth-child(4) {
      border-bottom: none;
    }

    /* Right border between columns */
    .trust-badge-inline-item:nth-child(odd) {
      border-right: 1px solid rgba(255,255,255,0.1) !important;
    }

    .badge-icon-inline {
      width: 48px;
      height: 48px;
      background: rgba(255,255,255,0.15);
    }

    .badge-icon-inline i {
      font-size: 22px;
    }

    .badge-text-inline h4 {
      font-size: 11px;
      white-space: normal;
      letter-spacing: 0.3px;
    }

    .badge-text-inline p {
      font-size: 10px;
      white-space: normal;
      color: rgba(255,255,255,0.8);
    }
  }
  /*selling point end*/
  
  #main-content{
  padding-top: 5px;
	padding-bottom: 0px;

	background-color:#FEFEFE;
  }
  .p-dgn a
  {
	color:#333;
text-decoration:none;	
  }
  .p-dgn a:hover
  {
	  color:#284d7f;
	  text-decoration:underline;
  }
  .left-content
  {
	  padding:0;
  }
  @media (max-width: 767px) {
	#main-content{
		padding-top: 15px;
	}
}

   /* left side categories design*/
  .sidebar
  {
	  background-color:#fff;
	  border-radius:1px;
	  overflow:hidden;
	  margin-bottom: 20px;
	  border:1px solid #ebebeb;
	  padding:6px;
  }
  .sidecategory
 
 {
	 background-color: #284d7f;
  color: #fff;
  text-transform: uppercase;
  font-weight: 600;
  font-size: 16px;
  letter-spacing: 0.5px;
  padding: 10px 14px;
  font-family: "open sans", sans-serif;
 }
 
  .sidecategory-1
 
 {
	background-color: #fff;
  color: #1a2447;
  text-transform: uppercase;
  font-weight: 600;
  font-size: 15px;
  letter-spacing: 0.5px;
padding: 10px 0px 10px 8px;
  font-family: "open sans", sans-serif;
  border: 2px solid #284d7f;
  
 }
 #main ul.left-category
 {
	 margin:0;
	 padding:0px;
	 list-style:none;
 }
 #main ul.left-category > li
 {
	 border-bottom: 1px solid #f0f0f0;
	 }
 #main ul.left-category > li:last-child
 {border-bottom:none;}
  #main ul.left-category > li > a
  {display:block;
  text-decoration:none;
  color:#333;
  font-size:12px;
  padding:5px 15px;
  position:relative;
   transition: all 0.3s ease;
   font-family: 'open sans', sans-serif;
   font-weight:normal;

  }
  
   #main ul.left-category > li > a::before
   {
	   content: '';
	    width: 0px;
             height: 8px;
            border-radius: 50%;
            background-color: ;
            display: inline-block;
            margin-right: 0px;
            transition: all 0.3s ease;
   }
   
    #main ul.left-category > li > a:hover::after{
content: "\203A";
  font-family: "Font Awesome 7 Free";
  font-weight: 900;
  font-size: 15px;
  float: right;
  position: relative;
bottom: 2px;
  left: 9px;
  
	}
    #main ul.left-category > li > a:hover
	{
	
		background-color: #284d7f;
        color: #fff;
		
	}
	#main ul.left-category > li > a:hover::before
	{background-color:#fff;
		  transform: scale(1.2);
	}
   
 .cat-count
 {
 float: right;
            background-color: #e8e8e8;
            color: #666;
            font-size: 11px;
            padding: 2px 6px;
            border-radius: 10px;
            font-weight: 500;	
 }
 	#main ul.left-category > li > a:hover .cat-count
	{
		 background-color: rgba(255,255,255,0.3);
            color: #fff;
	}
	#main ul.left-category > li > ul
	{
		  padding: 0;
            margin: 0;
            list-style: none;
            background-color: #fff;
	}
  #main ul.left-category > li > ul > li
  {
	  border-bottom: 1px solid #eeeeee;
  }
   #main ul.left-category > li > ul > li:last-child
   {
	   border-bottom:none;
   }
    #main ul.left-category > li > ul > li > a
	{
		display:block;
		font-size:12px;
		font-weight:normal;
		text-decoration:none;
		color:#333;
		padding:5px 15px;
        position: relative;
		font-family: 'open sans', sans-serif;
  
		
		
	}
	/*
	 #main ul.left-category > li > ul > li > a::before
	 {
		 content: '';
		 margin-right:10px;
		 font-size:12px;
		 color:#999;
	transition: all 0.3s ease;
		 
	 }*/
	  #main ul.left-category > li > ul > li > a:hover
	  {
		  background: url("../images/") top right no-repeat;
           background-color: #284d7f;
  color: #fff;
 
	  }
	   #main ul.left-category > li > ul > li > a:hover::after{
    content: "\203A";
	font-family: "Font Awesome 7 Free";
font-weight: 900;
    font-size: 15px;
    float:right;
   position: relative;
  bottom: 2px;
  left: 9px;
		   
	   }
	    #main ul.left-category > li > ul > li > a:hover::before
		
		{color:#fff;} /* SPECIAL CATEGORY TYPES */
		 #main ul.left-category > li.feature-cat > a
		 {
			  background-color: #ff6b35;
            color: #fff;
		 }
		  #main ul.left-category > li.feature-cat > a::before
		  {
			   background-color: #fff;
		  }
		    #main ul.left-category > li.feature-cat > a:hover
			{
				 background-color: #e55a2b;
			}
			 #main ul.left-category > li.new > a::after
			 
			 {content: 'New';
			 position:absolute;
			 right:15px;
			 top:50%;
			  background-color: #ff4757;
            color: #fff;
            font-size: 10px;
			  transform: translateY(-50%);
			   border-radius: 8px;
			  padding: 2px 6px;
          
			 }
			    @media (max-width: 767px) {

            #main ul.left-category > li > a {
                padding: 15px 16px;
                font-size: 16px;
            }
            
            #main ul.left-category > li > ul > li > a {
                padding: 15px 15px 15px 35px;
                font-size: 15px;
            } 
			}
        @media (max-width: 480px) {
            #main ul.left-category > li > a {
                padding: 20px 15px;
                font-size: 14px;
            }
        }
  /*catgeories ended*/
  
 /* gallery start*/
.right-content

{padding:0;}
.main-title
{
background-color: #fff;
  color: #000;
  font-size: 26px;
  line-height: 30px;
  text-transform: uppercase;
  font-family: 'Oswald', sans-serif;
  font-weight: 400;
 padding: 0px 0px 8px 0px;
  margin-top: 0;
  text-align: center;
}
.img-responsive{
  display: inline-block;
  max-width: 100%;
  height: auto;
}

.img-center{
	position: absolute;
	top: 0px;
	bottom: 0px;
	left: 0px;
	right: 0px;
	margin: auto;
	max-width: 100%;
	max-height: 100%;
}

.sentinel{
	width: 100%;
}

/*
/ Transitions
/ ------------------------------ */

.transition{
	transition: all .15s linear;
	-o-transition: all .15s linear;
	-moz-transition: all .15s linear;
	-webkit-transition: all .15s linear;
}

@keyframes fadeIn {
  from {
    opacity: 0; }

  to {
    opacity: 1; } }
 

@keyframes fadeInImage {
  from {
    opacity: 0; }

  to {
    opacity: 1; } }

/*
/ Forms
/ ------------------------------ */

.form-control{
	font-size: 16px;
	color: #000000;
	padding: 5px 10px;
	border: 1px solid #dedede;
}
/*
/ Images
/ ------------------------------ */

.images{
	position: relative;
	margin-right: auto;
	margin-left: auto;
	text-align: center;
	padding-bottom: 20px;
	max-width: 500px; /* Add this - adjust size as needed */
}

@media (max-width: 767px){
	.images{
		padding-bottom: 0;
	}
}

@media (max-width: 575px){
	.images{
		margin-right: 0;
	}
}

.images .main-sentinel{
	max-width: 500px; /* Match the container size */
	width: 100%;
}

.images .image{
	width: 14.28%;
	display: inline-block;
	position: static;
	padding-right: 15px;
	padding-top:10px;
}

@media (max-width: 1023px){
	.images .image{
		width: 16.66%;
	}
}

@media (max-width: 767px){
	.images .image{
		width: 20%;
	}
}

.images .image[data-image=""]{
	display: none;
}

/*** Thumbnails ***/

.image .thumbnail{
	width: 100%;
	position: relative;
	cursor: pointer;
	border: 1px solid #cccccc;
	margin-bottom: 15px;
	padding-bottom: 100%;
}

.image .thumbnails-control{
	display: none;
}

.image .thumbnails-control:checked + .thumbnail{
	border-color: #000;
}

.image #thumbnail-control-video:checked ~ #image-video,
.image #thumbnail-control-1:checked ~ #image-1,
.image #thumbnail-control-2:checked ~ #image-2,
.image #thumbnail-control-3:checked ~ #image-3,
.image #thumbnail-control-4:checked ~ #image-4,
.image #thumbnail-control-5:checked ~ #image-5,
.image #thumbnail-control-6:checked ~ #image-6,
.image #thumbnail-control-7:checked ~ #image-7,
.image #thumbnail-control-8:checked ~ #image-8,
.image #thumbnail-control-9:checked ~ #image-9,
.image #thumbnail-control-10:checked ~ #image-10,
.image #thumbnail-control-11:checked ~ #image-11,
.image #thumbnail-control-12:checked ~ #image-12,
.image #thumbnail-control-13:checked ~ #image-13,
.image #thumbnail-control-14:checked ~ #image-14,
.image #thumbnail-control-15:checked ~ #image-15,
.image #thumbnail-control-16:checked ~ #image-16{
	display: block;
}

@media (max-width: 575px) {
	.images{
		text-align: center;
		margin-bottom: 15px;
	}
	.images .image{
		width: auto;
		float: none;
		display: inline-block;
		padding: 0;
	}
	.image .thumbnail{
		width: 13px;
		height: 13px;
		border-radius: 100%;
		margin: 10px 5px 0;
		padding-bottom: 0;
		border: 1px solid #000000;
	}
	.image .thumbnails-control:checked + label{
		background-color: #000;
	}
	.image .thumbnail img{
		display: none;
	}
}

/*** Images ***/

.image .main{
	animation-name: fadeIn;
    animation-duration: 0.5s;
	position: absolute;
	top: 0px;
	left: 0px;
	width: 100%;
	display: none;
	cursor: pointer;
	padding-right: 0px;
}

@media (max-width: 575px){
	.image .main{
		padding-right: 0;
	}
	
	#header .logo {
   
    margin: 12px 0 !important;
}
	
}

.image .main .main-content{
	position: relative;
	padding-bottom: 100%;
	border:2px solid #224577;
}

/*** Video ***/

.image .main video{
	width: 100%;
}

/*** Arrows ***/

.image .main .prev,
.image .main .next{
	background-size: cover;
	position: absolute;
	width: 39px;
	height: 39px;
	top: 50%;
	margin-top: -20px;
	cursor: pointer;

	background-color: #000;
	border-radius: 500px;
	background-position: center;
	background-repeat: no-repeat;
}

.image .main .prev{
	left: -5px;
	background-image: url('../images/prev.png');
}

.image .main .next{
	right: -5px;
	background-image: url('../images/next.png');
}

.image .main .prev[data-prev=""],
.image .main .next[data-next=""]{
	display: none;
}

.image .main-control{
	display: none;
}

@media (min-width: 576px) {
	.image .main .prev,
	.image .main .next{
		display: none;
	}
}

/*** Click to zoom ***/

@media (min-width: 768px) {
		.image .main-control:checked + .main{
		animation-name: fadeInImage;
  		animation-duration: 0.5s;
		position: fixed;
		left: 0px;
		top: 0px;
		width: 100%;
		height: 100%;
		z-index: 100;
		background-color: rgba(0,0,0,0.65);
		text-align: center;
		display: flex; /* ADDED: For vertical centering */
		align-items: center; /* ADDED: Centers content vertically */
		justify-content: center; /* ADDED: Centers content horizontally */
		padding: 20px; /* ADDED: Prevents modal from touching screen edges */
		
	}
	.image .main-control:checked + .main .main-content{
		position: relative;
		border: 0;
		width: 90%; /* CHANGED: Was 600px - now responsive width */
		max-width: 600px; /* ADDED: Limits maximum width */
		height: auto; /* CHANGED: Was 600px - now auto to fit image */
		max-height: 90vh; /* ADDED: Prevents image from being cut off at bottom */
		padding: 0;
		background-color: #ffffff;
		margin: auto; /* CHANGED: Was "50px auto 0" - removed fixed top margin */
		box-shadow: 0px 0px 10px rgba(0,0,0,0.25);
		display: flex; /* ADDED: For image centering inside modal */
		align-items: center; /* ADDED: Centers image vertically */
		justify-content: center; /* ADDED: Centers image horizontally */
	}
	.image .main-control:checked + .main .main-content img{
		max-width: 100%;
		max-height: 90vh; /* ADDED: Ensures full image is visible without cutting */
		width: auto; /* ADDED: Maintains image aspect ratio */
		height: auto; /* ADDED: Maintains image aspect ratio */
		position: relative; /* ADDED: For proper positioning */
	}
	.image .main-control:checked + .main .main-content .prev,
	.image .main-control:checked + .main .main-content .next{
		display: none;
	}
	.image .main .main-content:after{
		content: "Click image to zoom";
		background-image: url('../images/zoom.png');
		background-repeat: no-repeat;
		background-position: right center;
		padding-right: 32px;
		line-height: 21px;
		position: absolute;
		bottom: 0;
		right: 0;
		color: #000000;
		font-size: 10px;
	}
	.image .main-control:checked + .main .main-content:after{
		bottom: auto;
		left: auto;
		top: 10px;
		right: 10px;
		width: 19px;
		height: 19px;
		padding: 0;
		content: "";
		background-image: url('../images/close.png');
	}
}

@media (min-width: 1024px) {
		 .image .main-control:checked + .main .main-content{
		max-width: 800px;
		max-height: 90vh;
		width: auto;
		height: auto;
   /* changed from width: 800px;height: 800px; */
	}
}
}
/*slider gallery end*/
/* description start*/
.main-description
{margin-top:1em;
	font-size: 18px;
  text-transform: uppercase;
  background-color: #284d7f;
  color: #fff;
  font-family: 'Oswald', sans-serif;
  padding: 8px 15px;
  font-weight: 500;
  letter-spacing: 0px;
  margin: 0;
  border-bottom: 3px solid #099dbd;
}
.desc-d
{
margin-bottom: 10px;
  margin-top: 0px;
  float: left;
  line-height: 23px;
  padding: 13px;
  width: 100%;
  list-style: inside;
  color: #333;
  font-size: 13px;
  letter-spacing: 0px;
 font-family: 'open sans', sans-serif;
  border: 1px solid #cdcdce;
}
 
}

/*** Description Overides ***/

.desc-d img{
	max-width: 100%;
	width: auto !important;
	height: auto !important;
}

.desc-d ul li,
.desc-d ol li{
	margin-bottom: 4px;
}

.desc-d ul{
	list-style: none;
	margin: 0;
	padding: 0;
}

.desc-d ul li{
	background-image: url(../images/tick.PNG);
	background-repeat: no-repeat;
	background-position: left center;
	padding: 0 0 0 28px;
	line-height: 20px;
	margin-bottom: 15px;
}

.desc-d table{
	font-size: 13px;
}
.desc-d font,
.desc-d b font,
.desc-d strong font,
.desc-d p font,
.desc-d ul li font,
.desc-d ol li font,
.desc-d th font,
.desc-d td font,
.desc-d h2 font,
.desc-d h3 font,
.desc-d h4 font,
.desc-d h5 font,
.desc-d b,
.desc-d strong{
	font-size: inherit !important;
	font-family: inherit !important;
	line-height: inherit !important;
}

.desc-d p,
.desc-d ul li,
.desc-d ol li,
.desc-d th,
.desc-d td,
.desc-d h2,
.desc-d h3,
.desc-d h4,
.desc-d h5,
.desc-d span,
.desc-d div{

line-height: inherit !important;}
/* tab start*/
.tab-back
{background-image:url('https://www.transparenttextures.com/patterns/diamond-upholstery.png');
padding:40px 0px 10px 0;
margin-left: 33px;
  margin-right: 33px;
  margin-bottom:15px;

}
@media (max-width:576px)
{
	

.tab-back {
  background:none;
  padding:0;
  }
}


.tabs
{margin-top:0;
margin-bottom: 5px;
background-color:none;
}
@media(max-width: 480px) 
{
	.tabs
	{
		margin-bottom:0;
	}
}
.tabs .tab-control
{display:none;
margin-bottom:20px;}

.tabs > label 
{display:block;
float:left;
position:relative;
z-index:10;
padding:15px 40px;
margin:0;
font-size:14px;
color:#fff;
border-right:1px solid #dcdcdc;
font-family: "open sans", sans-serif;
font-weight:600px;
background-color: #284d7f;
border-bottom: none;
}
.tabs > label:hover
{
	color:#000;
	background-color:#fff;
	cursor:pointer;
	border-top: 4px solid #284d7f;
}
.tabs #tab-control-1:checked ~ label[for="tab-control-1"],
.tabs #tab-control-2:checked ~ label[for="tab-control-2"],
.tabs #tab-control-3:checked ~ label[for="tab-control-3"],
.tabs #tab-control-4:checked ~ label[for="tab-control-4"],
.tabs #tab-control-5:checked ~ label[for="tab-control-5"],
.tabs #tab-control-6:checked ~ label[for="tab-control-6"],
.tabs #tab-control-7:checked ~ label[for="tab-control-7"]
{
	background-color:#fff;
	color:#000;
	border-top: 4px solid #284d7f;
}
@media(max-width:767px)
{
	.tabs
	{
	border:1px solid #ccc;
	border-top:0;
	}
	
	.tabs > label 
	{
		width:100%;
		margin:0;
		padding:15px 15px;
		border:0;
		border-top:;
		
		/*
		background-image:url('https://encrypted-tbn0.gstatic.com/images?q=tbn:ANd9GcQEAgxTG1meQKhxtQX8hvgNLF3mdt0LfW8HoQ&s'); /* will add arrow later need to add
		background-repeat:no-repeat;
		background-position:right center;
		background-size:20px;*/
	}
	.tabs > label:hover,
	.tabs #tab-control-1:checked ~ label[for="tab-control-1"],
	.tabs #tab-control-2:checked ~ label[for="tab-control-2"],
	.tabs #tab-control-3:checked ~ label[for="tab-control-3"],
	.tabs #tab-control-4:checked ~ label[for="tab-control-4"],
	.tabs #tab-control-5:checked ~ label[for="tab-control-5"],
	.tabs #tab-control-6:checked ~ label[for="tab-control-6"],
	.tabs #tab-control-7:checked ~ label[for="tab-control-7"]
	{/* for mobile image*/
	

		
	}
}

@media (min-width: 768px) {
    .tabs {
        display: flex;
        flex-wrap: wrap;
    }
    
    .tabs > label {
        flex: 1;
    display: block;
    position: relative;
    z-index: 10;
    padding: 15px 10px;
    margin: 0;
    font-size: 14px;
    color: #fff;
    border-right: 1px solid #284d7f;
    font-family: "open sans", sans-serif;
    background-color: #224577;
    text-align: center;
	font-weight:600;
    }
}

.tabs .tab-content
{display:none;
/*
animation-name:fade-in;
animation-duration:1.0s;*/
float:left;
width:100%;
padding:20px 40px;
font-size:13px;
line-height:1.5;
color:#333;
border:1px solid #dcdcdc;
background-color:#fff;
font-family: "open sans", sans-serif;
}
.tabs .tab-content img,
.tabs .tab-content img
{width:auto !important;
height:auto !important;
max-width:100%;
}
.tabs .tab-content ul li,
.tabs .tab-content ol li
{margin-bottom:4px;
}
@media (max-width:767px)
{
.tabs .tab-content
{border:0;
padding:15px;
}
}

#tab-control-1:checked ~ #tab-content-1,
#tab-control-2:checked ~ #tab-content-2,
#tab-control-3:checked ~ #tab-content-3,
#tab-control-4:checked ~ #tab-content-4,
#tab-control-5:checked ~ #tab-content-5,
#tab-control-6:checked ~ #tab-content-6,
#tab-control-7:checked ~ #tab-content-7
{
	display:block;
}
@media(max-width:767px)
{
	.tabs .desktop-label
	{
		display:none;
		
	}
}
@media(min-width:768px)
{
.tabs .mobile-label
	{
		display:none;
		
	}
}

/* testing before and after */
@media(max-width:767px)
{

.tabs > label::before
	{
display: inline-block;
    width: 28px;
    height: 16px;
    position: absolute;
    right: 10px;
    top: 15px;
    content: "\2b";
    font-family: "font Awesome 7 free";
    font-size: 20px;
    padding-right: 10px;
    vertical-align: middle;
    float: right;
    font-weight:400;
}}
@media(max-width:767px)
{
  #tab-control-1:checked ~ label[for="tab-control-1"]::before,
  #tab-control-2:checked ~ label[for="tab-control-2"]::before,
  #tab-control-3:checked ~ label[for="tab-control-3"]::before,
  #tab-control-4:checked ~ label[for="tab-control-4"]::before,
  #tab-control-5:checked ~ label[for="tab-control-5"]::before,
#tab-control-6:checked ~ label[for="tab-control-6"]::before,
#tab-control-7:checked ~ label[for="tab-control-7"]::before{
    display: inline-block;
    width: 24px;
    height: 16px;
    position: absolute;
    right: 10px;
    top: 15px;
    content: "\2212";
	font-family:"font Awesome 7 free";
    font-size: 25px;
    padding-right: 10px;
    vertical-align: middle;
    float: right;
    font-weight: 400;
  
}}
/* footer */
.footer
{
background-color:#fff;
margin-top:0;
padding: 0px 0 20px 0;
color: #fff;
gap:100px;
background-repeat: no-repeat;
  background-size: cover;

}
.foot-mng
{
	display:flex;
	flex-direction:column;
align-items:center;
gap:30px;
}
@media (max-width:767px)
{
	.footer-logo
{
margin-top:20px;
width:180px;
}

.footer-payment-icons
{
	width:210px;
}
}
.footer-logo
{
	display: block;
  margin: 0 auto;
  width:138px;
}
.footer-copyright
{
color: #fff;
  font-size: 13px;
  margin: 0;
  font-family: "open sans", sans-serif;
  letter-spacing: 0.5px;
  background-color:#224577;
  padding:10px 0;
}
/* end basic */
/* More Items Container  items*/
.product-item,
.product-item-no-border {
  padding: 12px 0;
  display: flex;
  flex-direction: row;
  align-items: flex-start;
  gap: 10px; /* smaller gap */
}

/* Smaller image for sidebar */
.product-image {
  width: 95px;
  height: 70px;
  object-fit: cover;
  border: 1px solid #ddd;
  flex-shrink: 0;
}

/* Text area */
.product-details {
  flex: 1;
  min-width: 0;
  text-align: left;
}

/* Title */
.product-title {
  font-size: 14px;
  line-height: 1.3;
  margin-bottom: 4px;
  font-weight: 600;
}

/* Price */
.product-price {
  font-size: 15px;
  font-weight: 700;
}
.accordion-section {
    background-color: #fefefe;
    padding: 40px 0;
}

/* Accordion Container */
.accordion {
    background: #fff;
    border: 1px solid #e0e0e0;
    border-radius: 3px;
    overflow: hidden;
}

/* Hide Radio Buttons */
.accordion-control {
    display: none;
}

/* Accordion Label (Header) */
.accordion-label {
    display: block;
    padding: 18px 20px;
    background: #fff;
    border-bottom: 1px solid #e0e0e0;
    cursor: pointer;
    position: relative;
    font-family: "Open Sans", sans-serif;
	margin:0px;
}

.accordion-label:hover {
    background: #f8f8f8;
}

/* Accordion Title */
.accordion-title {
    font-size: 16px;
    font-weight: 600;
    color: #333;
    display: block;
    padding-right: 40px;
}

/* Accordion Icon (Plus/Minus) */
.accordion-icon {
    position: absolute;
    right: 20px;
    top: 50%;
    transform: translateY(-50%);
    font-size: 24px;
    font-weight: 300;
    line-height: 1;
}

.accordion-icon::before {
    content: '+';
    color: #000;
}

/* Accordion Content */
.accordion-content {
    display: none;
    background: #fff;
}

/* ========== ACCORDION CONTROLS ========== */

/* Show content when corresponding radio is checked */
#accordion-1:checked ~ .accordion-content-1,
#accordion-2:checked ~ .accordion-content-2,
#accordion-3:checked ~ .accordion-content-3,
#accordion-4:checked ~ .accordion-content-4,
#accordion-5:checked ~ .accordion-content-5,
#accordion-6:checked ~ .accordion-content-6 {
    display: block;
    border-bottom: 1px solid #e0e0e0;
}

/* Active label state */
#accordion-1:checked ~ label[for="accordion-1"],
#accordion-2:checked ~ label[for="accordion-2"],
#accordion-3:checked ~ label[for="accordion-3"],
#accordion-4:checked ~ label[for="accordion-4"],
#accordion-5:checked ~ label[for="accordion-5"],
#accordion-6:checked ~ label[for="accordion-6"] {
    background: #284d7f;
  color: #fff;
  border-bottom: 4px solid #099dbf;
}

/* Active title color */
#accordion-1:checked ~ label[for="accordion-1"] .accordion-title,
#accordion-2:checked ~ label[for="accordion-2"] .accordion-title,
#accordion-3:checked ~ label[for="accordion-3"] .accordion-title,
#accordion-4:checked ~ label[for="accordion-4"] .accordion-title,
#accordion-5:checked ~ label[for="accordion-5"] .accordion-title,
#accordion-6:checked ~ label[for="accordion-6"] .accordion-title {
    color: #fff;
}

/* Active icon - change to minus and white color */
#accordion-1:checked ~ label[for="accordion-1"] .accordion-icon::before,
#accordion-2:checked ~ label[for="accordion-2"] .accordion-icon::before,
#accordion-3:checked ~ label[for="accordion-3"] .accordion-icon::before,
#accordion-4:checked ~ label[for="accordion-4"] .accordion-icon::before,
#accordion-5:checked ~ label[for="accordion-5"] .accordion-icon::before,
#accordion-6:checked ~ label[for="accordion-6"] .accordion-icon::before {
    content: '-';
    color: #fff;
}

/* ========== END CONTROLS ========== */

/* Accordion Inner Content */
.accordion-inner {
    padding: 20px;
    font-size: 14px;
    line-height: 1.6;
    color: #333;
    font-family: "Open Sans", sans-serif;
}

.accordion-inner p {
    margin-bottom: 15px;
}

.accordion-inner p:last-child {
    margin-bottom: 0;
}

.accordion-inner ul {
    margin: 15px 0;
    padding-left: 0;
    list-style: none;
}

.accordion-inner ul li {
    margin-bottom: 12px;
    line-height: 1.5;
    padding-left: 2px;
    position: relative;
}

.accordion-inner ul li::before {
   content: '✓';
  position: absolute;
  left: -10px;
  color: #284d7f;
}

.accordion-inner strong {
    color: #1e2865;
    font-weight: 600;
}

.accordion-inner table {
    width: 100%;
    margin: 15px 0;
    border-collapse: collapse;
}

.accordion-inner table th,
.accordion-inner table td {
    padding: 10px;
    border: 1px solid #ddd;
    text-align: left;
}

.accordion-inner table thead tr {
    background: #f5f5f5;
}

/* Last Accordion Item */
.accordion .accordion-label:last-of-type {
    border-bottom: none;
}

/* Preview Info Banner */
.preview-info {
    background: #fff3cd;
    border: 1px solid #ffc107;
    padding: 15px;
    margin-bottom: 20px;
    border-radius: 3px;
    text-align: center;
}

.preview-info strong {
    color: #856404;
}

/* Additional Computer/Laptop Specific Styles */
.specs-table {
    width: 100%;
    margin: 20px 0;
    border-collapse: collapse;
    background: #fff;
    font-size: 14px;
}

.specs-table tr {
    border-bottom: 1px solid #e0e0e0;
}

.specs-table tr:last-child {
    border-bottom: none;
}

.specs-table td {
    padding: 12px 15px;
    font-size: 14px;
    word-wrap: break-word;
    word-break: break-word;
}

.specs-table td:first-child {
    font-weight: 600;
    color: #333;
    width: 40%;
    background: #f8f8f8;
}

.specs-table td:last-child {
    color: #666;
}

.features-grid {
    display: flex;
    flex-wrap: wrap;
    gap: 15px;
    margin: 20px 0;
}
.gpu-icon img
{
	width:30px;
	height:auto;
}
@media (max-width: 279px)
{
	.gpu-icon img
{
	width:20px;
	height:auto;
}
}
.feature-item {
    flex: 1 1 calc(50% - 15px);
    min-width: 200px;
    padding: 15px;
    background: #f9f9f9;
    border-left: 3px solid #1e2865;
    display: flex;
    align-items: center;
    gap: 12px;
}

.feature-item i {
    color: #1e2865;
    font-size: 24px;
    flex-shrink: 0;
}

.feature-item span {
    font-size: 14px;
    color: #333;
    font-weight: 500;
}

.condition-badge {
    display: inline-block;
    padding: 8px 16px;
    background:#284d7f;
    color: #fff;
    border-radius: 4px;
    font-weight: 600;
    font-size: 14px;
    margin: 10px 0;
}

.whats-included {
    background: #f5f5f5;
    padding: 20px;
    border-radius: 5px;
    margin: 20px 0;
}

.whats-included h3 {
    color: #333;
    margin-bottom: 15px;
    font-size: 18px;
}

.whats-included ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.whats-included ul li {
    padding: 8px 0;
    padding-left: 30px;
    position: relative;
    color: #555;
}

.whats-included ul li:before {
    content: "ÃƒÂ¢Ã…â€œÃ¢â‚¬Å“";
    position: absolute;
    left: 0;
    color: #1e2865;
    font-weight: bold;
    font-size: 18px;
}

.warranty-box {
    background: #fff;
    color: #666;
    padding: 20px;
    border-radius: 5px;
    text-align: center;
    margin: 20px 0;
}

.warranty-box h3 {
    color: #666;
    margin-bottom: 10px;
    font-size: 16px;
}

.warranty-box i {
    color: #1e2865;
}

.warranty-box p {
    margin: 0;
    font-size: 14px;
}

.desc-d {
    line-height: 1.8;
}

.desc-d p {
    margin-bottom: 15px;
}

/* Right Sidebar Helpful Links Styling */
.right-content .left-category li a {
    display: flex;
    align-items: center;
    gap: 10px;
}

.right-content .left-category li a i {
    font-size: 16px;
    width: 20px;
}

/* Tablet (768px - 1023px) */
@media (max-width: 1023px) and (min-width: 768px) {
    .accordion-section {
        padding: 30px 0;
    }

    .accordion-label {
        padding: 15px;
    }

    .accordion-title {
        font-size: 16px;
    }

    .accordion-inner {
        padding: 18px;
        font-size: 14px;
    }

    .specs-table td {
        padding: 10px 12px;
        font-size: 13px;
    }

    .feature-item {
        flex: 1 1 100%;
    }
}

/* Mobile (481px - 767px) */
@media (max-width: 767px) and (min-width: 481px) {
    .accordion-section {
        padding: 25px 0;
    }

    .accordion-label {
        padding: 14px 12px;
    }

    .accordion-title {
        font-size: 14px;
        font-family: "open sans", sans-serif;
        font-weight: 600;
    }

    .accordion-icon {
        right: 12px;
        font-size: 20px;
    }

    .accordion-inner {
        padding: 15px;
        font-size: 13px;
    }

    .specs-table {
        font-size: 12px;
    }

    .specs-table td {
        padding: 8px 10px;
        font-size: 12px;
    }

    .specs-table td:first-child {
        width: 35%;
    }

    .feature-item {
        flex: 1 1 100%;
        padding: 12px;
        gap: 10px;
    }

    .feature-item i {
        font-size: 20px;
    }

    .feature-item span {
        font-size: 13px;
    }

    .warranty-box {
        padding: 15px;
    }

    .warranty-box h3 {
        font-size: 15px;
    }

    .warranty-box p {
        font-size: 13px;
    }

    .desc-d {
        line-height: 1.6;
    }
}

/* Small Mobile (321px - 480px) */
@media (max-width: 480px) and (min-width: 321px) {
    .accordion-section {
        padding: 20px 0;
    }

    .accordion-label {
        padding: 12px 10px;
    }

    .accordion-title {
        font-size: 14px;
        line-height: 1.4;
        font-family: "open sans", sans-serif;
        font-weight: 500;
        font-style: normal;
    }

    .accordion-icon {
        right: 10px;
        font-size: 18px;
    }

    .accordion-inner {
        padding: 12px;
        font-size: 12px;
        overflow-x: auto;
    }

    .accordion-inner ul {
        padding-left: 0;
    }

    .accordion-inner ul li {
        font-size: 12px;
        margin-bottom: 10px;
        padding-left: 1px;
    }

    .specs-table {
        font-size: 11px;
        display: block;
        overflow-x: auto;
        -webkit-overflow-scrolling: touch;
    }

    .specs-table tbody {
        display: block;
    }

    .specs-table tr {
        display: flex;
        flex-direction: column;
        border-bottom: 2px solid #e0e0e0;
        margin-bottom: 10px;
        padding-bottom: 10px;
    }

    .specs-table tr:last-child {
        border-bottom: none;
        margin-bottom: 0;
    }

    .specs-table td {
        display: block;
        width: 100% !important;
        padding: 6px 8px;
        font-size: 11px;
        border: none;
    }

    .specs-table td:first-child {
        background: #1e2865;
        color: #fff;
        font-weight: 700;
        border-radius: 3px 3px 0 0;
        margin-bottom: 2px;
    }

    .specs-table td:last-child {
        background: #f9f9f9;
        padding: 8px;
        border-radius: 0 0 3px 3px;
    }

    .features-grid {
        gap: 10px;
        margin: 15px 0;
    }

    .feature-item {
        flex: 1 1 100%;
        padding: 10px;
        gap: 8px;
        min-width: 0;
    }

    .feature-item i {
        font-size: 18px;
    }

    .feature-item span {
        font-size: 11px;
        line-height: 1.3;
    }

    .warranty-box {
        padding: 12px;
    }

    .warranty-box h3 {
        font-size: 13px;
        margin-bottom: 8px;
    }

    .warranty-box p {
        font-size: 11px;
    }

    .condition-badge {
        padding: 6px 12px;
        font-size: 11px;
    }

    .desc-d {
        line-height: 1.5;
    }

    .desc-d p {
        font-size: 12px;
        margin-bottom: 12px;
    }
}

/* Extra Small Mobile / Watch (280px - 320px) */
@media (max-width: 320px) {
    .accordion-section {
        padding: 15px 0;
    }

    .accordion-label {
        padding: 10px 8px;
    }

    .accordion-title {
        font-size: 13px;
        line-height: 1.3;
        font-family: "open sans", sans-serif;
        font-weight: 500;
        padding-right: 30px;
    }

    .accordion-icon {
        right: 8px;
        font-size: 16px;
    }

    .accordion-inner {
        padding: 10px 8px;
        font-size: 11px;
        overflow-x: auto;
    }

    .accordion-inner ul {
        padding-left: 0;
        margin: 10px 0;
    }

    .accordion-inner ul li {
        font-size: 11px;
        margin-bottom: 8px;
        padding-left: 16px;
        line-height: 1.4;
    }

    .accordion-inner ul li::before {
        font-size: 12px;
    }

    .specs-table {
        font-size: 10px;
        display: block;
        overflow-x: auto;
        -webkit-overflow-scrolling: touch;
        margin: 10px 0;
    }

    .specs-table tbody {
        display: block;
    }

    .specs-table tr {
        display: flex;
        flex-direction: column;
        border-bottom: 2px solid #e0e0e0;
        margin-bottom: 12px;
        padding-bottom: 8px;
    }

    .specs-table tr:last-child {
        border-bottom: none;
        margin-bottom: 0;
    }

    .specs-table td {
        display: block;
        width: 100% !important;
        padding: 5px 6px;
        font-size: 10px;
        border: none;
        word-wrap: break-word;
        word-break: break-word;
        hyphens: auto;
    }

    .specs-table td:first-child {
        background: #1e2865;
        color: #fff;
        font-weight: 700;
        border-radius: 3px 3px 0 0;
        margin-bottom: 2px;
        padding: 6px;
    }

    .specs-table td:last-child {
        background: #f9f9f9;
        padding: 6px;
        border-radius: 0 0 3px 3px;
        line-height: 1.5;
    }

    .features-grid {
        gap: 8px;
        margin: 12px 0;
    }

    .feature-item {
        flex: 1 1 100%;
        padding: 8px;
        gap: 6px;
        min-width: 0;
    }

    .feature-item i {
        font-size: 16px;
    }

    .feature-item span {
        font-size: 10px;
        line-height: 1.3;
    }

    .warranty-box {
        padding: 10px;
        margin: 12px 0;
    }

    .warranty-box h3 {
        font-size: 12px;
        margin-bottom: 6px;
    }

    .warranty-box h3 i {
        font-size: 14px;
    }

    .warranty-box p {
        font-size: 10px;
        line-height: 1.4;
    }

    .condition-badge {
        padding: 5px 10px;
        font-size: 10px;
        margin: 8px 0;
    }

    .desc-d {
        line-height: 1.5;
    }

    .desc-d p {
        font-size: 11px;
        margin-bottom: 10px;
        word-wrap: break-word;
        word-break: break-word;
    }

    .whats-included {
        padding: 12px;
        margin: 12px 0;
    }

    .whats-included h3 {
        font-size: 13px;
        margin-bottom: 10px;
    }

    .whats-included ul li {
        font-size: 11px;
        padding: 6px 0 6px 24px;
    }

    .whats-included ul li:before {
        font-size: 14px;
    }
}

/* Ultra Small Devices / Smartwatches (below 280px) */
@media (max-width: 279px) {
    .accordion-section {
        padding: 12px 0;
    }

    .accordion-label {
        padding: 8px 6px;
    }

    .accordion-title {
        font-size: 12px;
        line-height: 1.3;
        font-family: "open sans", sans-serif;
        font-weight: 500;
        padding-right: 28px;
    }

    .accordion-icon {
        right: 6px;
        font-size: 14px;
    }

    .accordion-inner {
        padding: 8px 6px;
        font-size: 10px;
        overflow-x: auto;
    }

    .accordion-inner ul {
        padding-left: 0;
        margin: 8px 0;
    }

    .accordion-inner ul li {
        font-size: 10px;
        margin-bottom: 6px;
        padding-left: 14px;
        line-height: 1.4;
    }

    .accordion-inner ul li::before {
        font-size: 11px;
    }

    .specs-table {
        font-size: 9px;
        display: block;
        margin: 8px 0;
    }

    .specs-table tr {
        margin-bottom: 10px;
        padding-bottom: 6px;
    }

    .specs-table td {
        padding: 4px 5px;
        font-size: 9px;
        line-height: 1.4;
    }

    .specs-table td:first-child {
        padding: 5px;
        font-size: 9px;
    }

    .specs-table td:last-child {
        padding: 5px;
    }

    .features-grid {
        gap: 6px;
        margin: 10px 0;
    }

    .feature-item {
        padding: 6px;
        gap: 5px;
    }

    .feature-item i {
        font-size: 14px;
    }

    .feature-item span {
        font-size: 9px;
        line-height: 1.3;
    }

    .warranty-box {
        padding: 8px;
        margin: 10px 0;
    }

    .warranty-box h3 {
        font-size: 11px;
        margin-bottom: 5px;
    }

    .warranty-box h3 i {
        font-size: 12px;
    }

    .warranty-box p {
        font-size: 9px;
        line-height: 1.4;
    }

    .condition-badge {
        padding: 4px 8px;
        font-size: 9px;
        margin: 6px 0;
    }

    .desc-d p {
        font-size: 10px;
        margin-bottom: 8px;
        line-height: 1.4;
    }

    .whats-included {
        padding: 10px;
        margin: 10px 0;
    }

    .whats-included h3 {
        font-size: 12px;
        margin-bottom: 8px;
    }

    .whats-included ul li {
        font-size: 10px;
        padding: 5px 0 5px 20px;
    }

    .whats-included ul li:before {
        font-size: 12px;
    }
}
.feature-item {
    flex: 1 1 calc(50% - 15px);
    min-width: 200px;
    padding: 15px;
    background: #f9f9f9;
    border-left: 3px solid #1e2865;
    display: flex;
    align-items: center;
    gap: 12px;
}

.gpu-icon {
    display: flex;
    align-items: center;
    gap: 12px;
    width: 100%;
}

.gpu-icon img {
    width:36px;
    height: 24px;
    flex-shrink: 0;
    object-fit: contain;
}

.gpu-icon span {
    font-size: 14px;
    color: #333;
    font-weight: 500;
    white-space: wrap;
    flex: 1;
}

/* Responsive */
@media (max-width: 767px) {
    .gpu-icon img {
        width: 36px;
        height:36px;
    }
    
    .gpu-icon span {
        font-size: 13px;
    }
}

@media (max-width: 480px) {
    .gpu-icon img {
        width: 25px;
        height:25px;
    }
    
    .gpu-icon span {
        font-size: 12px;
        white-space: normal;
    }
}

@media (max-width: 279px) {
    .gpu-icon img {
        width: 26px;
        height: 26px;
    }
    
    .gpu-icon span {
        font-size: 11px;
    }
}
@media (max-width: 480px) and (min-width: 321px) {
	 .gpu-icon span
	{
		font-size:11px;
		line-height: 1.3;
	}
	
}
.main-description
{
	background-color:#224577;
	color:#fff;
	padding:10px;
	font-size:17px;
	font-weight:600;
}
/* feedback section */
.feedback-section {
    max-width: 900px;
    margin: 40px auto;
    padding: 20px;
    background: #fff;
    border-radius: 10px;
    box-shadow: 0 5px 20px rgba(0,0,0,0.08);
}

.feedback-section h2 {
    font-size: 28px;
    margin-bottom: 20px;
}

.feedback-item {
    border-bottom: 1px solid #eee;
    padding: 15px 0;
}

.feedback-item:last-child {
    border-bottom: none;
}

.feedback-text {
    font-size: 15px;
    color: #333;
    margin-bottom: 10px;
    line-height: 1.5;
}

.feedback-footer {
    display: flex;
    align-items: center;
    justify-content: space-between;
    flex-wrap: wrap;
}

.stars {
    color: #f5a623;
    font-size: 16px;
}

.buyer {
    font-size: 13px;
    color: #777;
}

/* Responsive */
@media (max-width: 600px) {
    .feedback-section {
        padding: 15px;
    }

    .feedback-section h2 {
        font-size: 22px;
    }

    .feedback-text {
        font-size: 14px;
    }

    .feedback-footer {
        flex-direction: column;
        align-items: flex-start;
        gap: 5px;
    }
}
.product-details a
{
	text-decoration:none;
	color:#000;
}
.product-details a:hover
{
	color: #0066cc;
	text-decoration:underline;
}

