/* ===== HEADER ===== */
.site-header {
  font-family: 'Poppins', sans-serif;
}
:root{
  
}
.mainheads {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 16px 0;
}
.secondright {
    display: flex;
    width: 55%;
    align-items: center;
}
/* --- Top bar --- */
.top-bar {
  background: #1f1e1e;
  color: #fff;
  font-size: 14px;
  padding: 8px 0;
}
.top-bar a {
    color: #fff;
    /* margin-right: 20px; */
    font-size: 15px;
    text-decoration: none;
}
.top-bar a:hover {
  color: #00b894 !important;
}
.top-bar .contact-info i {
    margin-right: 6px;
    color: #00b894;
    margin-left: 6px;
}

/* --- Main header --- */
.main-header {
  background: #fff;
  border-bottom: 1px solid #eee;
}
.logo {
    width: 100%;
}
.logo img {
    height: 85px;
}
.search-bar {
    flex-grow: 1;
    max-width: 600px;
    position: relative;
    margin-right: 30px;
}
.search-bar form {
  display: flex;
  border: 1px solid #ddd;
  overflow: hidden;
  border-radius: 5px;
}
.search-bar input {
  flex: 1;
  border: none;
  padding: 10px 15px;
  outline: none;
  font-weight: 400;
  text-align: left;
}
.search-bar button {
  background: #00b894;
  border: none;
  color: #fff;
  padding: 0 20px;
  transition: all 0.3s ease;
  cursor: pointer;
}
.search-bar button:hover {
  background: #019267;
}

/* --- Navigation --- */
.main-nav {
  background: #f8f8f8;
  border-top: 1px solid #eee;
}

.main-nav ul {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  align-items: center;
}

.main-nav ul li {
  margin: 0 15px;
}

.main-nav ul li a {
  display: block;
  padding: 12px 0;
  color: #333;
  text-decoration: none;
  font-weight: 500;
  text-transform: uppercase;
  position: relative;
  transition: color 0.3s ease;
}

/* Hover underline animation */
.main-nav ul li a::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: 4px;
  width: 0;
  height: 2px;
  background-color: #00b894;
  transition: width 0.3s ease;
}

/* Hover and Active */
.main-nav ul li a:hover,
.main-nav ul li a.active {
  color: #00b894;
}

.main-nav ul li a:hover::after,
.main-nav ul li a.active::after {
  width: 100%;
}

/* --- Responsive --- */
@media (max-width: 768px) {
    .logo {
        display: flex;
        flex-direction: row;
        justify-content: space-between;
        flex-wrap: nowrap;
        align-items: center;
        width: 35%;
    }

    .logo img {
        height: 75px;
    }

    .search-bar {
        width: 100%;
        margin-top: 16px !important;
        margin: 0 auto;
        margin-bottom: 16px !important;
        max-width: 1000px;
    }
    .main-nav ul {
        flex-direction: column;
        align-items: center;
    }
    .main-nav ul li {
        margin: 8px 0;
    }
    .top-links {
        text-align: center;
    }
    .top-bar a {
        color: #fff;
        font-size: 14px;
        text-decoration: none;
    }
}

/* ===== HEADER ===== */


/* ===== Index ===== */
/*Index*/

.col-product {
    flex: 0 0 20%;
    max-width: 100%;
    box-sizing: border-box;
}
.slick-list {
    position: relative;
    display: block;
    overflow: hidden;
    margin: 0;
    padding: 26px 0 !important;
}
.product-card {
    background:#fff;
    border:1px solid #eee;
    border-radius:10px;
    overflow:hidden;
    transition:0.3s;
    display:flex;
    flex-direction:column;
    justify-content:flex-start;
    align-items:center;
    padding:10px;
    position:relative;
}

.product-card:hover {
    box-shadow:0 8px 20px rgba(0,0,0,0.15);
}

.product-image {
    position:relative;
    width:100%;
    overflow:hidden;
    border-radius:8px;
}

.product-image img {
    width:100%;
    height:220px;
    object-fit:cover;
    transition:transform 0.3s;
}

.product-image img:hover {
    transform:scale(1.05);
}

.product-actions {
    position:absolute;
    top:10px;
    right:10px;
    display:flex;
    flex-direction:column;
    gap:5px;
    opacity:0;
    transition:opacity 0.3s;
}

.product-card:hover .product-actions {
    opacity:1;
}

.action-btn {
    background:rgba(0,0,0,0.7);
    color:#fff;
    padding:5px 8px;
    font-size:12px;
    text-align:center;
    border-radius:4px;
    text-decoration:none;
    transition:0.3s;
}

.action-btn:hover {
    background:#00b894;
    color:#fff;
}

.product-name {
    margin-top:10px;
    font-weight:600;
    text-align:center;
    height:55px;
    overflow:hidden;
}

.product-name a {
    color:#333;
    text-decoration:none;
}

.product-price {ma
    margin-top:8px;
    text-align:center;
    font-size:16px;
    font-weight:500;
}

.current-price {
    color:#00b894;
    font-weight:700;
}

.price-label {
    font-size:12px;
    color:#888;
    text-transform:uppercase;
}

.login-to-see a {
    color:#00b894;
    font-weight:600;
    text-decoration:none;
}

/* Responsive Grid */
@media(max-width:1200px) { .col-product {flex:0 0 25%; max-width:100%;} }
@media(max-width:992px) { .col-product {flex:0 0 33.33%; max-width:100%;} }
@media(max-width:768px) { .col-product {flex:0 0 50%; max-width:100%;} }
@media(max-width:576px) { .col-product {flex:0 0 100%; max-width:100%;} }


/* Heading Style */
.newproducts h1 {
    font-size: 3rem;       /* big, bold heading */
    font-weight: 900;      /* extra bold */
    color: #222;           /* dark professional color */
    text-transform: uppercase; /* optional for eCommerce style */
    margin-bottom: 0.5rem;
    letter-spacing: 1px;
    position: relative;
}

/* Underline Bar */
.newproducts h1::after {
    content: "";
    display: block;
    width: 100px;          /* underline length */
    height: 4px;           /* thickness */
    background-color: #019267; /* accent color */
    margin: 10px auto 0;   /* center underline */
    border-radius: 2px;
}

/* Subtitle Style */
.newproducts .subtitle {
    font-size: 1.2rem;
    color: #555;
    margin-top: 5px;
}
.mainworktags{
    padding: 60px 0;
}
.imageworks{
    padding: 40px 0;
}
.imageworks img{
    width: 100%;
    border-radius: 30px;
}
/*End Index*/
/*End Index*/
/*End Index*/
/* ===== Index ===== */


/* ===== Footer ===== */
/*footer*/
/*footer*/
/*footer*/
/*footer*/

/* ---------- FOOTER BASE ---------- */
.footer {
  background-color: #f5f5f5; /* soft light gray */
  color: #333;
  padding: 60px 0 20px;
}

/* ---------- LINKS ---------- */
.footer a {
  color: #555;
  text-decoration: none;
  transition: all 0.3s ease;
}

.footer a:hover {
  color: #00b894; /* your theme color */
}

/* ---------- TOP SECTION ---------- */
.footer-top {
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 40px;
  margin-bottom: 35px;
}

.footer-brand img {
  width: 200px;
  display: block;
  margin-bottom: 10px;
}

.footer-brand p.footer-description {
  color: #666;
  font-size: 14px;
  margin-top: 10px;
  line-height: 1.7;
  max-width: 270px;
}

/* ---------- COLUMNS ---------- */
.footer-column {
  min-width: 180px;
}

.footer-column h4 {
  font-size: 17px;
  font-weight: 600;
  margin-bottom: 15px;
  text-transform: uppercase;
  color: #111;
  position: relative;
}

.footer-column h4::after {
  content: "";
  position: absolute;
  bottom: -6px;
  left: 0;
  width: 40px;
  height: 2px;
  background-color: #00b894;
  border-radius: 2px;
}

.footer-column ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

.footer-column ul li {
  margin-bottom: 10px;
}

.footer-column ul li a {
  font-size: 16px;
  color: #555;
}

.footer-column ul li a:hover {
  color: #00b894;
  padding-left: 5px;
}

/* ---------- CONTACT INFO ---------- */
.footer-column p {
  font-size: 16px;
  line-height: 1.6;
  color: #555;
  margin: 6px 0;
}

/* ---------- BOTTOM SECTION ---------- */
.footer-bottom {
  border-top: 1px solid #ddd;
  text-align: center;
  padding-top: 15px;
  font-size: 17px;
  color: #777;
}

.footer-bottom p {
  margin: 0;
}

.footer-bottom p a {
  color: #00b894;
  text-decoration: none;
}

.footer-bottom p a:hover {
  text-decoration: underline;
}

/* ---------- RESPONSIVE ---------- */
@media (max-width: 992px) {
  .footer-top {
    flex-direction: column;
    align-items: center;
    text-align: center;
  }

  /* .footer-column {
    margin-bottom: 25px;
  } */

  .footer-column h4::after {
    left: 50%;
    transform: translateX(-50%);
  }
}

/*End Footer*/
/*End Footer*/
/*End Footer*/
/* ===== Footer ===== */

.wholesales {
    background:#00b894;
    padding: 10px 25px;
    border-radius: 5px;
    display: inline-block;
    transition: all 0.3s ease;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.15);
    margin-right: 25px;
}

.wholesales a {
    color: #fff; /* deep green text for contrast */
    font-weight: 600;
    text-decoration: none;
    letter-spacing: 0.5px;
    font-size: 15px;
}

.wholesales:hover {
    background: #019267; /* reversed on hover */
    transform: translateY(-1px);
    box-shadow: 0 6px 14px rgba(0, 0, 0, 0.25);
}
.fa-whatsapp {
    font-size: 18px;
}
.mytabbbb {
    vertical-align: middle;
}
.mytabbbb img {
    width: 70px;
    height: 74px;
    object-fit: contain;
}
.myflexhere{
    display: flex;
    justify-content: flex-start;
    align-content: flex-end;
    flex-direction: column;
    align-items: flex-end;
}
.mytabbbb td {
    font-size: 18px;
}
.mybigone {
    height: 390px;
    overflow-x: hidden;
}
a.mybtnss {
    background: #00b894;
    padding: 2px 6px;
    border-radius: 16px;
    display: inline-block;
}

.active>.page-link, .page-link.active {
    z-index: 3;
    color: var(--bs-pagination-active-color);
    background-color: #00b894 !important;
    border-color: #00b894 !important;
}
.page-link {
  color: #000;
}



    /* --- GLOBAL RESET & BASE --- */
.detailsnow {
    display: flex;
    flex-wrap: wrap;
    gap: 2rem;
    align-items: flex-start;
    margin: 1rem auto;
    padding: 2rem;
    background: #fff;
    border-radius: 14px;
}

/* --- LEFT IMAGE SECTION --- */
.imgeleftss {
    flex: 1 1 45%;
    display: flex;
    justify-content: center;
    align-items: center;
    border-radius: 12px;
    overflow: hidden;
    background: #f8f9fa;
    padding: 1.5rem;
    min-width: 300px;
}

.imgeleftss img {
    width: 100%;
    height: auto;
    max-height: 500px;
    object-fit: contain;
    transition: transform 0.4s ease;
}

.imgeleftss img:hover {
    transform: scale(1.05);
}

div#box-80655{
    margin-bottom: 10px !important;
    padding-bottom:0 !important;
}

/* --- RIGHT PRODUCT DETAILS --- */
.availability-row {
    display: flex;
    gap: 8px;
}

.availability-row .in-stock {
    color: #00b894;
    font-weight: 600;
    display: flex;
    align-items: center;
    gap: 4px;
}

.availability-row .in-stock i {
    color: #00b894;
}

.Addtocartss {
    flex: 1 1 50%;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    gap: 2px;
}

/* Product Title */
.w-product-name h1 {
    font-size: 2rem;
    font-weight: 700;
    color: #222;
    margin-bottom: 25px;
}

/* Stock status */
.w-product-stock {
    font-size: 0.95rem;
    color: #00b894;
    font-weight: 600;
}

.w-product-stock .fa-circle-check {
    color: #00b894;
}

/* Product Info Rows */
.model {
    margin-bottom: 0.5rem;
    font-size: 0.95rem;
    color: #444;
}

.model strong {
    color: #111;
    font-weight: 600;
}

.colon {
    margin: 0 5px;
}

/* --- QUANTITY --- */
.qty-input {
    display: flex;
    flex-direction: column;
    gap: 0.4rem;
    margin-bottom: 1rem;
}

.qty-input label {
    font-size: 0.9rem;
    color: #555;
}

.p-catalog-product, .type-15.product-button-wrap {
    display: flex;
    align-items: flex-end;
    justify-content: space-between;
    flex-direction: row;
}

/* --- Add to cart full width at bottom --- */
.w-product-buttons {
    margin-top: auto; /* pushes it to the bottom in flex container */
    width: 100%;
    display: flex;
    justify-content: center;
}

.w-product-buttons .buttons {
    width: 100%;
}

.w-product-buttons .add-to-cart:hover {
    background: #009d7a;
}


/* --- ADD TO CART BUTTON --- */
.CartButton, .WholeSaleCartButton {
    background-color: #00b894;
    color: #fff;
    border: none;
    padding: 1rem 2rem;
    border-radius: 8px;
    font-size: 1rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    width: 100%;
    margin-top: 25px;
}

.CartButton:hover, .WholeSaleCartButton:hover {
    background-color: #009874;
    transform: translateY(-2px);
}

/* --- TABS --- */
.tabss {
    margin: 3rem auto;
    background: #fff;
    border-radius: 12px;
    padding: 2rem;
}

.nav-tabs {
    border-bottom: 2px solid #eee;
    display: flex;
    gap: 1rem;
}

.nav-tabs .nav-link {
    background: transparent;
    border: none;
    font-weight: 600;
    color: #555;
    padding: 0.75rem 1.5rem;
    border-radius: 6px;
    transition: all 0.3s ease;
}

.nav-tabs .nav-link.active {
    background-color: #00b894;
    color: #fff !important;
}

.nav-tabs .nav-link:hover {
    background: #059b7dff;
    color: #fff !important;
}

/* --- TAB CONTENT --- */
.tab-content {
    margin-top: 2rem;
}

.tab-content h3 {
    font-size: 1.2rem;
    font-weight: 600;
    color: #222;
}

.tab-content p {
    color: #555;
    line-height: 1.6;
}

.wrapper.mmmm {
    margin-top: 1.5rem;
    border-collapse: collapse;
    width: 100%;
}

.wrapper.mmmm td {
    vertical-align: top;
    border-bottom: 1px solid #eee;
    padding: 11px 0;
}

/* --- RELATED PRODUCTS --- */
.item-holder {
    background: #fff;
    border: 1px solid #eee;
    border-radius: 12px;
    overflow: hidden;
    text-align: center;
    transition: all 0.3s ease;
    box-shadow: 0 2px 10px rgba(0,0,0,0.03);
    margin-bottom: 2rem;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    height: 100%;
}

.item-holder:hover {
    transform: translateY(-5px);
    box-shadow: 0 6px 20px rgba(0,0,0,0.08);
}

.item-holder img {
    width: 100%;
    height: 230px;
    object-fit: cover;
}

.item-holder .name a {
    color: #111;
    font-weight: 600;
    text-decoration: none;
    display: block;
    padding: 0.6rem;
    font-size: 1rem;
}

.item-holder .name a:hover {
    color: #00b894;
}

.item-holder .price {
    font-size: 1.1rem;
    color: #00b894;
    font-weight: 700;
    margin: 0.3rem 0;
}

.item-holder .pricePerDozen {
    font-size: 0.85rem;
    color: #777;
}
.pricePerDozen{
    text-transform: capitalize;
    font-size: 15px;
    padding:0 20px;
}
/* Toggle button base */
.menu-toggle {
  display: none;
  background: none;
  border: none;
  font-size: 26px;
  cursor: pointer;
  color: #333;
  position: relative;
  z-index: 10;
}

/* Small box dropdown */
.menu-box {
    display: none;
    position: absolute;
    top: 20%;
    right: 187px;
    background: #fff;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
    border-radius: 8px !important;
    overflow: hidden;
    z-index: 999;
    min-width: 200px;
    animation: fadeIn 0.25s ease;
}

.menu-box.active {
  display: block;
}
.menu-box .container {
    padding: 0 !important;
}   

.menu-box ul {
  list-style: none;
  margin: 0;
  padding: 0;
}

.menu-box ul li a {
  display: block;
  padding: 10px 14px;
  color: #333;
  text-decoration: none;
  font-size: 15px;
  text-align: left;
  border-bottom: 1px solid #eee;
}

.menu-box ul li:last-child a {
  border-bottom: none;
}

.menu-box ul li a:hover {
  background: #f6f6f6;
}

.mainchekss {
    display: flex;
    justify-content: space-between;
}
.mychexas {
    display: flex;
    flex-direction: column;
    align-items: center;
}
@keyframes fadeIn {
  from { opacity: 0; transform: translateY(-6px); }
  to { opacity: 1; transform: translateY(0); }
}

.top-links {
    display: flex;
    justify-content: space-between;
    align-items: center;
}
.mylinkss {
    display: flex;
    padding-right: 18px;
}
.mylinkss a {
    display: inline-block;
    padding: 0 0 0 12px;
}
.mylinkss img {
    width: 30px;
}
.inactive-lang {
    filter: grayscale(100%);
    opacity: 0.5;
}
.modern-marquee {
    width: 100%;
    background-color: #00b894;
    color: #000;
    font-weight: 600;
    overflow: hidden;
    position: relative;
    font-size: 20px;
    padding: 20px 0;
    border-radius: 100px;
    margin-bottom: 60px;
    box-sizing: border-box;
}

.modern-marquee {
    width: 100%;
    background-color: #00b894;
    color: #000;
    font-weight: 600;
    overflow: hidden;
    position: relative;
    font-size: 20px;
    padding: 20px 0;
    border-radius: 100px;
    margin-bottom: 60px;
    box-sizing: border-box;
}

.modern-marquee {
    width: 100%;
    overflow: hidden;
    background: #000;
    color: #fff;
}

.marquee-wrapper {
    overflow: hidden;
}

.marquee-track {
    display: flex;
    width: max-content;
    animation: marquee 40s linear infinite;
}

.marquee-content {
    display: flex;
    gap: 80px;
    padding-right: 80px;
    white-space: nowrap;
}

.marquee-content span {
    font-size: 14px;
    cursor: default;
}

/* Pause on hover */
.modern-marquee:hover .marquee-track {
    animation-play-state: paused;
}

/* Infinite seamless animation */
@keyframes marquee {
    from {
        transform: translateX(0);
    }
    to {
        transform: translateX(-50%);
    }
}
/* Responsive adjustments */

/* Responsive adjustments */
@media (max-width: 1200px) {
    .modern-marquee {
        font-size: 18px;
        padding: 16px 0;
    }
    .marquee-content {
        gap: 80px;
    }
}

@media (max-width: 992px) {
    .modern-marquee {
        font-size: 16px;
        padding: 14px 0;
    }
    .marquee-content {
        gap: 60px;
    }
}

@media (max-width: 768px) {
    .modern-marquee {
        font-size: 14px;
        padding: 12px 0;
        margin-bottom: 34px;
        margin-top: 40px;
    }
    .marquee-content {
        gap: 40px;
    }
}

@media (max-width: 576px) {
    .modern-marquee {
        font-size: 12px;
        padding: 10px 0;
    }
    .marquee-content {
        gap: 30px;
    }
}
@media only screen and (max-width:1040px)
{
    .main-nav ul {
        display: flex;
        flex-wrap: nowrap;
        align-items: center;
    }
    .main-nav li a {
        font-size: 13px;
    }
    .wholesales {
        padding: 10px 15px;
    }
}
/* --- RESPONSIVE DESIGN --- */
@media (max-width: 992px) {
    .detailsnow {
        flex-direction: column;
        padding: 1.5rem;
    }

    .imgeleftss, .Addtocartss {
        flex: 1 1 100%;
    }

    .w-product-name h1 {
        font-size: 1.7rem;
    }
    span#cart-count {
    font-size: 11px;
    }
    .menu-toggle { display: block; }
    .main-nav { display: none; }
    span#cart-count {
        font-size: 11px;
    }
    .secondright {
            width: 72%;
        }
            #carouselExample .carousel-item img {
        height: inherit;
    }
        .footer-top{
        text-align: left;
        flex-direction:inherit;
    }
}
@media only screen and (max-width:850px)
{
    .search-bar{
        display: none;
    }
    .logo img {
        height: 70px;
    }
    .secondright {
        padding: 0 6px;
        text-align: right;
        display: flex;
        justify-content: flex-start;
        flex-direction: row-reverse;
    }
    button.menu-toggle {
        padding: 0 27px;
    }
    .cart {
        font-size: 12px;
    }
    .wholesales{
        margin-right: 5px;
        padding:8px 10px;
        font-size: 14px;
    }
    .main-nav .container{
        padding: 0;
    }
}
@media only screen and (max-width:768px)
{
    .search-bar{
        display: none;
    }
    .logo{
        width: 100%;
    }
    .secondright {
        padding: 0 6px;
        text-align: right;
        display: flex;
        justify-content: flex-start;
        flex-direction: row-reverse;
    }
    button.menu-toggle {
        padding: 0 27px;
    }
    .cart {
        font-size: 12px;
    }
    .wholesales{
        margin-right: 5px;
        padding:8px 10px;
        font-size: 14px;
    }
    .main-nav .container{
        padding: 0;
    }
    .contact-info a i {
        font-size: 16px;
    }
    .contact-info a {
        font-size: 0;
    }
    .logo img {
        height: inherit;
        width: 186px;
    }

    .wholesale-storework-hero-title {
        font-size: 32px;
        font-weight: 700;
        margin-bottom: 10px;
    }

    .products {
        padding: 35px 0 0 0;
    }

    .newproducts h1 {
        font-size: 30px;     
    }

    .imageworks{
        padding: 0;
    }

    .mainworktags{
        padding: 0;
    }

    .imageworks img {
        width: 100%;
        border-radius: 10px;
    }

}

@media (max-width: 576px) {
    .CartButton {
        padding: 0.8rem 1.4rem;
        font-size: 0.95rem;
    }

    .nav-tabs .nav-link {
        font-size: 0.9rem;
        padding: 0.5rem 1rem;
    }

    .price {
        font-size: 1rem;
    }
    span#cart-count {
    font-size: 11px;
    }
    .orderheadingg{
        flex-direction:inherit;
    }
    .btn-info{
        padding: 8px 10px;
        font-size: 14px;
    }
}
@media only screen and (max-width:465px)
{
    .wholesales{
        display: none;
    }
    .wholesalesShow{
        display: block !important;
    }
    .top-links {
        display: flex;
    }
    .menu-toggle{
        padding-right: 0 !important;
    }
    .menu-box {
        top: 23%;
        right: 0;
        min-width: 100%;
    }
    .headingnewdata h1{
        font-size: 25px !important;
    }
    .mymenuicon {
        font-size: 25px;
        margin-top: 0;
    }
    .sidebardata {
        padding: 30px 18px;
    }
    .orderheadingg h3 {
        text-align: center;
        font-size: 18px;
        font-weight: 600;
    }
}
@media only screen and (max-width:464px)
{
    .top-bar a {
        font-size: 0 !important;
    }
    .top-bar a i {
        font-size: 18px;
    }
}