* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    background-color: rgba(211, 211, 211, 0.404);
}

/* header section start */

form input {
    width: 100%;
    height: 40px;
    border-radius: 8px;
    border: none;
    font-size: 20px;
}

form .bg-light {
    background-color: #f2f2f2;
    padding-left: 45px;
    padding-bottom: 4px;
}

form i {
    position: absolute;
    left: 10px;
    top: 50%;
    transform: translateY(-50%);
    color: #000;
    padding-left: 5px;
}

::placeholder {
    color: gray;
    font-size: 20px;
}

.arrow i {
    display: inline-block;
    transition: all 0.3s ease;
}

a.login {
    color: black;
    transition: all 0.3s ease;
    padding: 10px 6px;
    border-radius: 5px;
}

a.login:hover {
    background-color: blue;
    color: white;
}

a.login:hover .arrow i {
    transform: rotate(180deg);
}

.nav-dropdown {
    display: none;
    width: 270px;
    margin-top: 1.5rem;
    z-index: 1000;
}

.dropdown-wrapper:hover .nav-dropdown {
    display: block;
}

.nav-dropdown li:hover {
    background-color: #f8f9fa;
}

.dots i {
    display: inline-block;
    padding: 5px 10px;
    transition: all 0.3s ease;
}

a.dots:hover i {
    background-color: rgba(128, 128, 128, 0.103);
    border: 1px solid black;
    border-radius: 5px;
}

/* header section end */

/* accessories section start */

.accessories {
    background-color: white;
    margin-top: 10px;
    margin-bottom: 10px;
}

.accessories .acc1 .acc1-text {
    font-size: 14px;
    font-weight: 500;
    color: black;
}

.accessories .acc1 .acc1-text p i {
    font-size: 12px;
    font-weight: bold;
}

/* accessories section end */

.carousel-control-prev,
.carousel-control-next {
    width: 40px;
    height: 80px;
    top: 50%;
    transform: translateY(-50%);
    background: #fff;
    color: #000;
    border-radius: 5px;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.3);
    opacity: 1;
    overflow: hidden;
}

.carousel-control-prev-icon,
.carousel-control-next-icon {
    background-size: 70% 70%;
    filter: invert(1);
}

.indicator {
  width: 50px;
  height: 4px;
  background: #ccc;
  overflow: hidden;
  border-radius: 2px;
  cursor: pointer;
}

.indicator .progress {
  width: 0%;
  height: 100%;
  background: #000;
  transition: width 0s linear;
}

/* deals section start */

.deals {
    margin-top: 10px;
    margin-bottom: 10px;
}

.deals .acc1 .acc1-img {
    transition: all 0.3s ease;
}

.deals .acc1 .acc1-img:hover {
    transform: scale(1.05);
}

/* deals section end */

/* home section start */

.home {
    margin-bottom: 10px;
}

.home .acc1 .acc1-img {
    transition: all 0.3s ease;
}

.home .acc1 .acc1-img:hover {
    transform: scale(1.05);
}

/* home section end */

/* special section start */

.special {
    margin-top: 10px;
    margin-bottom: 10px;
}

.special .special-cart .cart-title i {
    background-color: blue;
    border-radius: 50%;
    color: white;
    padding: 5px 5px;
    display: flex;
    justify-content: center;
    align-items: center;
}

.special .special-cart .boxes {
    gap: 8px;
}

.special .special-cart .boxes .box {
    width: 100%;
    height: 100%;
}

.special .special-cart .boxes .box img {
    transition: all 0.3s ease;
}

.special .special-cart .boxes .box img:hover {
    transform: scale(1.05);
}

/* special section end */

/* footer section start */

footer .about h6,
footer .group h6,
footer .help h6,
footer .policy h6 {
    color: white;
    font-size: 12px;
    font-weight: 500;
}

footer .about ul li a,
footer .group ul li a,
footer .help ul li a,
footer .policy ul li a {
    color: white;
    text-decoration: none;
    font-size: 12px;
    font-weight: 500;
    transition: all 0.3s ease;
}

footer .about ul li a:hover,
footer .group ul li a:hover,
footer .help ul li a:hover,
footer .policy ul li a:hover {
    text-decoration: underline;
}

footer .foot2 h6 {
    font-size: 12px;
    font-weight: 500;
}

footer .foot2 .mail p {
    color: white;
    font-size: 12px;
    font-weight: 500;
    margin: 0;
}

footer .foot3 a {
    color: white;
    text-decoration: none;
    font-size: 12px;
    font-weight: 500;
    /* margin-right: 15px; */
}

footer .foot3 a i {
    color: gold;
    text-decoration: none;
    font-size: 12px;
    font-weight: 500;
    /* margin-right: 15px; */
}

/* footer section end */