* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Gill Sans', 'Gill Sans MT', Calibri, 'Trebuchet MS', sans-serif;
}


body {
    overflow-x: hidden;
    padding-top: 170px;
}

.container {
    width: 95%;
    max-width: 1200px;
    margin: 25px auto;
}

.header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 9999;
    background: #fff;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
}

.top-bar {
    background-color: #0b1a4a;
    color: #fbc02d;
    font-size: 13px;
    border: 1px solid #fbc02d;
}



.top-bar-container {
    max-width: 1200px;
    margin: auto;
    padding: 8px 15px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 10px;
}

.top-left span {
    margin-right: 10px;

}

#fredo {
    margin-top: -80px;
}

.top-right a {
    color: #fbc02d;
    text-decoration: none;
    margin-left: 15px;
    font-weight: 500;
}

.top-right a:hover {
    color: #f9a825;
}

.navbar {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
}

.nav-container {
    max-width: 1200px;
    margin: auto;
    padding: 10px;
    display: flex;
    justify-content: space-between;
    gap: 15px;
    flex-wrap: wrap;
}


.nav-search {
    flex: 1;
    display: flex;
    max-width: 500px;
}

.nav-search input {
    flex: 1;
    padding: 10px;
    border: 1px solid #f9a825;
    border-right: none;
    outline: none;
    border-radius: 15px 0 0 15px;
}

#grave {
    padding: 10px 15px;
    border: 1px solid #f9a825;
    color: #0b1a4a;
    cursor: pointer;
    border-radius: 0 15px 15px 0;
}
#gla{
    color: #f9a825;
    font-size:18px;
}


#glav{
    color: #f5a623;
    border-radius: none;
    margin-left: 10px;
    display:none;
}




.main-navbar {
    background: #fff;
    border-bottom: 1px solid #fbc02d;
    z-index: 0;
}

.nav-icons {
    display: flex;
    align-items: center;
    gap: 15px;
}



.nav-icons a {
    font-size: 18px;
    color: #0b1a4a;
    text-decoration: none;
    position: relative;
}


.count {
    position: absolute;
    top: -5px;
    right: -8px;
    background-color: #f9a825;
    color: #0b1a4a;
    font-size: 10px;
    padding: 2px 5px;
    border-radius: 50%;
}

.profile-dropdown{
    position: relative;
    display: inline-block;
}

.profile-icon{
    font-size:20px;
    cursor:pointer;
    padding:8px 10px;
    display:flex;
    align-items:center;
    justify-content:center;
}

.profile-menu{
    position: absolute;
    top: 35px;
    right: 0;
    background:#0b1a4a;
    width:180px;
    border-radius:6px;
    border:1px solid #eee;
    box-shadow:0 10px 25px rgba(0,0,0,0.15);
    display:none;
    z-index:3000;
}

.profile-dropdown:hover .profile-menu{
    display:block;
}

.profile-menu a,
.profile-menu span{
    display:block;
    padding:12px 15px;
    text-decoration:none;
    color:#f5a623;
    font-size:14px;
}

.profile-menu a:hover{
    background:#f5a623;
    color:#0b1a4a;
}

.welcome{
    font-weight:bold;
    border-bottom:1px solid rgba(255,255,255,0.2);
}

.welcome:hover{
    color: #0f1f4d;
    font-size: 15px;
    padding: 12px 15px;



}





/* end of menu bar */

/* startDropdown */
.category-bar {
    background: #fff;
    box-shadow: 0 4px 15px rgba(249, 168, 37, 0.6);
    position: relative;
    z-index: 10000;
}

.category-container {
    display: flex;
    gap: 15px;
    padding: 10px;
    overflow-x: auto;   
    white-space: nowrap;
    scroll-behavior: smooth;
}


.category-container::-webkit-scrollbar {
    height: 6px;
}
.category-container::-webkit-scrollbar-thumb {
    background: #ccc;
    border-radius: 10px;
}

/* BUTTON STYLE */
.dropbtn {
    background: #0b1a4a;
    color: #fbc02d;
    border: none;
    padding: 10px 16px;
    font-weight: bold;
    cursor: pointer;
    border-radius: 4px;
    flex: 0 0 auto; 
}
.dropbtn a{
    color: #ddd;
    text-decoration: none;
    font-size: 16px;
}




.slider {
    position: relative;
    width: 80%;
    height: 420px;
    overflow: hidden;
    margin-top: 20px;
    margin-left: 10%;
    z-index: 0;
}

.slides {
    width: 100%;
    height: 100%;
    position: relative;
}

.slide {
    position: absolute;
    width: 100%;
    height: 100%;
    opacity: 0;
    transition: 0.8s ease-in-out;
}

.slide.active {
    opacity: 1;
}

.slide img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

/* Overlay content */
.slide-content {
    position: absolute;
    top: 50%;
    left: 80px;
    transform: translateY(-50%);
    color: #f9a825;
    max-width: 450px;
}

.slide-content h2 {
    font-size: 38px;
    margin-bottom: 10px;
}

.slide-content p {
    font-size: 18px;
    margin-bottom: 20px;
}

.slide-content a {
    background: #0b1a4a;
    color: #f9a825;
    padding: 12px 24px;
    text-decoration: none;
    font-weight: bold;
    border-radius: 4px;
}

/* Arrows */
.prev,
.next {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    font-size: 18px;
    color: #fff;
    padding: 10px;
    cursor: pointer;
    background: rgba(0, 0, 0, 0.4);
    border-radius: 50%;
}

.prev {
    left: 20px;
}

.next {
    right: 20px;
}

.prev:hover,
.next:hover {
    background: rgba(0, 0, 0, 0.7);
}









.features {
    display: flex;
    justify-content: space-between;
    gap: 20px;
    padding: 40px 60px;
    background: #fff;
}

.feature-box {
    flex: 1;
    text-align: center;
    padding: 25px 15px;
    border: 1px solid #f9a825;
    border-radius: 6px;
    transition: 0.3s ease;
}

.feature-box i {
    font-size: 34px;
    color: #f9a825;
    margin-bottom: 15px;
}

.feature-box h4 {
    font-size: 16px;
    margin-bottom: 8px;
    color: #0b1a4a;
}

.feature-box p {
    font-size: 14px;
    color: #0b1a4a;
}

.feature-box:hover {
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.08);
    transform: translateY(-4px);
}


.hot-deals {
    display: flex;
    gap: 20px;
    padding: 40px 60px;
}


.deal-car {
    position: relative;
    flex: 1;
    height: 420px;
    border-radius: 6px;
    overflow: hidden;
    width: 100%;
}

.deal-car iframe{
    width: 75%;
    height: 100%;
    transition: transform 0.4s ease;
}

.deal-card {
    position: relative;
    flex: 1;
    height: 220px;
    border-radius: 6px;
    overflow: hidden;
}

.deal-card img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.4s ease;
}

/* Overlay */
.deal-content {
    position: absolute;
    inset: 0;
    background: rgba(0, 0, 0, 0.45);
    color: #fff;
    display: flex;
    flex-direction: column;
    justify-content: center;
    padding-left: 40px;
}

.deal-content h3 {
    font-size: 26px;
    margin-bottom: 10px;
    color: #f9a825;
}

.deal-content p {
    font-size: 16px;
    margin-bottom: 18px;
    color: #f9a825;
}

.deal-content a {
    width: fit-content;
    background: #0b1a4a;
    color: #f9a825;
    padding: 10px 22px;
    text-decoration: none;
    font-weight: bold;
    border-radius: 4px;
}

.deal-card:hover img {
    transform: scale(1.05);
}









/* chatwithus */

.wa-container {
  position: fixed;
  bottom: 20px;
  right: 20px;
  z-index: 999999; 
}

.wa-float {
  width: 60px;
  height: 60px;
  border-radius: 50%;
  background: #f9a825;
  color: white;
  border: none;
  font-size: 26px;
  cursor: pointer;
  box-shadow: 0 10px 25px rgba(0,0,0,0.25);
  display: flex;
  align-items: center;
  justify-content: center;
}

.wa-chat-box {
  position: absolute;
  bottom: 75px;
  right: 0;
  width: 280px;
  background: #fff;
  border-radius: 12px;
  box-shadow: 0 10px 30px rgba(0,0,0,0.2);
  display: none;
  overflow: hidden;
}

.wa-header {
  background: #f9a825;
  color: white;
  padding: 10px;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.wa-close {
  cursor: pointer;
}


.wa-body {
  padding: 12px;
}


.wa-btn {
  display: block;
  margin-top: 10px;
  padding: 10px;
  text-align: center;
  background: #f9a825;
  color: white;
  text-decoration: none;
  border-radius: 8px;
}

/* end of chat with us */




/* section {
    margin: 40px 0;
}




img {
    max-width: 100%;
    display: block;
}

.grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: 20px;
} */




.products-section {
    padding: 40px;
    background: #f9f9f9;
}

.section-title {
    font-size: 25px;
    margin-bottom: 25px;
    margin-top: 25px;
    font-weight: bold;
    text-align: center;
    color: #0b1a4a;

}

.section-title a {
    text-decoration: none;
    background-color: #0b1a4a;
    color: #f9a825;
    padding: 6px 10px;
    border-radius: 4px;
}

.products-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
   
    
    
}


.products-grid .product-card {
    background: #fff;
    border-radius: 10px;
    padding: 10px;
    text-align: center;
    transition: 0.3s;
}




.relatedly-card {
    width: 100%;
    height: 200px;
    background: #fff;

    display: flex;
    align-items: center;
    justify-content: center;

    overflow: hidden;
    padding: 10px;
    border-radius: 8px;
}

.relatedly-card img {
    width: 100%;
    height: 100%;
    object-fit: contain;
}


.product-card h4 {
    font-size: 15px;
    margin-bottom: 10px;
    color: #0b1a4a;
}

.product-card p {
    color: #0b1a4a;
}

.price {
    margin-bottom: 12px;
}

.price .new {
    color: #f9a825;
    font-weight: bold;
}

.price .old {
    color: #999;
    text-decoration: line-through;
    font-size: 13px;
    margin-left: 6px;
}

.product-card button {
    color: #f9a825;
    border: 1px solid #f9a825;
    padding: 10px 18px;
    cursor: pointer;
    border-radius: 4px;
    font-weight: bold;
    margin-bottom: 4px;
}

.product-card button:hover {
    color: #0b1a4a;
    border: 1px solid #0b1a4a;
}

#view {
    background: #0b1a4a;
    color: #f9a825;
    border: none;
    padding: 10px 18px;
    cursor: pointer;
    border-radius: 4px;
    font-weight: bold;
    margin-bottom: 4px;
}

#view:hover {
    background: #f9a825;
    color: #0b1a4a;
    transition: transform 0.4s ease;
}

#buy {
    background: #f9a825;
    color: #0b1a4a;
    border: none;
    padding: 10px 18px;
    cursor: pointer;
    border-radius: 4px;
    font-weight: bold;
    margin-bottom: 4px;
}

#buy:hover {
    background: #0b1a4a;
    color: #fbc02d;
    transition: transform 0.4s ease;
}


.product-card:hover {
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.1);
    transform: translateY(-5px);
}








.footer {
    background: #0b1a4a;
    color: #f9a825;
}

.footer-container {
    max-width: 1200px;
    margin: auto;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: 20px;
    padding: 50px 20px;
}


.footer-colins {
    padding: 40px 50px;
}

.footer-colins p {
    font-size: 14px;
    line-height: 1.4;
}



.footer-col h4 {
    color: #f9a825;
    margin-bottom: 18px;
    font-size: 16px;
}

.footer-col p {
    font-size: 14px;
    line-height: 1.6;
}

.footer-col ul {
    list-style: none;

}

.footer-col ul li {
    margin-bottom: 10px;
}

.footer-col ul li a {
    color: #f9a825;
    text-decoration: none;
    font-size: 14px;
}

.footer-col ul li a:hover {
    color: #f9a775;
}



.footer-social a {
    display: inline-block;
    margin-right: 8px;
    color: #0b1a4a;
    background: #f9a825;
    padding: 7px;
    border-radius: 50%;
    font-size: 18px;
    transition:0.3s;
}

.footer-social a:hover {
    background: #0b1a4a;
    color: #f9a825;
}


.footer-col i {
    margin-right: 8px;
    color: #fbc02d;
}

.footer-col img {
    height: 160px;
    width: 200px;
}


.footer-bottom {
    background: #000;
    text-align: center;
    padding: 15px 0;
    font-size: 13px;
    color: #aaa;
}







.breadcrumb {
    padding: 20px 60px;
    font-size: 25px;
    font-family: 'Gill Sans', 'Gill Sans MT', Calibri, 'Trebuchet MS', sans-serif;
    color: #0b1a4a;
}

.breadcrumb a {
    color: #f5a623;
    text-decoration: none;
}



.product-detail-page {
    display: flex;
    gap: 40px;
    padding: 20px;
    background: #0b1a4a;
}


.product-slider {
    position: relative;
    max-width: 500px;
    width: 100%;
    overflow: hidden;
    cursor: grab;
    border-radius: 10px;
    border: 2px solid #f5a623;
    height:500px;
}
.product-slider:active {
    cursor: grabbing;
}

/* TRACK */
.slider-track {
    display: flex;
    transition: transform 0.4s ease;
     touch-action: pan-y;
}
.sli{
    min-width: 100%;
    object-fit: contain;
    height: 350px;
    background: #fff;
    user-select: none;
    -webkit-user-drag: none;
    height:450px;


}

/* ARROWS */
.nav {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background: rgba(0,0,0,0.4);
    color: #fff;
    border: none;
    padding: 10px 14px;
    cursor: pointer;
    border-radius: 50%;
    z-index: 10;
}

.prev { left: 10px; }
.next { right: 10px; }


/* DOTS */
.dots {
    text-align: center;
    margin-top: 10px;
}

.dot {
    display: inline-block;
    width: 8px;
    height: 8px;
    margin: 5px;
    background: #ccc;
    border-radius: 50%;
    cursor: pointer;
}

.dot.active {
    background: #f5a623;
} 

/* INFO */

.product-infoo h1 {
    margin-bottom: 10px;
    color: #f5a623;
}

.rating {
    color: #f5a623;
    margin-bottom: 15px;
}

.rating span {
    color: #666;
    font-size: 13px;
}

.deta {
    color: #f5a623;
    line-height: 1.5;
    margin-bottom: 20px;
}


.price-box {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 15px;
}

.new-price {
    font-size: 26px;
    font-weight: bold;
    color: #f5a623;
}

.old-price {
    text-decoration: line-through;
    color: #999;
}

.discount {
    background: red;
    color: #fff;
    padding: 3px 6px;
    font-size: 12px;
    border-radius: 2px;
}

.short-desc {
    color: #999;
}



.stock.in {
    color: #f5a623;
    margin-bottom: 20px;
    text-decoration: none;
    font-weight: 900;
}


.product-specs {
    margin-top: 30px;
}

.product-specs h3 {
    margin-bottom: 15px;
    font-size: 18px;
    border-bottom: 2px solid #f9a825;
    color: #f9a775;
    display: inline-block;
    padding-bottom: 5px;
}

.product-specs table {
    width: 100%;
    border-collapse: collapse;
    background: #0b1a4a;
    color:#f9a825;
}

.product-specs td {
    padding: 12px;
    border-bottom: 2px solid #eee;
    font-size: 14px;
    color: #f5a623;
}

.product-specs td:first-child {
    font-weight: 700;
    width: 30%;
    background: #0b1a4a;
    font-size: 17px;
}


.qty-wrapper {
    margin: 20px 0;
    
}
#hustler{
    background-color:  #f5a623;
    padding: 3px 10px;
    margin-left: 2px;
    width: 100px;
    height: 40px;
    border-radius: 3px;
    color: #0f1f50;
}

#energy{
    width: 100%;
}


.qty-box {
    display: flex;
    align-items: center;
    border: 1px solid #f5a623;
    width: 100%;
    border-radius: 4px;
    overflow: hidden;
    flex-wrap: wrap;
    gap: 10px;
}

.qty-box input {
    width: 60px;
    height: 35px;
    color: #f5a623;
    text-align: center;
    border: none;
    font-size: 15px;
    font-weight: 600;
    outline: none;
    border-radius: 2px;
    margin-left: 2px;
}

.qty-box button {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background-color: #f5a623;
    border: none;
    font-size: 15px;
    color: #0b1a4a;
    margin: 5px ;
}

.viewme {
    padding:8px 15px;
    border-radius: 5px;
    cursor: pointer;
    transition: 0.2s;
}

.viewme:hover {
    font-size: 13.5px;
}

.qty-boxy {
    display: inline-flex;
    align-items: center;
    background-color: #f5a623;
    height: 50px;
    width: 100%;
    border-radius: 4px;
    overflow: hidden;
    margin-top: 5px;
}

.qty-boxy h2 {
    color: #0b1a4a;
    font-weight: 500;
    margin-left: 40px;
}

.qty-boxy h2 span {
    font-weight: 700;
}


.product-tabs {
    padding: 30px 50px;
}

.tab-buttons button {
    padding: 12px 35px;
    border: none;
    font-size: 20px;
    background: #eee;
    cursor: pointer;
    margin-bottom: 20px;
    color: #0b1a4a;
}

.tab-buttons .active {
    background: #0b1a4a;
    color: #f5a623;
}

.tab-content {
    margin-top: 20px;
    line-height: 1.6;
}

.tab-content p {
    color: #152a6e;
    font-size: 20px;

}





.related-products h3 {
    margin-bottom: 20px;
    font-size: 25px;
    margin-left: 45px;
    font-family: 'Gill Sans', 'Gill Sans MT', Calibri, 'Trebuchet MS', sans-serif;
    color: #0b1a4a;
    margin-bottom: 30px;
}

.related-grid {
    display: grid;
   grid-template-columns: repeat(4,1fr);
    gap: 20px;
    margin-bottom: 40px;
    margin-left: 10px;
}

.related-card {
    background: #fff;
    border: 1px solid #f9a825;
    border-radius:6px;
    padding: 15px;
    text-align: center;
    transition: 0.3s;
    cursor: pointer;
}

.related-card img {
    width: 100%;
    height: 150px;
    object-fit: contain;
}

.related-card h4 {
    font-size: 14px;
    margin: 10px 0;
    color: #0b1a4a;
}

.related-card p {
    color: #f5a623;
    font-weight: bold;
    margin-bottom: 10px;
}

.related-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.1);
}









/* loginform */




.auth-page {
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    background: #f5f5f5;
    margin-top: -180px;
}

.auth-box {
    background: #fff;
    padding: 30px;
    width: 380px;
    border-radius: 6px;
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.1);
}

.auth-box h2 {
    text-align: center;
    margin-bottom: 5px;
    color: #0b1a4a;
}

.auth-sub {
    text-align: center;
    font-size: 14px;
    color: #152a6e;
    margin-bottom: 25px;
}

.form-group {
    margin-bottom: 15px;
}

.form-group label {
    display: block;
    font-size: 13px;
    margin-bottom: 5px;
    font-weight: 600;
    color: #152a6e;
}

.form-group input {
    width: 100%;
    padding: 10px;
    border: 1px solid #152a6e;
    border-radius: 4px;
    outline: none;
}

.form-group input:focus {
    border-color: #0b1a4a;
}

.auth-btn {
    width: 100%;
    padding: 12px;
    border: none;
    background: #f5a623;
    color: #0b1a4a;
    font-weight: bold;
    cursor: pointer;
    margin-top: 10px;
    border-radius: 4px;
}

.auth-btn:hover {
    background: #f9a775;
}

.auth-links {
    margin-top: 15px;
    display: flex;
    justify-content: space-between;
    font-size: 13px;
}

.auth-links a {
    color: #f5a623;
    text-decoration: none;
}

.auth-links.center {
    justify-content: center;
}

.terms-box {
    margin: 15px 0;
    font-size: 13px;
}

.terms-box label {
    display: flex;
    align-items: center;
    gap: 8px;
    cursor: pointer;
}

.terms-box input[type="checkbox"] {
    width: 16px;
    height: 16px;
    cursor: pointer;
}

.terms-box a {
    color: #f5a623;
    text-decoration: none;
    font-weight: 600;
}

.terms-box a:hover {
    text-decoration: underline;
}








/*startofcheckout*/

.checkout-wrapper{
    max-width:1300px;
    margin:auto;
    padding:40px 20px;
    display:grid;
    grid-template-columns:2fr 1fr;
    gap:30px;
}

.checkout-header{
    margin-bottom:25px;
}

.checkout-header h1{
    font-size:34px;
    margin-bottom:10px;
    color:#fbc02d;
}

.checkout-header p{
    color:#777;
}

.checkout-card{
    background: #0b1a4a;
    padding:25px;
    border-radius:14px;
    margin-bottom:25px;
    box-shadow:0 2px 10px rgba(0,0,0,0.05);
}

.checkout-card h2{
    margin-bottom:20px;
    font-size:22px;
     color:#fbc02d;
}

.grid-2{
    display:grid;
    grid-template-columns:1fr 1fr;
    gap:20px;
}

.form-group{
    margin-bottom:20px;
}

.form-group label{
    display:block;
    margin-bottom:8px;
    font-weight:600;
     color:#fbc02d;
}

.form-group input,
.form-group select{
    width:100%;
    padding:14px;
    border:1px solid #fbc02d;
    border-radius:7px;
    font-size:15px;
    transition:0.3s;
}

.form-group input:focus,
.form-group select:focus{
    border-color:#000;
    outline:none;
}

.payment-options{
    display:flex;
    flex-direction:column;
    gap:15px;
     color:#fbc02d;
}



.checkout-btn{
    width:100%;
    padding:18px;
    border:none;
    background: #fbc02d;
    color: #0b1a4a;
    font-size:17px;
    border-radius:12px;
    cursor:pointer;
    transition:0.3s;
}

.checkout-btn:hover{
    opacity:0.9;
     color:#fbc02d;
}

.summary-card{
    background: #0b1a4a;
    padding:25px;
    border-radius:14px;
    position:sticky;
    top:30px;
    box-shadow:0 2px 10px rgba(0,0,0,0.05);
}

.summary-card h2{
    margin-bottom:25px;
     color:#fbc02d;
}

.summary-row,
.summary-total{
    display:flex;
    justify-content:space-between;
    margin-bottom:18px;
     color:#fbc02d;
}

.summary-total{
    font-size:20px;
    font-weight:bold;
     color:#fbc02d;
}









/* CART ITEMS */

.cart-items{
    margin-bottom:25px;
}

.cart-item{
    display:flex;
    align-items:center;
    gap:15px;
    margin-bottom:20px;
}

.cart-image{
    position:relative;
    width:70px;
    height:70px;
    min-width:70px;
}

.cart-image img{
    width:100%;
    height:100%;
    object-fit:cover;
    border-radius:10px;
    border:1px solid #eee;
}

.qty-badge{
    position:absolute;
    top:-8px;
    right:-8px;
    background:#000;
    color:#fff;
    width:22px;
    height:22px;
    border-radius:50%;
    display:flex;
    justify-content:center;
    align-items:center;
    font-size:12px;
    font-weight:bold;
}

.cart-info{
    flex:1;
}

.cart-info h4{
    font-size:15px;
    margin-bottom:6px;
     color:#fbc02d;
}

.cart-info p{
    color:#666;
    font-size:14px;
     color:#fbc02d;
}

.cart-price{
    font-weight:bold;
    font-size:15px;
     color:#fbc02d;
}

/*endofcheckout*/









/* cart */
.cart-container {
    width: 95%;
    margin: auto;
    padding: 20px 0;
}

.cart-container h2 {
    text-align: center;
    margin-bottom: 30px;
    color: #152a6e;
    font-size: 30px;
}

.cart-content {
    display: flex;
    gap: 20px;
}

/* LEFT SIDE */

.cart-left {
    width: 70%;
}

.cart-table {
    width: 100%;
    overflow-x: auto;
}


table {
    width: 100%;
    border-collapse: collapse;
    background: #fff;

}

table th {
    background: #152a6e;
    color: white;
    padding: 12px;
}

table td {
    padding: 15px;
    border-bottom: 1px solid #ddd;
    color: #f5a623;
}

table td i {
    color: #f5a623 ;
    cursor: pointer;
}

.product-info {
    display: flex;
    align-items: center;
    gap: 10px;
}

.product-info img {
    width: 50px;
    height: 50px;
    object-fit: cover;
}

/* QUANTITY */

.qty-box {
    display: flex;
    align-items: center;
    gap: 5px;
    width: 150px;
}

.qty-box button {
    padding: 5px 10px;
    border: none;
    background: #152a6e;
    color: white;
    cursor: pointer;
}

.qty-box input {
    width: 30px;
    text-align: center;
}

/* RIGHT SIDE */

.cart-right {
    width: 30%;
    background: #f5f5f5;
    padding: 20px;
    border-radius: 6px;
    height: fit-content;
}

.cart-right h3 {
    margin-bottom: 20px;
    color: #152a6e;
}

.cart-row {
    display: flex;
    justify-content: space-between;
    margin-bottom: 15px;
    color: #f5a623;
}

.total {
    font-weight: bold;
    font-size: 18px;
    color: #152a6e;
}

.checkout-btn {
    display: block;
    background: #f5a623;
    color: #152a6e;
    text-align: center;
    padding: 12px;
    margin-top: 20px;
    text-decoration: none;
    font-weight: bold;
    border-radius: 4px;
}





/* wishlist */
.wishlist-container {

    width: 90%;
    margin: auto;

}

.add-cart-btn i {
    color: white;
}

.wishlist-container h2 {

    text-align: center;
    margin-bottom: 20px;
    color: #152a6e;

}

.wishlist-product {

    display: flex;
    align-items: center;
    gap: 15px;

}

.wishlist-product img {

    width: 60px;
    height: 60px;
    object-fit: cover;

}

.add-cart-btn {

    background: #152a6e;
    color: white;
    border: none;
    padding: 8px 15px;
    cursor: pointer;
    border-radius: 4px;

}

.remove {

    color: red;
    cursor: pointer;

}

tbody {
    text-align: center;
}

tbody button {
    padding: 7px 21px;
    background-color: darkgreen;
    color: white;
    border: none;
    border-radius: 2px;
}





.dcart{
    background-color: green;
}
.dremove{
    background-color: red;
}







/* account */
.account-container {

    width: 95%;
    margin: auto;
    padding: 40px 0;
    margin-top: -25px;

}

.account-container h2 {

    text-align: center;
    margin-bottom: 20px;
    color: #152a6e;
    font-size: 40px;


}

.account-content {

    display: flex;
    gap: 30px;

}

/* SIDEBAR */

.account-sidebar {

    width: 25%;
    background: #f5f5f5;
    padding: 20px;
    border-radius: 6px;

}

.account-sidebar ul {

    list-style: none;

}

.account-sidebar li {

    padding: 12px;
    margin-bottom: 10px;
    cursor: pointer;
    border-radius: 4px;

}

.account-sidebar a {
    text-decoration: none;
    color: #000;
}

.account-sidebar li:hover {

    background: #152a6e;
    color: white;

}

.account-sidebar .active {

    background: #152a6e;
    color: white;

}

/* MAIN CONTENT */

.account-main {

    width: 75%;

}

.account-main h3 {

    margin-bottom: 20px;
    color: #152a6e;

}

/* CARDS */

.account-boxes {

    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;

}

.account-boxes a {
    text-decoration: none;
    color: #000;
}

.account-card {

    background: #f5f5f5;
    padding: 25px;
    border-radius: 6px;
    text-align: center;
    cursor: pointer;

}

.account-card i {

    font-size: 30px;
    color: #f5a623;
    margin-bottom: 10px;

}

.account-card:hover {

    background: #152a6e;
    color: white;

}


button {
    background: #152a6e;
    color: #fff;
    border: none;
    padding: 10px 15px;
    border-radius: 5px;
    cursor: pointer;
    transition: 0.3s;
}

button:hover {
    background: #0f1f4d;
}






/* success */
.success-container {

    display: flex;
    justify-content: center;
    align-items: center;
    height: 80vh;

}

.success-box {

    background: #f5f5f5;
    padding: 40px;
    text-align: center;
    border-radius: 8px;
    width: 400px;

}

.success-box i {

    font-size: 70px;
    color: green;
    margin-bottom: 20px;

}

.success-box h2 {

    color: #152a6e;
    margin-bottom: 10px;

}

.success-box p {

    color: #666;
    margin-bottom: 20px;

}

.success-box h3 {

    color: #f5a623;
    margin-bottom: 30px;

}

.continue-btn {

    display: block;
    background: #152a6e;
    color: white;
    padding: 12px;
    margin-bottom: 10px;
    text-decoration: none;
    border-radius: 4px;

}

.order-btn {

    display: block;
    background: #f5a623;
    color: #152a6e;
    padding: 12px;
    text-decoration: none;
    border-radius: 4px;

}








.breadcrumbj {
    padding: 20px 60px;
    font-size: 25px;
    font-family: 'Gill Sans', 'Gill Sans MT', Calibri, 'Trebuchet MS', sans-serif;
    color: #0b1a4a;
}

.breadcrumbj a {
    color: #f5a623;
    text-decoration: none;
}



.category-page {

    width: 95%;
    margin: auto;
    padding: 40px 0;

}

.category-page h2 {

    margin-bottom: 20px;
    color: #152a6e;

}

.category-body {

    display: flex;
    justify-content: space-between;
    gap: 20px;

}


.category-sidebar {

    width: 250px;
    background: #f5f5f5;
    padding: 20px;
    border-radius: 6px;

}

.category-sidebar h3 {

    margin-bottom: 15px;
    color: #152a6e;

}

.category-sidebar h4 {

    margin-top: 15px;
    margin-bottom: 10px;

}

.category-sidebar label {

    display: block;
    margin-bottom: 6px;
    cursor: pointer;

}


.category-products {

    
    flex: 1;
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;

}



.product-card {

    background: #fff;
    border: 1px solid #eee;
    padding: 15px;
    border-radius: 6px;
    text-align: center;
    position: relative;
    transition: 0.3s;


}


.product-card:hover {
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
}


.product-card img {

    width: 100%;
    height: 100%;
    object-fit: contain;

}

.product-card h4 {

    margin: 10px 0;

}

.price {

    color: #f5a623;
    font-weight: bold;
     margin: 10px 0;

}

.badge {

    position: absolute;
    top: 10px;
    left: 10px;
    background: red;
    color: white;
    padding: 4px 8px;
    font-size: 12px;
    border-radius: 4px;

}

.product-icons {

    margin-bottom: 10px;
}

.product-icons i {

    cursor: pointer;
      margin: 0 5px;
    cursor: pointer;
    color: #555;


}

.view-btn {

    display: inline-block;
    background: #152a6e;
    color: #f5a623;
    padding: 8px 15px;
    text-decoration: none;
    border-radius: 4px;

}

#cco {
    color: #f5a623;
}


/* alll statics */
.static-container {
    width: 90%;
    max-width: 900px;
    margin: auto;
    padding: 40px 20px;
    line-height: 1.7;
    margin-top: -120px;
}

.static-container h1 {
    color: #152a6e;
    margin-bottom: 20px;
    margin-top: 70px;
}

.static-container h2 {
    margin-top: 25px;
    color: #f5a623;
}

.contact-form {
    display: flex;
    flex-direction: column;
    gap: 10px;
    margin-top: 20px;
}

.contact-form input,
.contact-form textarea {
    padding: 10px;
    border: 1px solid #ddd;
    border-radius: 4px;
}

.contact-form button {
    background: #152a6e;
    color: white;
    padding: 10px;
    border: none;
    cursor: pointer;
    border-radius: 4px;
}




.search-container {

    width: 90%;
    margin: auto;
    padding: 40px 0;

}

.search-container h2 {

    margin-bottom: 30px;
    color: #152a6e;

}

.search-grid {

    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;

}

.product-card {

    background: white;
    border: 1px solid #eee;
    padding: 15px;
    text-align: center;
    border-radius: 6px;
    transition: 0.3s;

}

.product-card:hover {

    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);

}

.product-card img {

    width: 100%;
    height: 180px;
    object-fit: cover;

}

.price {

    color: #f5a623;
    font-weight: bold;
    margin: 10px 0;

}
#proc{
    color: #152a6e;
}

.view-btn {

    display: inline-block;
    background: #152a6e;
    color: white;
    padding: 8px 15px;
    text-decoration: none;
    border-radius: 4px;

}



.track-container {

    width: 500px;
    margin: 60px auto;
    text-align: center;

}

.track-box {

    background: #f5f5f5;
    padding: 25px;
    border-radius: 6px;
    margin-top: 20px;

}

.track-box input {

    width: 90%;
    padding: 10px;
    margin-bottom: 10px;
    border: 1px solid #ddd;
    border-radius: 4px;

}

.track-box button {

    width: 90%;
    padding: 10px;
    background: #152a6e;
    color: white;
    border: none;
    border-radius: 4px;
    cursor: pointer;

}

.order-status {

    margin-top: 40px;

}

.status-steps {
 
    width: 100%;
    display: flex;
    margin-top: 20px;


}

.step {

    padding: 10px 15px;
    background: #ddd;
    border-radius: 4px;
    margin-left: 6px;

}

.step.active {

    background: #f5a623;
    color: white;

}







.quantity{
    display:flex;
    align-items:center;
}

.quantity input{
    width:60px;
    text-align:center;
}









@media (max-width:992px) {

    .nav-search {
        max-width: 100%;
    }

    .category-container {
        gap: 15px;
    }
    
     .products-grid {
        grid-template-columns: repeat(3, 1fr);
    }

}
@media (max-width: 576px) {
    .product-card {
        padding: 8px;
    }
     .products-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 10px;
    }
     .product-card h4 {
        font-size: 13px;
    }
    
    .relatedly-card{
        height: 160px;
        padding: 10px;
    }

    .relatedly-card img{
        object-fit: contain;
    }

}

/* MOBILE */
@media (max-width:768px) {

    body {
        padding-top: 180px;
    }

    .top-bar-container {
        flex-direction: column;
        text-align: center;
    }

    .nav-container {
        flex-direction: column;
        align-items: stretch;
    }

    .nav-search {
        width: 100%;
    }

    .nav-icons {
        justify-content: center;
    }
    tbody button span{
        display: none;
    }
    .category-body{
       display: block;
    }

     .category-sidebar{
        width: 100%;
        text-align: center;

    }
     .products-grid {
        grid-template-columns: repeat(2, 1fr);
        width:100;
    }
    
    .products-grid .product-card {
        padding: 5px;
       
    }

    .product-card h4 {
        font-size: 13px;
    }

    .product-card p {
        font-size: 12px;
    }

    
    .product-card a button {
        width: 90%;
        margin-bottom: 6px;
        font-size: 12px;
        padding: 8px;
    }
    
    #view{
        width:90%;
    }
}

    
    .category-products {

    grid-template-columns: repeat(1, 1fr);
    width: 100%;

    }

        .checkout-container{
        margin-top: 100px;
    }


    
     .cart-container{
        margin-top: 80px;
        width: 100%;
        
     }
     .cart-content{
        flex-direction:column;
    }
    .cart-table{
        width: 100%;
    }
    table{
        width: 100%;

    }
    table th {
    
    padding: 8px;
   }
   
table td {
    padding: 10px;
     width: 33px;
    font-size: 13px;
}

.auth-box{

    margin-top: 0px;
    border: 1px solid #f5a623;
}

.qty-box {
    display: block;
    width: 135px;
}

.qty-box button {
    padding: 5px ;
}

.qty-box input {
    width: 22px;
}

    .cart-left,
    .cart-right{
        width:100%;
    }
    
    .product-info {
    display: block;
    font-size: 13px;
    
}

.product-info img {
    width: 30px;
    height: 30px;
    object-fit: cover;
}
#t-pain{
    width: 370px;
      width:100%;
    max-width:370px;
}

 .products-section {
        padding: 20px 10px;
    }
 .section-title {
        font-size: 20px;
    }    
 .product-card:hover {
        transform: none;
    }    

}




/* SMALL MOBILE */
@media (max-width:480px) {

    .top-left span {
        display: block;
    }

    .nav-search input {
        padding: 8px;
    }

    .nav-search button {
        padding: 8px 12px;
    }

}



@media (max-width:768px) {

    .slider {
        margin-top: 100px;
        width: 100%;
        margin-left: 0;
        height: 260px;
    }

    .slide-content {
        left: 20px;
        max-width: 250px;
    }

    .slide-content h2 {
        font-size: 22px;
    }

    .slide-content p {
        font-size: 14px;
    }

}



@media (max-width:768px) {

    .features {
        flex-direction: column;
        padding: 30px 20px;
    }

    .hot-deals {
        flex-direction: column;
        padding: 30px 20px;
    }
    .deal-car{
        width:100%;
    }
    

   
     .deal-car iframe{
    width: 100%;
    height: 400px;

   
    }

}






@media(max-width:768px){

.footer-container{
grid-template-columns:1fr;
text-align:center;
}

.footer-social{
justify-content:center;
}

.footer-col img{
margin:auto;
}

}



@media (max-width: 992px){

.product-detail-page{
flex-direction:column;
}

.product-images{
width:100%;
}

.related-grid{
grid-template-columns:repeat(3,1fr);
}
.success-container{
    margin-top: 100px;
}

.check {
    display: block;
}
.check .checkout-right{
    width: 100%;
}

}



@media (max-width:600px){

.related-grid{
grid-template-columns:repeat(2,1fr);
}

 .product-detail-page {
        flex-direction: column;
        padding: 10px;
    }

      .nav {
        display: none;
    }

.breadcrumb{
padding:20px;
font-size:18px;
}

}











/* Mobile */
@media (max-width:768px){

.qty-box{
    flex-direction:column;
    align-items:stretch;
}

.viewme{
    width:100%;
}
.status-steps{
    display: block;
    width: 80%;
    margin: auto;
}
.step {
    margin-top: 10px;
    margin-left: 5px;
}

.track-container {

 
    width:100%;
    max-width:400px;
    padding:0 10px;
}
 .wishlist-container {
    margin-top: 100px;
} 
.search-container{
    margin-top: 100px;
}
.static-container{
    margin-top: 5px;
}
.account-content {
    display: block;
}
.account-sidebar {
    width: 100%;
}

.account-boxes {

    grid-template-columns: repeat(1, 1fr);

}
.account-main{
    width: 100%;
}

.breadcrumb{
    margin-top: 100px;
    padding: 20px 10px;
}
#energy{
    display: grid;
    width: 100%;
    grid-template-columns: repeat(2, 1fr);
    padding-left: 35px;
}
.qty-boxy{
    padding: 5px;
    font-size: 13px;
}
.related-grid{
    grid-template-columns: repeat(1, 1fr);
}


.search-grid {

    display: grid;
    grid-template-columns: repeat(1, 1fr);
    gap: 20px;

}


.features,
.hot-deals,
.breadcrumb,
.breadcrumbj{
    padding-left:10px;
    padding-right:10px;
}



#glav{
    color: #f5a623;
    border-radius: none;
    margin-left: 5px;
    display:inline;
}


    
    .products-section {
        padding: 8px;
    }



      


}









/*mobilecheckout*/

@media(max-width:900px){

    .checkout-wrapper{
        grid-template-columns:1fr;
    }

    .summary-card{
        position:relative;
        top:0;
    }

}

@media(max-width:600px){

    .grid-2{
        grid-template-columns:1fr;
    }

    .checkout-header h1{
        font-size:28px;
    }

    .checkout-card{
        padding:20px;
    }

}








