/* Overlay */
.overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.6);
    display: none;
    z-index: 99;
}

/* Search Result Dropdown */
.search_div {
    padding: 8px 8px;
    display: flex;
    align-items: center;
    gap: 4px;
    border-radius: 26px;
    background: #FDFDFD;
    position: relative;
    z-index: 999999;
}

.search-item {
    padding: 4px;
    border-bottom: 1px solid #eee;
    cursor: pointer;
    display: flex;
    gap: 6px;
    align-items: center;
}

.search-item .search-img {
    background: linear-gradient(to bottom, #EFEFEF, #FFFFFF);
    width: 26px;
    padding: 2px;
    border-radius: 4px;
}

.search-item p {
    margin-bottom: 0;
}

.search-item:last-child {
    border-bottom: none;
}

.search-item:hover {
    background: #f5f5f5;
}

.checkout-section {
    width: 100%;
    background: #FFFBF4;
    padding: 40px 0;
}

h4,
h5 {
    color: #482817;
    font-weight: 600;
}

.form-control,
.form-select {
    border-radius: 6px;
    padding: 10px;
    border: 1px solid #ddd;
}

.checkout-box {
    border-radius: 8px;
    padding: 20px;
}

.order-summary {
    background: #fff;
    border: 1px solid #eee;
    border-radius: 8px;
    padding: 20px;
}

.order-item {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 10px;
    border-bottom: 1px solid #eee;
    padding-bottom: 10px;
}

.order-item img {
    width: 40px;
    margin-right: 10px;
}

.order-details {
    flex: 1;
}

.total {
    font-size: 18px;
    font-weight: bold;
    color: #482817;
}

.payment-method label {
    margin-left: 5px;
}

.form-check-input:checked+label {
    color: #AE0A09;
    /* red */
    font-weight: 600;
    /* optional: thoda bold */
}

.btn-placeorder:hover {
    background: #8b0807;
}

.checkout {
    text-decoration: none;
    background: #AE0A09;
    color: #fff;
    padding: 10px 20px;
    border-radius: 30px;
}

.checkout:hover {
    color: #fff;
}

/* View Cart Styling start */
.view-cart-section {
    width: 100%;
    background: #FFFBF4;
    padding: 40px 0;
}

.Shopping-text {
    color: #482817;
    text-align: center;
    font-weight: bold;
    margin-bottom: 30px;
}

.cart-table {
    width: 100%;
    background: #fff;
    border: 1px solid #eee;
    border-radius: 8px;
    padding: 20px;
}

.cart-table table th {
    color: #482817;
    font-weight: 600;
    border-bottom: 2px solid #eee;
}

.cart-table table td {
    vertical-align: middle;
}

.cart-table img {
    width: 40px;
    margin-right: 10px;
}

.product-bg {
    background: #EFEFEF;
    padding: 4px 10px;
    margin-right: 10px;
    border-radius: 6px;
}

.product-bg img {
    width: 50px;
    margin: auto;
}

.cart-table .quantity {
    color: #482817;
    font-size: 18px;
    font-weight: bold;
}

.cart-table .price {
    font-size: 20px;
    color: #AE0A09;
    font-weight: bold;
}

.remove-btn {
    border: none;
    background: transparent;
    font-size: 20px;
    cursor: pointer;
    color: #888;
}

.cart-summary {
    background: #fff;
    border: 1px solid #eee;
    border-radius: 8px;
    padding: 20px;
}

.cart-summary h5 {
    color: #482817;
    font-weight: bold;
}

.cart-summary .price {
    color: #AE0A09;
    font-weight: bold;
}

.btn-checkout {
    width: 100%;
    background: #AE0A09;
    color: #fff;
    font-size: 18px;
    font-weight: bold;
    padding: 12px;
    border-radius: 30px;
    border: none;
    margin-top: 15px;
}

.btn-checkout:hover {
    background: #8b0807;
}

.btn-outline {
    border-radius: 30px;
    padding: 8px 20px;
    font-weight: 600;
    border: none;
}

.btn-return {
    background: #AE0A091A;
    color: #AE0A09;
    text-decoration: none;
}

.btn-home {
    background: #f3f3f3;
    color: #482817;
    text-decoration: none;
}

.btn-home:hover,
.btn-return:hover {
    color: #AE0A09;
}

/* Page nOT FOUND styling */
.not-found-section {
    width: 100%;
    background: #FFFBF4;
    padding: 40px 0;
}

.not-found {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}

.not-found img {
    width: 400px;
}

.not-found h1 {
    color: #482817;
    font-weight: 600;
    font-size: 36px;
    margin-top: 10px;
    margin-bottom: 10px;
}

.not-found p {
    text-align: center;
    font-size: 18px;
    color: #482817;
    line-height: 20px;
}

.not-found a {
    text-decoration: none;
    background: #AE0A09;
    color: #fff;
    border-radius: 30px;
    padding: 6px 30px;
    font-size: 18px;
    margin-top: 10px;
}

.not-found a:hover {
    color: #fff;
}


/* Dashboard section styling start */
.dashboard-section {
    width: 100%;
    background: #FFFBF4;
    padding: 20px 0;
}

.welcome {
    margin-bottom: 30px;
    font-size: 20px;
    color: #482817;
    display: flex;
    align-items: center;
    gap: 5px;
}

.welcome a {
    text-decoration: none;
    color: #482817;
    font-weight: 500;
}

.welcome span {
    font-weight: 600;
}

.welcome a:hover {
    color: #482817;
}

.sidebar {
    background: #f5ecdf;
    height: 100%;
    min-height: 35vh;
    padding: 20px;
    border-radius: 12px;
    box-shadow: 0px 6px 5px rgba(0, 0, 0, 0.1);
}

.sidebar .nav-link {
    width: 100%;
    color: #333;
    font-weight: 500;
    padding: 12px 15px;
    border-radius: 8px;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    gap: 10px;
}

.flex-column {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

/* .sidebar .nav-link i {
    font-size: 18px;
} */
.flex-rders {
    text-decoration: none;
    color: #333;
}

.sidebar .nav-link.active {
    background: #fff;
    color: #c00;
    /* font-weight: bold; */
}

.flex-rders:hover,
.sidebar .nav-link:hover {
    background: #fff;
    color: #AE0A09;
}

.order-flex {
    width: 100%;
    display: flex;
    gap: 20px;
    align-items: center;
    justify-content: space-between;
    cursor: pointer;
}

.order-flex:hover {
    background: #fff;
    color: #AE0A09;
    border-radius: 8px;
}

.order-flex.rotate .arrow-icon:last-child {
    transform: rotate(180deg);
    transition: transform 0.3s ease;
}

.submenu {
    display: none;
    flex-direction: column;
    margin-left: 20px;
}

.submenu a {
    font-size: 16px;
    color: #555;
    padding: 8px 12px;
    border-radius: 6px;
    text-decoration: none;
    transition: 0.3s;
}

.sidebar .nav-link.active,
.submenu a.active {
    background: #fff;
    color: #c00 !important;
    /* font-weight: bold; */
}

.submenu a:hover {
    background: #fff;
    color: #c00;
}

.content h2 {
    color: #AE0A09;
    font-weight: bold;
    margin-bottom: 25px;
}

.form-section {
    margin-bottom: 15px;
    padding-bottom: 15px;
    /* border-bottom: 1px solid #eee; */
}

.form-section h5 {
    font-size: 24px;
    color: #482817;
    font-weight: 600;
    border-top: 1px solid #E6E6E6;
    padding-top: 10px;
}

label {
    font-weight: 500;
    margin-bottom: 5px;
}

.btn-save {
    background: #c00;
    color: #fff;
    padding: 10px 25px;
    border-radius: 8px;
    border: none;
    transition: 0.3s;
}

.btn-save:hover {
    background: #a00;
}


/* ayment Received Order styling */
.order-header {
    color: #AE0A09;
    font-weight: 600;
    margin-bottom: 20px;
}

.order-card {
    background: #fff;
    border-radius: 10px;
    padding: 10px;
    box-shadow: 0px 2px 8px rgba(0, 0, 0, 0.05);
 
    border: 1.5px solid #E6E6E6;
}

.order-card h2 {
    font-size: 18px;
    color: #482817;
     margin-bottom: 5px;
}

.table-card {
    width: 100%;
    display: grid;
    gap: 80px;
    grid-template-columns: repeat(2, 1fr);
    border-bottom: 1.5px solid#E6E6E6;
    padding-bottom: 5px;
    margin-bottom: 5px;
}

.table-card .table-data-flex {
    width: 100%;
    display: flex;
    justify-content: space-between;
}

.table-data-flexs strong,
.table-card .table-data-flex strong {
    font-size: 14px;
    color: #482817;
}

.table-card .table-data-flex span {
    text-align: left;
    font-size: 14px;
    color: #999999;
    font-weight: 500;
}

.table-data-flexs {
    width: 50%;
    display: flex;
    justify-content: space-between;
  

}

.table-data-flexs .view {
    text-decoration: none;
    color: #AE0A09;
    padding: 0px 28px;
    border-radius: 20px;
    font-size: 14px;
    font-weight: 600;
}

.table-responsive {
    background: #fff;
    padding: 10px;
    border-radius: 10px;
    box-shadow: 0px 2px 8px rgba(0, 0, 0, 0.05);
    border: 1.5px solid #E6E6E6;
   
}

.label {
    font-weight: 600;
    color: #333;
}

.btn-view {
    background: #f7d9d9;
    color: #AE0A09;
    border-radius: 20px;
    padding: 6px 20px;
    font-weight: 600;
}

.table tbody {
    border-top: 1.5px solid#E6E6E6;
}

.table th {
    background: #fff4f2;
}

.table td {
    vertical-align: middle;
}

.price-red {
    color: #AE0A09;
    font-weight: 600;
}

.Payment-img {
    width: 60px;
    padding: 4px 0;
    background: #EFEFEF;
    margin: auto;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 6px;
}

.product-img {
    width: 40px;
    height: auto;
}

.input-flex {
    display: grid;
    gap: 20px;
    grid-template-columns: repeat(2, 1fr);
}

.input-flex input {
    width: 100%;
}

.save-btn {
    border: none;
    background: #AE0A09;
    color: #fff;
    padding: 6px 30px;
    border-radius: 30px;
    font-size: 20px;
    /* margin-top: 10px; */
    transition: all 0.3s ease;
}

.save-btn:hover {
    background: #8b0807;
}

/* Our products section styling */
.our-products {
    width: 100%;
    background: #FFFBF4;
    padding: 40px 0;
}

.filter-div {
    display: inline-block;
    background: #C51E1E;
    color: #fff;
    margin-bottom: 10px;
    padding: 6px 30px;
    border-radius: 30px;
    font-size: 18px;
    font-weight: 500;
}

.filter-div img {
    width: 20px;
    margin-left: 10px;
}

.filter-section {
    border: 1px solid #DEDEDE;
    border-radius: 8px;
    padding: 15px;
   /* height: 90%; */
    /* box-shadow: 0 2px 6px rgba(0, 0, 0, 0.1); */
}

.cate-flex {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 10px;
    cursor: pointer;
}

.v-l-c {
    color: #C51E1E;
    font-weight: 600;
    cursor: pointer;
    margin-bottom: 10px;
}

.cate-flex img {
    margin-top: -5px;
    transition: transform 0.3s;
}

.cate-flex h6 {
    font-size: 20px;
    font-weight: 600;
    color: #482817;
}

.price-div {
    margin-top: 10px;
}

.unit-div {
    margin-top: 10px;
}

.form-container {
    margin-top: 10px;
    display: block;
    /* default visible */
}

.form-container.hidden {
    display: none;
}

.rotate {
    transform: rotate(180deg);
    transition: transform 0.3s;
}

.selected {
    padding: 6px;
    outline: none;
    border: 1px solid #E6E6E6;
    background: transparent;
    border-radius: 6px;
    margin-top: 10px;
}

.product-card {
    background: #fff;
    border-radius: 8px;
    text-align: center;
    margin-bottom: 20px;
    border: 1px solid #DEDEDE;
    transition: all 0.3s ease;
}
.product-card:hover{
    box-shadow: 0px 2px 4px rgba(0, 0, 0, 0.2);

}

.img-div {

    background: #EFEFEF;
    border-top-right-radius: 8px;
    border-top-left-radius: 8px;
    overflow: hidden;
}

.our-button-flex {
    display: flex;
    gap: 5px;
    justify-content: space-between;
}

.our-button-flex .best {
    background: #AE0A09;
    color: #fff;
    border-radius: 30px;
    padding: 2px 8px;
}

.our-button-flex .best2 {
    background: #fff;
    color: #AE0A09;
    border-radius: 30px;
    padding: 2px 8px;
    font-weight: 600;
}

.product-card img {
    object-fit: contain;
}

.product-text {
    padding: 10px;
    text-align: left;
}

.product-text h6 {
    font-size: 18px;
    color: #AE0A09;
    font-weight: bold;
}
.main_cards_image1 {
    height: 90%;
}

.product-text p {
    font-size: 18px;
    color: #482817;
    font-weight: bold;
    line-height: 22px;
    margin-bottom: 10px;
    height: 20px;
}

.product-text .text-flex {
   display: flex;
    justify-content: space-between;
    align-items: baseline;
    gap: 20px;
}

.product-text .text-flex .our-p {
    font-size: 18px;
    color: #AE0A09;
    font-weight: 400;
  height: 20px;
}

.product-text .text-flex .our-span {
    font-size: 18px;
    color: #999999;
    text-decoration: line-through;
    font-weight: 400;
}

.product-text .text-flex span {
    font-size: 16px;
    color: #AE0A09;
}

.badge-custom {
    position: absolute;
    top: 10px;
    left: 10px;
    font-size: 12px;
}

.price {
    font-size: 1.2rem;
    color: #c00;
    font-weight: bold;
}

.old-price {
    text-decoration: line-through;
    color: #999;
    margin-left: 5px;
}

.remaining {
    font-size: 0.85rem;
    color: #c00;
}


/* event section styling */
.event-card {
    width: 100%;
    height: fit-content;
    background: #fff;
    border-radius: 8px;
    box-shadow: 0 2px 6px rgba(0, 0, 0, 0.1);
    overflow: hidden;
    margin-bottom: 20px;
    padding: 10px;
    display: flex;
    flex-wrap: wrap;
    gap: 20px;
    align-items: center;
    transition: all 0.3s ease;
}

.event-card:hover {
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
}

.event-card:hover .event-img img {
    transform: none;
}

.form-select-event {
    background: transparent;
    padding: 6px 16px;
    border: 1px solid #E6E6E6;
    border-radius: 6px;
    outline: none;
}

.event-date {
    background: #c91f1f;
    color: #fff;
    text-align: center;
    padding: 4px;
    border-top-left-radius: 6px;
    border-top-right-radius: 0px;
    border-bottom-left-radius: 0px;
    border-bottom-right-radius: 0px;
    font-weight: bold;
    width: 40px;
    position: absolute;
    top: 0;
    left: 0px;
}

.event-date span {
    display: block;
    font-size: 12px;
}

.event-img {
    border-radius: 6px;
    position: relative;
    padding:0px!important;
}

.event-img img {
    width: 100%;
    border-radius: 6px;
}

.event-details span {
    font-size: 20px;
    color: #AE0A09;
    font-weight: bold;
}

.event-details h5 {
    font-size: 22px;
    font-weight: bold;
    margin-bottom: 10px;
}

.event-meta {
    font-size: 16px;
    color: #555;
    display: flex;
    gap: 4px;
    /* align-items: center; */
}

.event-meta img {
    width: 20px;
    margin-top: 5px;
}

.event-right {
    border-left: 1px solid #eee;
    padding-left: 20px;
}

.event-right h6 {
    font-size: 20px;
    color: #482817;
    font-weight: bold;
}

.event-actions {
    display: flex;
    gap: 15px;
    align-items: center;
}

.event-actions img {
    width: 30px;
}

.event-actions i:hover {
    color: #a01010;
}

.about-text {
    font-size: 20px;
    color: #AE0A09;
}

/* product details page styling */
.view-product-img {
    display: flex;
    /* justify-content: center; */
    align-items: center;
    gap: 20px;
    flex-direction: column;
}

.view-product-img .thumb-img {
    width: 80px;
    height: 80px;
    background: linear-gradient(to bottom, #EFEFEF, #FFFFFF);
    border-radius: 6px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.view-product-img .thumb-img img {
    width: 60px;
}

.main-product-img {
    width: 100%;
  
  
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 6px;
    background: linear-gradient(to bottom, #EFEFEF, #FFFFFF);
}


.main-product-img .product-wine-img {
    width: 410px;
}

.product-details-content h3 {
    font-size: 28px;
    color: #482817;
    font-weight: bold;
}

.product-details-content h5 {
    font-size: 22px;
    color: #AE0A09;
    font-weight: 500;
}

.price {
    font-size: 22px;
    color: #482817;
    font-weight: bold;
}

.old-price {
    font-size: 22px;
    text-decoration: line-through;
    color: #999999;
    margin-left: 6px;
    margin-right: 8px;
}

.text-mute {
    color: #AE0A09;
    padding-bottom: 10px;
    border-bottom: 1.5px solid #E6E6E6;
}

.discount {
    color: #b00020;
    font-size: 0.9rem;
    margin-left: 5px;
    background: #ffe6e6;
    padding: 2px 6px;
    border-radius: 4px;
}

.product-details-content h6 {
    font-size: 22px;
    color: #482817;
    font-weight: 600;
}

.product-details-content .desc {
    font-size: 18px;
    color: #482817;
    line-height: 20px;
}

.unit-btn {
    border: 1px solid #E6E6E6;
    padding: 5px 15px;
    border-radius: 5px;
    background: #fff;
    cursor: pointer;
    transition: 0.3s;
}

.unit-btn.active,
.unit-btn:hover {
    border: 1px solid #b00020;
    color: #b00020;
}

.quantity-group {
    width: 120px;
    display: flex;
    gap: 10px;
    align-items: center;
    border: 1px solid #E6E6E6;
    padding: 6px 12px;
    border-radius: 30px;
}

.quantity-group .plus-btn {
    width: 30px;
    height: 30px;
    background: #F2F2F2;
    border: none;
    border-radius: 50%;
    font-size: 22px;
    font-weight: bold;
    display: flex;
    align-items: center;
    justify-content: center;
}

.quantity-group input {
    width: 20px;
    margin-left: 6px;
    border: none;
    outline: none;
}

.quantity-div {
    width: 100%;
    display: flex;
    gap: 18px;
    background: #fff;
    padding: 14px 2px;
    border-top: 1px solid #E5E5E5;
    border-bottom: 1px solid #E5E5E5;
}

.btn-add {
    background-color: #b00020;
    color: #fff;
    border: none;
    border-radius: 25px;
    padding: 10px 25px;
    /* margin-right: 14px; */
    display: flex;
    gap: 6px;
    align-items: center;
}

.btn-add img {
    width: 16px;
}

.btn-cart-view {
    text-decoration: none;
    background: #AE0A091A;
    color: #b00020;
    border-radius: 25px;
    padding: 10px 20px;
    font-size: 18px;
    /* background: #fff; */
}

.btn-cart-view:hover {
    color: #b00020;
}

.long-desc {
    margin-top: 60px;
}

.long-desc h6 {
    font-size: 26px;
    color: #232424;
}

.long-desc p {
    color: #482817;
}

#product-details-section {
    padding: 30px 0;
    background: #F5EBDA;
}

/* order confirmed page styling */
.order-cards {
    width: 100%;
    margin: auto;
    display: flex;
    justify-content: center;

}

.order-left {
    background-color: #F5EBDA;
    padding: 30px;
    border: 1px solid #E6E6E6;
    border-top-left-radius: 8px;
    border-bottom-left-radius: 8px;
}

.order-left h4 {
    font-weight: bold;
    margin-top: 10px;
    color: #4b2c1d;
}

.order-left table img {
    width: 40px;
    background: linear-gradient(to bottom, #EFEFEF, #FFFFFF);
    border-radius: 4px;
    padding: 2px;
}

.table-responsive2 {
    width: 95%;
    margin: auto;
    background: #fff;
    border-radius: 8px;
}

.table th {
    color: #6c6c6c;
    text-transform: uppercase;
    font-size: 12px;
}

.order-right {
    padding: 30px;
    background: #fff;
    border: 1px solid #E6E6E6;
    border-top-right-radius: 8px;
    border-bottom-right-radius: 8px;
}

.order-right h6 {
    font-weight: bold;
    margin-bottom: 15px;
}

.order-detail-section {
    margin-bottom: 25px;
}

.order-detail-section h6 {
    font-size: 24px;
    color: #482817;
    font-weight: 600;
}

.order-detail-section p {
    color: #482817;
}

.order-detail-section .id {
    font-size: 24px;
    color: #482817;
    font-weight: 600;
}

.order-detail-section img {
    width: 16px;
    /* margin-right: 10px; */
}

.order-detail-section .delivery {
    width: 25px;
}


@media (max-width: 991px) {
    .search_div {
        background: #cacaca;
        display: none;
    }

    .search-results {
        display: none;
    }

    .bag-div img:first-child {
        display: inline-block;
        margin-bottom: 10px;
    }

    .bag-div img:last-child {
        display: none;
    }

    .bag-div .number {
        top: 0px;
        right: 5px;
    }

    .main-product-img {
        height: 380px;
        margin-top: 40px;
        margin-bottom: 20px;
    }

    

    .quantity-div {
        width: 100%;
        flex-direction: column;
        justify-content: center;
        text-align: center;
    }

    .btn-add {
        justify-content: center;
    }

    .quantity-group {
        width: 100%;
        display: flex;
        gap: 10px;
        justify-content: space-between;
        align-items: center;
        border: 1px solid #E6E6E6;
        padding: 6px 12px;
        border-radius: 30px;
    }

    .order-cards {
        flex-direction: column;
    }

    .order-left,
    .order-right {
        border-radius: 0;
    }

    .order-right {
        padding: 10px 20px;
    }

    .order-left {
        padding: 10px;
    }

    .order-right h6 {
        font-size: 20px;
    }

    .cart-table {
        overflow-x: scroll;
    }

    .cart-table .price {
        font-size: 16px;
        color: #AE0A09;
        font-weight: bold;
    }

    .product-card {
        width: 70%;
        margin:10px auto;
    }
}



.policy-header h1 {
    position: relative;
    z-index: 1;
    font-size: 3rem;
    color: #482817;
    font-weight: bold;
}

/* .policy-content {
    padding: 60px 20px;
} */
.policy-content h2 {
    color: #482817;
    font-weight: 600;
    text-align: center;
    margin-top: 30px;
    margin-bottom: 30px;
}

.policy-content h4 {
    color: #C51E1E;
    font-size: 22px;
    font-weight: 600;
    margin-top: 30px;
}

.policy-content p {
    font-size: 16px;
    line-height: 1.7;
    color: #482817;
}

.terms-content h2 {
    color: #482817;
    font-weight: 600;
    text-align: center;
    margin-top: 30px;
    margin-bottom: 30px;
}

.terms-content h4 {
    color: #C51E1E;
    font-size: 22px;
    font-weight: 600;
    margin-top: 30px;
}

.terms-content p {
    font-size: 18px;
    line-height: 1.7;
    color: #482817;
}

.forgot-section {
    padding: 40px 0;
    display: flex;
    align-items: center;
    justify-content: center;
    background: #F5EBDA;
}

.forgot-card {
    background: #fff;
    border-radius: 12px;
    padding: 2rem;
    box-shadow: 0px 4px 12px rgba(0, 0, 0, 0.1);
    max-width: 500px;
    width: 100%;
}

.forgot-card h2 {
    font-size: 28px;
    font-weight: 600;
    color: #482817;
    margin-bottom: 15px;
    text-align: center;
}

.forgot-card p {
    color: #4b2c1d;
    font-size: 16px;
    text-align: center;
    margin-bottom: 20px;
}

.forgot {
    background: #AE0A09;
    color: #fff;
    font-weight: 500;
    border-radius: 8px;
    border: none;
    padding: 6px 20px;
    /* transition: background 0.3s; */
}

.forgot:hover {
    background-color: #8b0707;
}