@charset "UTF-8";
@font-face {
    font-display: swap
}

*,
*::before,
*::after {
    box-sizing: border-box
}

* {
    margin: 0;
    padding: 0
}

html,
body,
header,
footer,
nav,
aside,
figure,
figcaption,
hgroup,
h1,
h2,
h3,
h4,
h5,
h6,
ul,
li,
ol,
p,
div,
strong,
span,
aside,
main {
    margin: 0;
    padding: 0
}

html,
body {
    margin: 0;
    padding: 0;
    font-display: optional;
    font-family: "Montserrat", Arial, Helvetica, sans-serif;;
    font-size: 1rem;
    line-height: 1.8;
    font-weight: 400;
    background: #fff
}

ol,
ul,
li {
    list-style: none
}

img {
    max-width: 100%
}

a,
a:hover {
    text-decoration: none;
    color: #1553fc
}
.clear{clear:both;}
.topheader{
    display: block;
    background: #000;
    position: relative;
}
.topheader::after{
    content: '';
    display: block;
    clear: both;
}
.topheader .innerth{
    display: flex;
    align-items: center;
    justify-content: space-between;
    flex-wrap: wrap;
}
.leftnav{
    display: block;
}
.rightnav{
    display: block;
}
.rightnav ul{}
.rightnav ul li{
    display: inline-block;
    float: left;
    margin-right: 1rem;
}
.rightnav ul li a{
    display: block;
    font-size: 0.90rem;
    line-height: 40px;
    color: #fff;
    position: relative;
}
.mainheader{
    display: block;
    position: relative;
    padding: 17px 0 18px;
    border-bottom: 1px solid rgba(0, 0, 0, 0.1);
}
.innermh{
    display: flex;
    align-items: center;
    justify-content: space-between;  
}
.logo{
    display: inline-block;
    width: 165px;
    padding: 7px 0;
}
.logo img{
    width: 100%;
    height: auto;
}
.icons {
  display: flex;
  gap: 20px;
  align-items: center;
}
.iconsearch {
  font-size: 20px;
  cursor: pointer;
}
.iconsearch img{
    width: 25px;
    height: auto;
}

.cart-icon {
  position: relative;
}

.cart-badge {
  position: absolute;
  top: -8px;
  right: -8px;
  background: #000;
  color: #fff;
  font-size: 10px;
  font-weight: bold;
  border-radius: 50%;
  padding: 2px 7px;
}


.footer{
    display: block;
    width: 100%;
    padding: 40px 0 30px;
    background: #212121;
}
.footerheading{
    font-size: 18px;
    text-transform: uppercase;
    color: #fff;
    font-weight: 600;
    margin-bottom: 30px;
}
.footerlink{
    display: block;
    position: relative;
}
.footerlink ul{
    display: block;
}
.footerlink ul li{
    display: block;
    margin-bottom: 1rem;
}
.footerlink ul li a{
    display: block;
    font-size: 0.95rem;
    line-height: 1.2;
    color: #fff;
}
/* cart dropdown */
/* Cart Dropdown Styling */
#dropdown {
    min-width: 300px;
    max-width: 300px;
    padding: 15px;
    border: 1px solid #ddd;
    background-color: #fff;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
    position: absolute;
    z-index: 1000;
    top: 30px;
    right: 0px;
    display: none;
}
.cart-icon:hover #dropdown,
#dropdown:hover {
    display: block;
}
/* Empty Cart Message */
#dropdown p.text-muted {
    color: #6c757d;
    font-size: 14px;
    text-align: center;
    margin-top: 20px;
}

/* Cart Item List Styling */
#dropdown ul {
    list-style: none;
    margin: 0;
    padding: 0;
}

/* Individual Cart Item */
#dropdown li.media {
    display: flex;
    align-items: center;
    padding: 10px;
    border-bottom: 1px solid #f1f1f1;
    margin-bottom: 10px;
}

#dropdown li.media:last-child {
    border-bottom: none;
}

/* Product Image Styling */
#dropdown li.media img {
    border-radius: 4px;
    object-fit: cover;
}

/* Product Info Styling */
#dropdown li.media .media-body {
    flex: 1;
    margin-left: 10px;
}

/* Product Name Styling */
#dropdown li.media .media-body strong {
    font-size: 14px;
    font-weight: bold;
    color: #333;
}

/* Product Quantity */
#dropdown li.media .media-body span {
    font-size: 12px;
    color: #555;
}

/* View Cart Button Styling */
#dropdown a.btn-primary {
    margin-top: 10px;
    display: block;
    text-align: center;
    font-size: 14px;
    border-radius: 5px;
    padding: 10px;
    background-color: #000;
    color: #fff;
    text-decoration: none;
}

#dropdown a.btn-primary:hover {
    background-color: #000;
}

/* Hover Effect for Cart Items */
#dropdown li.media:hover {
    background-color: #f8f9fa;
    cursor: pointer;
    border-radius: 5px;
}
.widthsmall{
    width: 767px;
    max-width: 100%;
    margin:0 auto;
}
.widthmedium{
    width: 991px;
    max-width: 100%;
    margin:0 auto;
}
.dropdown {
        position: relative;
    }

    .dropdown-menu {
        position: absolute;
        top: 100%;
        left: 0;
        background-color: white;
        list-style: none;
        padding: 10px;
        box-shadow: 0 2px 8px rgba(0,0,0,0.2);
        margin-top: 5px;
        display: block;
        opacity: 0;
        visibility: hidden;
        transform: translateY(10px);
        transition: all 0.3s ease;
        z-index: 1000;
        min-width: 200px;
    }

    .dropdown:hover .dropdown-menu {
        opacity: 1;
        visibility: visible;
        transform: translateY(0);
    }

    .dropdown-menu li {
        display: block !important;
        margin: 5px 0;
        border-bottom:1px solid #ddd;
        float: none !important;
        margin-right: 0!important;
    }

    .dropdown-menu a,
    .dropdown-menu button {
        color: #333;
        text-decoration: none;
        display: block;
        background: none;
        border: none;
        padding: 0px 0px;
        width: 100%;
        line-height: 30px;;
        text-align: left;
        cursor: pointer;
    }

    .dropdown-menu a:hover,
    .dropdown-menu button:hover {
        color: #414141;
    }
.modal-content {
    border-radius: 8px;
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.1);
    padding: 20px 30px;
}

.modal-header {
    border-bottom: 2px solid #f1f1f1;
}

.modal-title {
    font-weight: 600;
    font-size: 1.25rem;
}

.modal-footer {
    border-top: 2px solid #f1f1f1;
    background-color: #f8f9fa;
}

.form-label {
    font-weight: 400;
margin-bottom: 3px;
    color: #333;
}

.form-control {
    border-radius: 4px;
    /* box-shadow: inset 0 1px 3px rgba(0, 0, 0, 0.08); */
    padding: 10px;
    font-size: 1rem;
    line-height: 25px;
    transition: box-shadow 0.2s ease;
    height: auto;
}

.form-control:focus {
    box-shadow: 0 0 8px rgba(0, 123, 255, 0.3);
    border-color: #007bff;
}

.form-control::placeholder {
    color: #888;
}

.btn-primary {
    background-color: #000;
    border-color: #000;
    border-radius: 6px;
    padding: 12px 20px;
    font-weight: 600;
    transition: background-color 0.3s;
    display: block;
    width: 100%;
}

.btn-primary:hover {
    background-color: #414141;
}

.btn-secondary {
    background-color: #6c757d;
    border-color: #6c757d;
    border-radius: 8px;
    padding: 10px 20px;
}

.btn-secondary:hover {
    background-color: #5a6369;
}
.error{
    font-size: 0.85rem;
    color: #dc3545;
}
.modal-body {
    padding: 15px 0;
}
.modal-dialog {
    max-width: 550px;
    margin: 1.75rem auto;
}
.mb-3 {
    margin-bottom: 10px !important;
}

/* Add a subtle background gradient */
.modal-content {
    background: linear-gradient(135deg, #ffffff, #f0f0f0);
}
.btn-close {
    position: absolute;
    top: 10px;
    right: 10px;
    background-color: #ddd;
    border-radius: 50%;
    width: 30px;
    height: 30px;
    display: flex;
    align-items: center;
    justify-content: center;
    border: none;
    font-size: 0.85rem;
    color: #333;
    opacity: 1;
    transition: opacity 0.3s ease;
    font-weight: 600;
}

.btn-close:hover {
    color: #000;
    opacity: 1;
}
.topsocail {
    display: inline-block;
    position: relative;
}
.topsocail ul {
    display: flex;
    align-items: center;
    column-gap: 10px;;
}
.topsocail ul li {
    display: inline-block;
}
.topsocail ul li a {
    display: inline-block;
    width: 30px;
    height: 30px;
    line-height: 28px;
    font-size: 14px;
    color: #000;
    background: #fff;
    border: 2px solid #fff;
    border-radius: 50%;
    transition: all 500ms ease;
    text-align: center;
}
.topsocail ul li a:hover {
    background-color: #fff;
    border-color: #fff;
}
@media (min-width: 1200px) {
  .container {
    max-width: 1280px;
  }
}
@media (min-width: 1400px) {
    .container{
        max-width: 1320px;
    }
}










@media screen and (max-width:767px){
   .logo{
        padding: 0px 0;
        margin: 0 30px 0 50px;
   }
   .icons{
        position: absolute;
        top: 4px;
        right: 1px;
   }
}
@media screen and (max-width:575px){
   
}
@media (max-width: 500px) {
    
}