/* http://meyerweb.com/eric/tools/css/reset/ 
   v2.0 | 20110126
   License: none (public domain)
*/

html, body, div, span, applet, object, iframe,
h1, h2, h3, h4, h5, h6, p, blockquote, pre,
a, abbr, acronym, address, big, cite, code,
del, dfn, em, img, ins, kbd, q, s, samp,
small, strike, strong, sub, sup, tt, var,
b, u, i, center,
dl, dt, dd, ol, ul, li,
fieldset, form, label, legend,
table, caption, tbody, tfoot, thead, tr, th, td,
article, aside, canvas, details, embed, 
figure, figcaption, footer, header, hgroup, 
menu, nav, output, ruby, section, summary,
time, mark, audio, video {
	margin: 0;
	padding: 0;
	border: 0;
	vertical-align: baseline;
}
                                                                     /* HTML5 display-role reset for older browsers */
article, aside, details, figcaption, figure, 
footer, header, hgroup, menu, nav, section {
	display: block;
}
                                                                              /*STYLES OF NAV BAR STARTING*/
.navbar-container {
  position: relative; 
  z-index: 1;
}
.login-button{
	background: linear-gradient(to right, #fe3f1d, #ff810c);
	color: #fff !important;
}
.navtoggle{
	background-color: #55cdde !important;
}
.search-bar{
	margin-right: 40px;
}
.navbar-collapse .nav-item:hover{
	background-color: #55bdde;
	border-radius: 10px;
}
.navbar-collapse .navbar-nav li:hover{
	text-align: center;
}
#search{
	 color: #fff;
	 background-color: transparent;
    border: 2px solid #55bdde;
    border-radius: 5px;
    outline: none;
}
#search:focus {
    box-shadow: 0 0 5px rgba(0, 123, 255, 0.5);
}
#search::placeholder {
    color: grey;
}
                                                                                 /*STYLES OF NAVBAR ENDING*/


                                                                         /*STYLES OF ADD TO CART SECTION STARTING */
.cart{
	background-color: #726D68;
	width: 100%;
	height: 4rem;
	display: table;
}
#headline_content{
    display: table-cell;
    vertical-align: middle;
    text-align: center;
}
.cart #headline li{
	list-style: none;
}
.cart .cart_btn{
	float: right;
}
#right-content{
	height: 130vh;
	overflow: auto;
}
#right-content #remove{
	width: auto;
}
#right-content td{
	border: 1px solid white;
	display: table-cell;
    vertical-align: middle;
    text-align: center;
	padding: 7px 0 7px 0;
}
#right-content table{
	border-radius: 10px;
}
#right-content #qty{
	border: none;
	border-radius: 5px;
}
#image{
	border-radius: 5px;
}
                                                                         /*STYLES OF ADD TO CART SECTION ENDING */


                                                                           /*STYLES OF RIGHT SIDE CONTENT STARTING*/
#right-content {
     display: flex;
    flex-wrap: wrap;
    justify-content: center;
}

.card{
	float: left;
	text-align: center;
	padding: 10px;
	margin: 10px;
	overflow: hidden;
}
.card:hover{
	box-shadow: 7px 7px 5px rgba(0, 0, 0, 0.1);
}

.card img {
    height: 180px;
    width: auto;
    transition: transform 0.3s ease;
    cursor: zoom-in;
}
.card img:hover {
    transform: scale(1.123);
}

.card-title {
    font-size: 1.2rem;
    margin-bottom: 10px;
}

.card-text {
    color: #555;
}

#cart_btn {
    cursor: pointer;
    margin: 3px 0 3px 0;
    transition: transform 0.4s ease;
}

#cart_btn:hover {
    transform: scale(1.1);
}

/*STYLES OF RIGHT SIDE CONTENT ENDING*/


                                                                           /*STYLES OF LEFT SIDE-BAR STARTING*/
#side-bar{
	height: auto;
	background-color: #55cdde;
	float: left;
}

#side-bar li{
	margin: 8px;
	text-align: center;
   list-style: none;
}

#side-bar li a{
	color: #fff !important;
	text-decoration: none;
}

#side-bar li a:hover {
  color: black !important;
  font-weight: bold;
  text-decoration: underline;
}

                                                                           /*STYLES OF LEFT SIDE-BAR ENDING*/


/*                                                                           STYLES FOR CONTACT US AND ABOUT US SECTION*/


.contact-us {
    padding: 80px 0;
    background-color: #f8f9fa;
}

.contact-us .section-title {
    text-align: center;
    margin-bottom: 50px;
}

.contact-us .section-title h2 {
    font-size: 36px;
    font-weight: bold;
    color: #333;
    margin-bottom: 10px;
}

.contact-us .section-title p {
    font-size: 18px;
    color: #666;
}

.contact-us .row {
    display: flex;
    justify-content: center;
    align-items: flex-start;
}

.contact-us .col-md-6 {
    margin-bottom: 30px;
}

.contact-us .contact-info h3 {
    font-size: 24px;
    font-weight: bold;
    color: #333;
    margin-bottom: 10px;
}

.contact-us .contact-info p {
    font-size: 16px;
    color: #666;
    margin-bottom: 20px;
}

.contact-us .contact-form .form-group {
    margin-bottom: 20px;
}

.contact-us .contact-form input[type="text"],
.contact-us .contact-form input[type="email"],
.contact-us .contact-form textarea {
    width: 100%;
    padding: 15px;
    border: 1px solid #ced4da;
    border-radius: 5px;
    background-color: #fff;
    font-size: 16px;
    color: #495057;
}

.contact-us .contact-form textarea {
    resize: vertical;
    min-height: 150px;
    width: 100%;
    padding: 15px;
    border: 1px solid #ced4da;
    border-radius: 5px;
    background-color: #fff;
    font-size: 16px;
    color: #495057;
}

.contact-us .contact-form .btn-primary {
    background-color: #55cdde;
    color: #fff;
    border: none;
    padding: 15px 30px;
    font-size: 18px;
    border-radius: 5px;
    cursor: pointer;
    transition: background-color 0.3s;
}

.contact-us .contact-form .btn-primary:hover {
    background-color: #4ab4c4;
}

@media (max-width: 767px) {
    .contact-us .section-title h2 {
        font-size: 30px;
    }

    .contact-us .contact-info h3 {
        font-size: 20px;
    }

    .contact-us .contact-info p {
        font-size: 14px;
    }

    .contact-us .contact-form .btn-primary {
        font-size: 16px;
    }
}

/*RATING*/

.rate-us {
    background-color: #f8f9fa;
    padding: 50px 0;
}

.section-title {
    text-align: center;
    margin-bottom: 30px;
}

.rate-form {
    background-color: #fff;
    padding: 20px;
    border-radius: 10px;
    box-shadow: 0 0 20px rgba(0, 0, 0, 0.1);
}

.form-group {
    margin-bottom: 20px;
}

label {
    font-weight: bold;
}
.form-group textarea {
    resize: none;
    max-height: 100px;
}

.btn-primary {
    background-color: #007bff;
    border-color: #007bff;
}

.btn-primary:hover {
    background-color: #0056b3;
    border-color: #0056b3;
}


/*ABOUT US*/

.about-us {
    padding: 50px 0;
}

.about-us .section-title {
    font-size: 36px;
    font-weight: bold;
    margin-bottom: 30px;
    text-align: center;
}

.about-us p {
    font-size: 16px;
    line-height: 1.6;
    margin-bottom: 20px;
}

.about-us h3 {
    font-size: 24px;
    font-weight: bold;
    margin-bottom: 15px;
}

.about-us ul {
    list-style: none;
    padding-left: 0;
    margin-bottom: 20px;
}

.about-us ul li {
    font-size: 16px;
    line-height: 1.6;
    margin-bottom: 10px;
}

.about-us ul li strong {
    font-weight: bold;
}

.about-us p:last-child {
    margin-bottom: 0;
}



                                                                           /*STYLES OF FOOTER SECTION STARTING*/
.footer{
	width: 100%;
	height: auto;
	background-color: gray;
	color: #fff;
	clear: both;
}
/* Footer Styles */

.footer {
    color: #fff;
    padding: 30px 0;
}

.footer h4 {
    color: #55cdde;
    font-size: 20px;
    margin-bottom: 20px;
}

.footer p {
    font-size: 14px;
    line-height: 1.6;
}

.footer ul {
    padding: 0;
    list-style: none;
}

.footer ul li {
    margin-bottom: 10px;
}

.footer ul li a {
    color: #fff;
    text-decoration: none;
    transition: color 0.3s ease;
}

.footer ul li a:hover {
    color: #55cdde;
}

.footer ul li i {
    margin-right: 10px;
}

/* Social Icons */
.footer .fab {
    font-size: 24px;
    color: #55cdde;
    margin-right: 10px;
}

.footer .fab:hover {
    color: #fff;
}

.footer #account{
	cursor: pointer;
}
.footer #account:hover {
    color: #55cdde;
}

                                                                           /*STYLES OF FOOTER SECTION ENDING*/


                                                                           /*STYLES FOR SCROLL BARS*/
::-webkit-scrollbar {
  width: 10px;
}

::-webkit-scrollbar-thumb {
  background-color: rgba(0, 20, 10, 0.3);
  border-radius: 50px;
}
::-webkit-scrollbar-track {
  background-color: #f1f1f1;
  border-radius: 10px;
}

#right-content::-webkit-scrollbar{
	width: 0;
}                                                              