:root {
    --cb-green: #4A8C6F;
    --cb-bg: #F7F5F2;
}
html,
body {
    height: 100%;
    margin: 0;
    font-family: 'Open Sans', sans-serif;
}
p,span,a,li,label,input,textarea,select,button {
    font-size: 15px;
}
h1,h2,h3,h4,h5 {
    font-size: 25px !important;
}

/*====  HEADER CSS====*/
.site-header {
    background: #F7F5F2;
    position: relative;
    z-index: 1100;
}
.main-logo {
    max-height: 70px;
}

/*==== RECIPE SECTION ====*/
.recipes-wrap {
    padding: 40px 40px 5px;
}
.avatar {
    width: 28px;
    height: 28px;
    border-radius: 50%;
    display: inline-block;
}
.yellow {
    background: #FFC107;
}
.green {
    background: var(--cb-green);
}
.bubble-user {
    background: #F8FAFC;
    padding: 12px;
    border-radius: 24px;
    font-size: 15px;
    margin-left: 35px;
    display: inline-block;
}
.btn-send-desktop {
    background: var(--cb-green);
    border: none;
    width: 35px;
    height: 35px;
    display: flex;
    align-items: center;
    justify-content: center;
}
.badge-desktop {
    background: var(--cb-green);
    color: #fff;
    padding: 5px 15px;
    border-radius: 50px;
    font-size: 13px;
    font-weight: 100;
}
input.form-control::placeholder {
    font-size: 15px !important;
    font-style: italic !important;
    color: #475569 !important;
    opacity: 1 !important;
}
img#microphone {
    width: 22px;
    padding-right: 3px;
}
p.desc {
    color: #000 !important;
}
p.disclaimer.text-center.mt-3.mb-0.small.text-muted {
    color: #94A3B8 !important;
    font-size: 14px !important;
}
.btn:hover {
    background-color: #000;
}
.stretched-link::after {
    position: absolute;
    inset: 0;
    z-index: 1;
    content: "";
}
.bot-content {
    background: #F8FAFC;
    padding: 12px;
    border-radius: 20px;
}


/*chat results page */
.chat-results-page .chat-history-drawer{
    display: block;
}
.chat-results-page div#historyDrawer {
    padding: 10px;
}
.chat-results-page .chat-history-drawer {
    overflow-y: auto;
    scrollbar-width: thin;           /* Firefox */
    scrollbar-color: #d3d3d3 transparent;
}
.chat-results-page .chat-history-drawer::-webkit-scrollbar {
    width: 2px;
}
.chat-results-page .chat-history-drawer::-webkit-scrollbar-track {
    background: transparent;
}
.chat-results-page .chat-history-drawer::-webkit-scrollbar-thumb {
    background: #d6d6d6;
    border-radius: 20px;
}
.chat-results-page .chat-history-drawer::-webkit-scrollbar-thumb:hover {
    background: #bfbfbf;
}

/*detail pages */
.Breadcrumb a {
    color: #B4C4D8 !important;
    text-decoration: none;
	font-size:14px;
}
.Breadcrumb a:hover {
    text-decoration: underline;
}
#feature-img img {
    object-fit: cover;
    max-height: 400px;
}
.Breadcrumb a {
    color: #B4C4D8 !important;
}
.Breadcrumb {
    color: #B4C4D8 !important;
}
.recipe-badge {
    border: none;
    padding: 0;
    background: transparent;
    display: inline-flex;
    align-items: center;
    gap: 6px;
    font-size: 0.85rem;
    color: #6c757d;
    font-weight: 500;
}
.recipe-badge i {
    font-size: 0.85rem;
    color: #6c757d;
}
.btn-green-action {
    background-color: #3f8f4f;
    border: none;
    color: #fff;
    font-weight: 600;
    padding: 11px 18px;
    border-radius: 15px;
    width: 100%;
    transition: background-color 0.2s ease, transform 0.15s ease;
}
.btn-green-action:hover {
    background-color: #357a43;
    color: #fff;
    transform: translateY(-1px);
}
.delivered-btn {
    margin-top: 8px;
}

#shareicon {
    cursor: pointer;
    transition: color 0.2s ease;
	color:#3f8f4f !important;
}
.step-item h6 {
    display: inline;
}
.step-item {
    margin-bottom: 18px !important;
}
ul.ingredient-list {
    margin-bottom: 18px !important;
}
.beer-pairing-banner {
    background: #f3f1ea;
    border-radius: 16px;
    padding: 17px;
    margin-bottom: 37px;
    margin-top: 8px;
}
.get-beer a img {
    width: 18px;
    margin-right: 10px;
}
.get-beer a {
    padding: 8px 17px;
    width: auto;
    border-radius: 100px;
    font-size: 15px;
}
div#feature-img a {
    position: absolute;
    left: 35px;
    padding-top: 20px;
}
.get-beer {
    display: flex;
    justify-content: flex-end;
}
.step-item p {
    display: contents;
    margin-bottom: !important;
    color: #000 !important;
    font-size: 15px;
}
/*popup*/
/* Base Style: Mobile ke liye (Bottom me) */
.popup-overlay {
    display: none; 
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    justify-content: center;
    align-items: flex-end; /* Mobile: Bottom */
}
.popup-box {
    width: 95%;
    max-width: 400px;
    background: #f3f1ea;
    padding: 10px;
    border-radius: 20px 20px 0 0;
}
.delivery-img {
    width: 89%;
    height: auto;
    margin: 10px;
}
.popup-content {
    display: flex;
}
span#closePopup {
    position: relative;
    font-size: 22px;
    left: 94%;
}
img.delivery-img {
    margin-top: -4px;
    border-radius: 15px;
}
/* Desktop ke liye (Center me) */
@media (min-width: 768px) {
    .popup-overlay {
        align-items: center; /* Desktop: Center */
    }
.popup-box {
    border-radius: 15px;
    width: auto;
    background: #F7F5F2 !important;
}
}
/*==== DESKTOP MEDIA QUERY (992px+) ====*/
@media (min-width: 992px) {
	body { display: flex; flex-direction: column; overflow: hidden; }
    .container-fluid,
    .row {
        flex: 1;
        overflow: hidden;
    }
    .sidebar-column {
        height: 100%;
        display: flex;
        flex-direction: column;
        justify-content: flex-end;
    }
    .chat-history-drawer {
        display: none;
    }
    .recipe-main-scroll {
        height: 100%;
        overflow-y: auto;
        background: #fff;
    }
    .recipe-card-h {
        background: var(--cb-bg);
        border-radius: 35px;
        margin-bottom: 35px;
    }
    .recipe-card-h:nth-child(even) {
        flex-direction: row-reverse !important;
    }
    .recipe-card-h:nth-child(even) img {
        border-radius: 0 35px 35px 0 !important;
    }
    .recipe-card-h:nth-child(odd) img {
        border-radius: 35px 0 0 35px !important;
    }
    .img-box {
        flex: 0 0 328px;
    }

    .img-box img {
        width: 100%;
        height: 220px;
        object-fit: cover;
    }
}    

/*==== MOBILE MEDIA QUERY (991px & BELOW) ====*/
@media (max-width: 991px) {
	.col-md-7.detail-p {
    margin-top: 0px;
}
	.d-flex.flex-wrap.gap-3.mb-2 {
        flex-direction: column;
    }
	.get-beer {
    justify-content: center;
}
    .custom-input-card {
        border-radius: 20px;
        overflow: hidden;
        padding: 10px;
    }
    .custom-input-card textarea {
        font-size: 14px;
        resize: none;
        border: none;
    }
    .mic-circle {
        width: 35px;
        height: 35px;
        border: 1px solid #eee;
    }
    .btn-send-mobile {
        background: var(--cb-green);
        color: #fff;
        border: none;
        border-radius: 50px;
        padding: 6px 18px;
        font-size: 14px;
    }
    .drag-handle-mobile {
        display: flex;
        justify-content: center;
        padding: 12px 0;
        cursor: grab;
        touch-action: none;
        background: #fff;
    }
    .handle-line {
        width: 75px;
        height: 4px;
        background: #EEEEEE;
        border-radius: 10px;
    }
    .chat-history-drawer {
        height: 0;
        overflow: hidden;
        background: #fff;
        transition: none;
    }
    .recipes-wrap {
        padding: 15px !important;
    }
    .recipes-wrap h2 {
        font-size: 16px !important;
    }
    .recipe-card-h {
        background: transparent;
        margin-bottom: 25px;
        border-radius: 0;
    }
    .recipe-card-h:last-child {
        margin-bottom: 0 !important;
    }
    .img-box {
        flex: 0 0 100%;
    }
    .img-box img {
        width: 100%;
        height: 165px;
        object-fit: cover;
        border-radius: 15px !important;
    }
    .title {
        font-size: 15px;
        margin-top: 8px;
        font-weight: 600;
    }
    .info-box {
        padding: 0 !important;
    }
    #recipe-heading-box {
        justify-content: space-between;
        margin-top: 11px;
        margin-bottom: 2px !important;
    }
    p.mobile-sub {
        margin-bottom: -3px;
    }
    p.desc {
        display: -webkit-box;
        -webkit-line-clamp: 1;
        -webkit-box-orient: vertical;
        overflow: hidden;
        text-overflow: ellipsis;
        margin-bottom: -2px;
        color: #6B6B6B !important;
    }
}

@media (min-width: 768px) {
    .recipe-card-h.d-flex.flex-column.flex-md-row.position-relative {
        align-items: center;
    }
	img.breadcrumb-icon {
    display: none;
}
}