.product-card {
    border: none;
    border-radius: 12px;
    overflow: hidden;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    box-shadow: 0 4px 10px rgba(0,0,0,0.1);
}
.product-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 6px 18px rgba(0,0,0,0.2);
}
.product-img {
    height: 100%;
    width: 100%;
}
.product-price {
    color: #ffc107;
    font-weight: bold;
    font-size: 1.2rem;
}
.btn-cart {
    background: #ffc107;
    color: #212529;
    border-radius: 50px;
    font-weight: 600;
    padding: 8px 20px;
    transition: all 0.3s ease;
    box-shadow: 0 4px 10px rgba(0,0,0,0.2);
}
.btn-cart:hover {
    background: #e0a800;
    color: #fff;
    transform: translateY(-2px);
    box-shadow: 0 6px 15px rgba(0,0,0,0.3);
}
.btn-cart-buy{
    background: #ffc107;
    color: #212529;
    border-radius: 50px;
    font-weight: 600;
    padding: 8px 20px;
    transition: all 0.3s ease;
    box-shadow: 0 4px 10px rgba(0,0,0,0.2);
}
.card-title {
    font-size: 1.5rem;
    font-weight: 600;
    color:  #251c00ff;
    -webkit-text-stroke: 1.5px #251c00ff;
    /* text-stroke: 1.5px #251c00ff; */
    letter-spacing: 1px;
    /* text-transform: uppercase; */
    text-shadow: 0 0 8px rgba(255, 187, 0, 0.66);
}


/* Small drop shadow for navbar */
.navbar {
    box-shadow: 0 2px 6px rgba(126, 124, 3, 1); /* X, Y, Blur, Color */
    z-index: 1030; /* keep navbar above carousel */
}
.navbar-nav .nav-link {
    color: #aaa;
    display: inline-flex;
    align-items: center;
    transition: all 0.3s ease;
}
.navbar-nav .nav-link i {
    margin-right: 6px;
    transition: all 0.3s ease;
}
/* Hover */
.navbar-nav .nav-link:hover {
    color: #f0f0f0;
}
.navbar-nav .nav-link:hover i {
    color: #f0f0f0;
    transform: scale(1.2);
}
/* Active link + glow */
.navbar-nav .nav-link.active {
    color: #ffcc00;
    font-weight: bold;
}
.navbar-nav .nav-link.active i {
    color: #ffcc00;
    text-shadow: 0 0 8px #ffcc00, 0 0 15px #ffcc00;
    transform: scale(1.2);
}
.logo{
    width: 60px;
    height: 60px;
    border-radius: 50%;
    box-shadow: 0px 8px 18px #352700; /* shadow for outside portion */
    /* position: absolute;
    transform: translate(-25%, -10%); */
}
.logo_text{
    padding-left:10px;
}
.contain_section{
    margin-top:6%;
    padding-top:5%;
}

html, body {
  height: 100%;
  margin: 0;
}

body {
  display: flex;
  flex-direction: column;
  min-height: 100vh; /* make body full viewport height */
}

main {
  flex: 1; /* takes remaining space */
  display: block;
  background-color: #f8f9fa;
  padding: 2rem;
  /* ❌ REMOVE min-height — let content decide height */
}

footer {
  min-height: 160px;
  /*padding:20px;*/
}
.line-through {
  text-decoration: line-through;
}
</style>