header{
    background-color: #0A1F44;
    display: flex;
    width: 100%;
    height: 70px;
    margin-top: 0;
    margin-bottom: 0;
}
main{
    width: 100%;
    display: flex;
}

.logo{
    width: 100%;
    display: inline-block;

}
.logo img{
    padding-top: 5px;
    width: 100px;
    height: 65px;
}
.credintials{
    display: flex;
}
nav a.gold{
    padding: 18px 2px;
    width: 80px;
    text-align: center;
    display: inline-block;
    color: #FFD700;
}
.login-logo img{
    width: 200px;
    padding-bottom: 2px;
    margin-bottom: 2px;
}
.uname{
    color: #FFD700;
    width:200px;
    margin-top: 5px;
    padding-top: 20px;
}

.tooltip-btn {
    position: relative;
    cursor: pointer;
  }
  
  /* Tooltip styling */
  .tooltip-btn::after {
    content: "View Profile"; /* 📝 Your note here */
    position: absolute;
    bottom: -100%; /* Position above the button */
    left: 50%;
    transform: translateX(-50%);
    background-color: #333;
    color: #fff;
    padding: 6px 10px;
    border-radius: 5px;
    white-space: nowrap;
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.3s ease;
    font-size: 14px;
    z-index: 10;
  }
  
  /* Show tooltip on hover */
  .tooltip-btn:hover::after {
    opacity: 1;
  }
/* start search bar */
.search{
    width: 100%;
    margin-bottom: 25px;

}
.search_bar{
    float:right;
    margin: 4px 12px;
}
.search_input{  
    padding: 6px;
    color: #080808;
    width: 150px;
    height: 25px;
    font-size: 16px;
}
.button_search{
    padding: 0px 15px;
    border: 1px solid #111111;
    background-color: #FFD700;
    border-radius: 5px;
    cursor: pointer;
}
/* end search bar */
/* start social bar */
.social_parent{
    display: flex;
    width: 100%;
    height: 45px;
    background-color: #f8f7f8;
    border-bottom: 3px solid #0A1F44;
}
.social{
    width: 25%;
}

.social ul{
    list-style: none;
    margin: 0;
    padding: 0;
}
.social ul li{
    display: inline-block;
    margin-left: 15px;
    padding: 2px;
    margin-top: 5px;
}
.social ul li a{
    color: #000
}
.social ul li a:hover{
    color:#0A1F44;
}
.cart-icon{
    position: relative;
    display: inline-block;
}
.cart-count{
    position: absolute;
    background-color: #f00;
    color: #FFF;
    padding: 0px 6px;
    border-radius: 50%;
    font-size: 12px;
}
.section{
    width: 75%;
    float:right
}
.section ul{
    list-style: none;
}
.section ul li{
    float: right;
    padding: 5px 3px;
    margin-left: 5px;

}
.section ul li a{
    text-decoration: none;
    font-size: 12px;
    padding: 5px 3px;
}
.section ul li a:hover{
    text-decoration: none;
    font-size: 15px;
    background-color: #0A1F44;
    color: #FFF;
    padding: 5px 3px;
}
/* end social bar */
/* start product area */
.product-parent{
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 20px;
    padding: 20px;
    margin-top: 60px;
}
.product{
    flex: 1 1 100%; /* Full width on mobile */
    max-width: 100%;
    box-sizing: border-box;
    position: relative;
    padding: 10px;
    border-radius: 5%;
    box-shadow: 0 5px 10px #000;
    background-color: #fff;
}
@media (min-width: 600px) {
    .product {
        flex: 1 1 calc(50% - 40px); /* 2 products per row */
        max-width: calc(50% - 40px);
    }
}

@media (min-width: 1024px) {
    .product {
        flex: 1 1 calc(25% - 40px); /* 4 products per row */
        max-width: calc(25% - 40px);
    }
}

.product a{
    color: #080808;
    font-size: 15px;
    font-weight: bold;
    margin: 4px;
    text-decoration: none;
}
.product-img{
    text-align: center;
    position: relative;
}
.product-img:hover{
    opacity: 0.7;
}
.product-img img {
    width: 80%;
    max-height: 275px;
    object-fit: cover;
    border-radius: 50%;
    margin-bottom: 20px;
    display: block;
    margin-left: auto;
    margin-right: auto;
    box-shadow: 2px 3px 5px #0A1F44;
}
.product-section{
    width: fit-content;
    padding: 5px 10px;
    background-color: #FF9999;
    border-radius: 15%;
    box-shadow: 2px 3px 5px #0A1F44;
    font-size: 10px;
    text-align: center;
    margin: auto;
}
.product-section a{
    font-size: 10px;
}
.product-name{
    margin-top: 5px;
    text-align: center;
    background-color: #FFD700;
    box-shadow: 2px 3px 5px #0A1F44;
    padding: 5px 0;
}
.product-price{
    text-align: center;
    margin-top: 2px;
}
.product-price a{
    color: red;
    font-weight: bold;
    
}
.product-description{
    text-align: center;
    margin-bottom: 20px;
}

.product-description i{
    color: blue;
    margin: 0 10px;

}
.qty-input{
    text-align: center;
}
.qty-count-minus,
.qty-count-add {
    background-color: #ccc;
    border: none;
    padding: 5px 10px;
    cursor: pointer;
    font-size: 16px;
}
input[type="number"] {
    font-size: 16px;
    color: #333;
    border: 1px solid #ccc;
    padding: 4px;
    width: 50px;
    text-align: center;
}
.submit {
    text-align: center;
}

.add-to-cart {
    width: 100%;
    height: 35px;
    margin-top: 20px;
    background-color: #007bff;
    color: #fff;
    border: none;
    cursor: pointer;
    font-weight: bold;
    border-radius: 5px;
}
.add-to-cart:hover {
    background-color: #0A1F44;
    color: #fff;
}
.discount {
    position: absolute;
    top: 30px;
    left: 3px;
    transform: rotate(-35deg);
    background-color: #f00;
    width: 100px;
    color: #fff;
    font-weight: bold;
    border-radius: 10px;
    padding: 5px;
    text-align: center;
    font-size: 14px;
}
/* end product area */
.footer-container{
    width: 100%;
    position: fixed;
    bottom: 0;
    display: flex;
    background-color: #0A1F44;
    height: 50px;
}
.google-maps{
    width:70%;
    height:50px 
}
.copy{
    width: 30%;
    display: flex;
    justify-content: center; /* horizontal centering */
    align-items: center;     /* vertical centering */
    height: 100%;            /* ensure it takes full height of footer */
}
.copy p{
    color: #FFD700;
    font-size: 14px;
    font-weight: bolder;
    text-align: center;
}
.markets{
    display: flex;
}
.card {
    width: 100%;
    border: 1px solid #ddd;
    border-radius: 10px;
    padding: 20px;
    transition: transform 0.2s;
}

.card:hover {
    transform: scale(1.05);
}

.card-img-top {
    border-radius: 10px;
}

.card-title {
    font-size: 1.5rem;
    font-weight: bold;
}

.card-text {
    font-size: 1rem;
    color: #555;
}

.tree ul {
    padding-top: 20px; position: relative;
    transition: all 0.5s;
}
.tree li {
    float: right; text-align: center;
    list-style-type: none;
    position: relative;
    padding: 20px 5px 0 5px;
    transition: all 0.5s;
}
.tree li::before, .tree li::after {
    content: '';
    position: absolute; top: 0; right: 50%;
    border-top: 1px solid #ccc;
    width: 50%; height: 20px;
}
.tree li::after {
    right: auto; left: 50%;
    border-left: 1px solid #ccc;
}
.tree li:only-child::after, .tree li:only-child::before {
    display: none;
}
.tree li:only-child {
    padding-top: 0;
}
.tree li:first-child::before, .tree li:last-child::after {
    border: 0 none;
}
.tree li:last-child::before {
    border-right: 1px solid #ccc;
    border-radius: 0 5px 0 0;
}
.tree li:first-child::after {
    border-radius: 5px 0 0 0;
}
.tree span {
    border: 1px solid #ccc;
    padding: 5px 10px;
    display: inline-block;
    border-radius: 5px;
    background: #fff;
    font-weight: bold;
}
.sawsan{
    border: 5px solid red;
}




