
:root {
    --primary-color: #222;
    --secondary-color: #222;
    --text-color: #333;
    --light-gray: #f8f9fa;
    --border-color: #e0e0e0;
}

body {
    /* font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif; */
    color: var(--text-color);
}
*{
    padding: 0;
    margin: 0;
}
.image-container {
    margin-bottom: 15px;
}

.image-container img {
    width: 100%;
    height: auto;
}

.special-section {
    height: 100vh;
    text-align: center;
    padding: 10px 20px;
    margin-bottom: 15px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    border: 1px solid #eee;
}
.sign-container{
    width: 100%;
    height: auto;
}

.special-section button {
    margin-top: 10px;
    width: 80%;
}
.contact-info{
    width:100%;
    background-color: #ececec;
}

/* navbar items */
.navbar-image{
    width: 150px;
    /* height: 20px; */
}
.bg-navbar{
    background-color: white;
}

/* arrivals */
.arrivals-bg{
    background-color: #ececec;
    background-position: center;
}

.photo-gallery{
    display: flex;
    gap: 0px;

}
.column{
    display: flex;
    flex-direction: column;
    gap: 40px;
}
.photo{
 width: 100%;
 padding: 0 20px;
}
.photo img{
    width:100%;
    height: 100%;
    border-radius: 5px;
    object-fit: cover;
}
.bg-text{
    background-color: white;
}
.viewmore{
   height: 40vh;
   display: flex;
   align-items: center;
   justify-content: center;
}


/* filter page code */
.card-item{
    box-shadow: rgba(0, 0, 0, 0.24) 0px 3px 8px;
}

 /* card style */
 .card-img-top {
    /* width: 300px; */
    padding: 10px;
    margin: 0 auto;
    height: 250px;
    object-fit: cover;
    position: relative;
  }
  .product-price{
  background-color: white;
  color: red;
  font-weight: 500;
  /* color: black; */
  padding: 6px 10px;
  margin: 0px;
}

.materials{
    background-color: white;
    color: #222;
    font-weight: 500;
    /* color: black; */
    padding: 3px 8px;
    margin: 0px;
  }






/* Sidebar */
.filter-sidebar {
    background-color: white;
    border-right: 1px solid var(--border-color);
    padding: 20px;
    height: 100%;
}

.filter-heading {
    font-size: 18px;
    font-weight: 600;
    margin-bottom: 15px;
}

.filter-category {
    font-size: 16px;
    font-weight: 600;
    margin: 20px 0 10px;
}

.filter-list {
    list-style-type: none;
    padding-left: 0;
}

.filter-item {
    margin-bottom: 8px;
}

.filter-checkbox {
    margin-right: 10px;
}

.price-slider {
    width: 100%;
    margin: 10px 0;
}

.price-range {
    display: flex;
    justify-content: space-between;
    font-size: 14px;
    color: #666;
}

.btn-filter {
    background-color: var(--primary-color);
    color: white;
    border: none;
    border-radius: 20px;
    padding: 8px 20px;
    margin-top: 15px;
    transition: all 0.3s;
}

.btn-filter:hover {
    background-color: var(--secondary-color);
}



.hero-subtitle {
    font-size: 18px;
    margin-bottom: 30px;
}

.btn-shop {
    background-color: var(--primary-color);
    color: white;
    border: none;
    border-radius: 20px;
    padding: 10px 25px;
    transition: all 0.3s;
}

.btn-shop:hover {
    background-color: var(--secondary-color);
}



/* Mobile Sidebar Toggle */
.sidebar-toggle {
    display: none;
    position: fixed;
    bottom: 20px;
    left: 20px;
    width: 50px;
    height: 50px;
    border-radius: 50%;
    background-color: var(--primary-color);
    color: white;
    border: none;
    box-shadow: 0 2px 10px rgba(0,0,0,0.2);
    z-index: 1000;
    justify-content: center;
    align-items: center;
}

/* Responsive */
@media (max-width: 776px) {
    .filter-sidebar {
        position: fixed;
        left: -300px;
        top: 0;
        width: 280px;
        height: 100vh;
        overflow-y: auto;
        z-index: 1000;
        transition: all 0.3s;
        box-shadow: 2px 0 10px rgba(0,0,0,0.1);
    }

    .filter-sidebar.show {
        left: 0;
    }

    .sidebar-overlay {
        display: none;
        position: fixed;
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
        background-color: rgba(0,0,0,0.5);
        z-index: 999;
    }

    .sidebar-overlay.show {
        display: block;
    }

    .sidebar-toggle {
        display: flex;
    }

    .hero-title {
        font-size: 36px;
    }
    .card-img-top {
        height: 150px;
        object-fit: cover;
        position: relative;
      }
}

@media (max-width: 768px) {

    .footer-contact {
        text-align: left;
        margin-top: 20px;
    }

    .footer-bottom {
        flex-direction: column;
        text-align: center;
    }

    .footer-bottom .text-end {
        text-align: center !important;
        margin-top: 10px;
    }
}
/*  */
/* details start */
.details-container{
    box-shadow: rgba(67, 71, 85, 0.27) 0px 0px 0.25em, rgba(90, 125, 188, 0.05) 0px 0.25em 1em;
  }
  .details-image{
    height: auto;
  }
  .thumbnail-img {
    width: 80px;
    height: 80px;
    padding: 10px;
    object-fit: cover;
    border: 2px solid transparent;
    cursor: pointer;
  }
  .thumbnail-img.active {
    border-color: gray !important;
  }
  .object-fit-cover {
    object-fit: cover;
  }
  #mainImage {
    transition: transform 0.2s ease;
    cursor: url('magnifying-glass.png') 20 20, zoom-in;
  }
  /* details end */
  /* shopping cart and check out page satart */
.tab-btn {
    border: 1px solid #222;
    color: #222;
    background-color: transparent;
    font-weight: 600;
    transition: all 0.3s ease;
  }

  .tab-btn.active {
    background-color: #222;
    color: white;
    border-color: #222;
  }

  .tab-content-custom {
    display: none;
  }

  .tab-content-custom.active {
    display: block;
  }

.footer {
    background-color: #f8f9fa;
    padding-top: 40px;
    padding-bottom: 40px;
}

.footer h5 {
    font-weight: bold;
}

.footer a {
    color: #000;
    text-decoration: none;
}

.footer a:hover {
    text-decoration: underline;
}

.footer p {
    margin: 0;
}

.footer .fab, .footer .fas {
    font-size: 20px;
    margin: 0 10px;
    color: #000;
}

.footer .fab:hover, .footer .fas:hover {
    color: #007bff;
}

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

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

.footer ul li a {
    color: #000;
}

.footer ul li a:hover {
    text-decoration:Â underline;
}
