.lc_product-image {
    width: 100%;
    height: 250px;      /* default height */
    object-fit: cover;  /* keeps ratio, centers, crops cleanly */
    border-radius: 10px;
}
#categoryTabs1 .filter.active {
    font-weight: 600;
    color: #000;
}
/* ==========================
   PRODUCT CARD FIX  (lc_)
   ========================== */

.lc_card {
    position: relative;
    border-radius: 12px;
    overflow: hidden;
    height: 350px;           /* FIXED HEIGHT LIKE SAMPLE */
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    background: #eee;
}

/* FULL BACKGROUND IMAGE */
.lc_card img {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    z-index: 1;
}

/* BLUE OVERLAY */
.lc_card::after {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(3, 54, 87, 0.6); 
    z-index: 2;
}

/* DISCOUNT TEXT TOP LEFT */
.lc_discount {
    position: absolute;
    top: 20px;
    left: 20px;
    z-index: 3;
    color: #fff;
}

.lc_discount h4 {
    font-size: 38px;
    line-height: 34px;
    font-weight: 700;
}

/* PRODUCT TEXT + BUTTON */
.lc_content {
    position: relative;
    z-index: 3;
    padding: 20px;
    color: #fff;
}

.lc_content h5 {
    margin: 0;
    font-size: 20px;
    font-weight: 600;
}

.lc_content p {
    margin: 0;
    font-size: 16px;
}

.lc_btn a {
    display: inline-block;
    margin-top: 12px;
    padding: 10px 22px;
    background: rgba(255, 255, 255, 0.85);
    color: #000;
    border-radius: 6px;
    font-weight: 600;
    text-decoration: none;
}
/* ------------------------------
   LC Custom Styling for Products
   ------------------------------ */

.lc_product_image_wrapper {
    width: 100%;
    height: 260px; /* Set default height */
    overflow: hidden;
    border-radius: 10px;
    background: #f9f9f9;
    display: flex;
    justify-content: center;
    align-items: center;
}

.lc_product_image_wrapper img {
    width: 100%;
    height: 100%;
    object-fit: cover; /* Perfect crop, no stretching */
    display: block;
}

.lc_product_card {
    border-radius: 12px;
    overflow: hidden;
    background: #fff;
    transition: all 0.3s ease;
    border: 1px solid #eee;
}

.lc_product_card:hover {
    transform: translateY(-5px);
    box-shadow: 0 4px 20px rgba(0,0,0,0.08);
}


.active .nav-link {
  color: #64b496!important;
  font-weight: 600;
}

/* Modal Container */
.lc_modal_dialog {
    max-width: 500px;
}

.lc_modal_content {
    border-radius: 15px;
    padding: 20px;
    background: #ffffff;
    border: none;
    box-shadow: 0 10px 35px rgba(0,0,0,0.15);
    animation: lc_modal_show 0.3s ease;
}

@keyframes lc_modal_show {
    from { transform: scale(0.95); opacity: 0; }
    to { transform: scale(1); opacity: 1; }
}


/* Header */
.lc_modal_header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    border-bottom: none;
    padding-bottom: 0;
}

.lc_modal_title {
    font-size: 20px;
    font-weight: 600;
}

/* Product Preview */
.lc_modal_product {
    display: flex;
    align-items: center;
    background: #f7f8fa;
    padding: 12px;
    border-radius: 12px;
    margin: 15px 0;
    gap: 15px;
}

.lc_modal_product img {
    width: 70px;
    height: 70px;
    border-radius: 10px;
    object-fit: cover;
}

.lc_modal_product h6 {
    font-size: 17px;
    margin: 0;
}

.lc_product_id {
    font-size: 13px;
    color: gray;
    margin: 0;
}

/* Inputs */
.lc_label {
    font-size: 14px;
    margin-bottom: 3px;
    display: block;
    font-weight: 500;
}

.lc_input {
    border-radius: 10px;
    padding: 10px;
}

/* Buttons */
.lc_btn_enquiry {
    background: #64b496;
    color: #fff;
    border-radius: 10px;
    border: none;
    /* padding: 8px 0; */
    font-weight: 600;
}

.lc_btn_submit {
    background: #64b496;
    color: white;
    border-radius: 10px;
  
    font-weight: 600;
}

.lc_btn_submit:hover {
    background: #64b496;
}
.lc_input_icon_box {
    position: relative;
}

.lc_input_icon_box input {
    padding-right: 40px; /* space for icon */
}

.lc_toggle_password {
    position: absolute;
    right: 12px;
    top: 50%;
    transform: translateY(-50%);
    cursor: pointer;
    font-size: 18px;
    color: #666;
}

.lc_toggle_password:hover {
    color: #333;
}
/* 
OTP Page Design */

.lc-otp-box {
  background: #fff;
  border-radius: 12px;
  padding: 30px 25px;
  box-shadow: 0 10px 25px rgba(0,0,0,0.1);
}
.lc-otp-title { font-weight: 600; font-size: 20px; }
.lc-otp-subtitle { font-size: 14px; color: #555; }

.lc-otp-inputs input.lc-otp-input {
  width: 45px; height: 50px; text-align: center; font-size: 20px;
  border: 1px solid #ccc; border-radius: 8px; outline: none; transition: all 0.2s;
}
.lc-otp-inputs input.lc-otp-input:focus {
  border-color: #007bff; box-shadow: 0 0 5px rgba(0,123,255,0.3);
}

.lc-resend-otp { color: #007bff; text-decoration: none; font-weight: 500; }
.lc-resend-otp:hover { text-decoration: underline; }