
body{
    font-family: "Josefin Sans", Arial, sans-serif;
}

.navbar-brand a{
    display: inline-block;
}
.topinfodiv{
    background-color: #d2b36c !important;
    color:#121618;
    min-height: 60px;
    display: flex;
    align-items: center;
    justify-content: center;
}
.navbar {
    transition: top 0.3s; /* Smooth transition for the fixed navbar */
}
.fixed-top {
    position: fixed;
    top: 0;
    width: 100%;
    z-index: 1030; /* Ensure it stays on top of other content */
}
.navbar-nav .nav-link {
    font-size: 1.25rem; /* Adjust the font size as needed */
}

/* .navbar-brand {
    font-size: 1.5rem; 
} */
.navbar-dark .navbar-nav .nav-link:hover {
    color: #d2b36c; /* Change color on hover */
}

.navbar-dark .navbar-nav .nav-link.active {
    color: #d2b36c; /* Change active link color */
}
header{
    background-image: url('../assets/domuk-pizza-hero-bg.png');
    background-size: cover; /* Cover the entire header */
    background-position: center; /* Center the image */
    min-height: 400px; /* Adjust height as needed */
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff; /* Change text color if needed */
    
}

.bg-dark {
    --bs-bg-opacity: 1; /* If you want to keep this variable, but it won’t affect the color */
    background-color: #121618  !important; /* Set background color to black */
}
.curved-underline {
    position: relative; /* Position relative to parent */
    display: inline-block; /* Keep it inline with the text */
    margin-top: 5px; /* Space between text and underline */
}

.curved-underline:before {
    content: ""; /* Creates a pseudo-element */
    position: absolute; /* Absolute positioning for the pseudo-element */
    bottom: 0; /* Aligns it to the bottom of the text */
    left: 0; /* Aligns it to the left of the text */
    width: 100%; /* Full width of the container */
    height: 10px; /* Adjust height if needed */
    background: linear-gradient(to right, transparent 0%, transparent 50%, gold 50%, gold 100%); /* Gold color */
    border-radius: 5px; /* Adjust curve */
    z-index: -1; /* Send it behind the text */
}
.text-gold{
    color: #fac564 ;
}
.bg-gold{
    background-color: #d2b36c !important;
}


.btn-gold{
    background-color: #d2b36c;
    color: #000;
}
.btn-gold:hover{
    background-color: transparent;
    border: 1px solid #d2b36c;
    color: #d2b36c;
}
#usrselzipcode {
    height: 50px; /* Adjust the height as needed */
    text-transform: uppercase;
}
#usrselzipcode {
    padding: 15px; /* Adjust the padding as needed */
    font-size: 16px; /* Optional: Adjust font size to maintain proportion */
}
.my-social-icon {
    display: inline-block;
    list-style-type: none;
    padding: 0;
    margin: 0;
}
.my-social-icon li {
    display: inline-block;
    margin: 0 10px;
}
.my-social-icon li a{
    color: #121618;
}
.my-social-icon li a:hover{
    color: #d2b36c;
}
#zipcode{
    /* background-color: #d2b36c; */
}



.logo-img {
    width: 50px; /* Adjust the size for desktop view */
  }
  
  @media (max-width: 992px) {
    .logo-img {
      width: 40px; /* Slightly smaller logo for tablets */
    }
  }
  
  @media (max-width: 576px) {
    .logo-img {
      width: 35px; /* Smaller logo for mobile screens */
    }
  }
  .service-container {
    display: flex;
    flex-wrap: wrap; /* Allow items to wrap to the next line */
    border-radius: 5px;
    overflow: hidden;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.2);
}

.service-item {
    flex: 1; /* Allow both items to take equal width on larger screens */
    padding: 20px;
    text-align: center;
    transition: background-color 0.3s ease; /* Smooth background transition */
    cursor: pointer; /* Pointer cursor on hover */
    color: #333; /* Default text color */
    background-color: #f8f9fa; /* Default light background */
}

.service-item.active {
    background-color: #333; /* Dark background for active item */
    color: white; /* Text color for active item */
}

/* Responsive layout for smaller screens */
@media (max-width: 768px) {
    .service-item {
        flex: 100%; /* Each item takes full width on smaller screens */
    }
}


.menu-container {
    width: 100%;
    /*max-width: 800px;  Set a max width for the menu */
    margin: 0 auto; /* Center the menu container */
    padding: 10px;
    position: relative; /* Positioning context for search icon */
}

.menu-controls {
    display: flex;
    align-items: center;
    justify-content: space-between; /* Align controls on either side */
}

.btn-control {
    background-color: #121618;
    color: white;
    border: none;
    padding: 10px;
    border-radius: 5px;
    cursor: pointer;
}
.btn-control-login {
    /*background-color: #121618;*/
    color: white;
    border: none;
    padding: 10px;
    border-radius: 5px;
    cursor: pointer;
}

.menu-search {
    display: flex;
    align-items: center;
    justify-content: flex-end; /* Align search icon to the right */
    margin-top: 10px; /* Space above search section */
}

.btn-search {
    background: transparent;
    border: none;
    cursor: pointer;
    font-size: 24px; /* Adjust size of the search icon */
    padding: 0 10px; /* Add padding for spacing */
}



.menu-categories {
    display: flex;
    overflow-x: auto; /* Enable horizontal scrolling */
    padding: 10px;
    flex-grow: 1; /* Allow the menu to take remaining space */
    white-space: nowrap; /* Prevent line breaks within the buttons */
}

.menu-categories::-webkit-scrollbar {
    display: none; /* Hide scrollbar for WebKit browsers */
}

.btn {
    margin: 0 5px;
}

.btn-outline-order {
    border: 1px solid #121618;
    background-color: white;
    color: #121618;
    padding: 10px 15px;
    cursor: pointer;
    border-radius: 5px;
    transition: background-color 0.3s, color 0.3s;
    /*white-space: nowrap; /* Prevent line breaks within the button */
}

.btn-outline-order:hover {
    background-color: #121618;
    color: white;
}

footer a{
    color:#fff;
    text-decoration: none;
}
footer a:hover{
    color: #fac564;
    text-decoration: none;
}

footer .my-social-icon li a{
    color: #fff;
}
footer .my-social-icon li a:hover{
    color: #d2b36c;
}

.testimonial-img {
    width: 100px; /* You can change the size as needed */
    height: 100px;
    object-fit: cover; /* Ensures the image fits perfectly within the circle */
}
.map-container {
    height: 400px; /* Set the height for the map */
    background-color: #e0e0e0; /* Placeholder background */
}

.modal.fade .modal-dialog {
    transform: translateX(100%);
    transition: transform 0.5s ease-out;
}

.modal.fade.show .modal-dialog {
    transform: translateX(0);
}


.modal-dialog {
    display: flex;
    align-items: center;
    justify-content: center;
    min-height: calc(100vh - 60px);

}

/* Tooltip container */
.tooltip-container {
    position: relative;
    display: inline-block;
    width: 100%;
}

/* Tooltip text */
.tooltip-bubble {
    visibility: hidden;
    width: 300px;
    background-color: rgba(250, 197, 100, 1); /* Transparent #222 */
    color: #121618;
    text-align: left;
    border-radius: 6px;
    padding: 10px;
    position: absolute;
    bottom: 110%; /* Position above the input field */
    left: 50%; /* Center the tooltip horizontally */
    transform: translateX(-50%); /* Adjust to center */
    z-index: 1;
    opacity: 0;
    transition: opacity 0.3s;
}
.tooltip-bubble p{
    margin: 5px 0px;
}


/* Tooltip arrow */
.tooltip-bubble::after {
    content: "";
    position: absolute;
    top: 100%; /* Arrow pointing down */
    left: 50%;
    transform: translateX(-50%);
    border-width: 5px;
    border-style: solid;
    border-color: rgba(250, 197, 100, 1) transparent transparent transparent;
}

/* Show the tooltip on hover or focus 
.tooltip-container:hover .tooltip-bubble,
.tooltip-container input:focus + .tooltip-bubble {
    visibility: visible;
    opacity: 1;
}*/

.payment-item {
    padding: 10px;
    border: 1px solid #ccc;
    cursor: pointer;
    position: relative;
}

.payment-checkbox {
    /* position: absolute; */
    top: 10px;
    left: 10px;
}

.payment-item.active {
    background-color: #333;
    color: #fff;
    border-color: #333;
}

.ui-autocomplete-input {
    
    z-index: 1060 !important;
}
#menuCategories .loadsubmenu.active {
    /* Add your desired styles for the active button */
    background-color: #333; /* Example background color */
    color: white; /* Example text color */
    border-color: #333; /* Example border color */
    font-weight: bold; /* Example font weight */
}
.remove-item,
.remove-option,.remove-dashboard-option,.remove-dashboard-item {
    padding: 0; /* Remove padding for a more compact look */
    border-radius: 50%; /* Makes the button round */
    width: 30px; /* Fixed width to control size */
    height: 30px; /* Fixed height to control size */
    display: flex; /* Flexbox for centering content */
    align-items: center; /* Center items vertically */
    justify-content: center; /* Center items horizontally */
    border: none; /* Remove border */
    background-color: transparent; /* Transparent background */
    color: #333; /* Text color */
    font-size: 8px; /* Adjust font size */
    cursor: pointer; /* Pointer cursor on hover */
    transition: background-color 0.8s; /* Smooth transition for hover effect */
}

.remove-item:hover,
.remove-option:hover,.remove-dashboard-option:hover,.remove-dashboard-item:hover {
    background-color: rgba(220, 53, 69, 0.8); /* Background color with 0.8 transparency */
    color: #333; /* Text color on hover */
}

.decrease-option-quantity,.increase-option-quantity,.decrease-item-quantity,.increase-item-quantity {
    padding: 0; /* Remove padding for a more compact look */
    border-radius: 50%; /* Makes the button round */
    width: 30px; /* Fixed width to control size */
    height: 30px; /* Fixed height to control size */
    display: flex; /* Flexbox for centering content */
    align-items: center; /* Center items vertically */
    justify-content: center; /* Center items horizontally */
    border: none; /* Remove border */
    background-color: transparent; /* Transparent background */
    color: #333; /* Text color */
    font-size: 16px; /* Adjust font size */
    cursor: pointer; /* Pointer cursor on hover */
    transition: background-color 0.8s; /* Smooth transition for hover effect */
}

.decrease-option-quantity:hover,.increase-option-quantity:hover,.decrease-item-quantity:hover,.increase-item-quantity:hover {
    background-color: rgba(210, 179, 108, 0.8); /* Background color with 0.8 transparency */
    color: #333; /* Text color on hover */
}
.cart-item-quantity, .quantity-control {
    display: flex; /* Use flexbox to arrange children in a row */
    align-items: center; /* Center align items vertically */
}

.cart-item-quantity .btn, .quantity-control .btn {
    margin: 0 5px; /* Add some horizontal spacing between buttons */
}
.cart-item-quantity .quantity,.cart-item-quantity .item-quantity{
    font-size: 16px;
}
#deliveryTimeSelect {
    text-align: center; /* Center text in dropdown */
    max-height: 200px; /* Set a maximum height for the dropdown */
    overflow-y: auto; /* Enable vertical scrolling */
}
#deliveryTimeSelect option {
    text-align: center; /* Center text in options */
}
.carousel-control-prev, .carousel-control-next{
    color:#333 !important;
    width: 15%;
}


.carousel-control-prev-icon,
.carousel-control-next-icon {
    background-image: none; /* Remove default arrows */
    color: #d2b36c; /* Black arrow */
    font-size: 30px; /* Adjust size */
    
}

.carousel-control-prev-icon::before,
.carousel-control-next-icon::before {
    content: ''; /* Clear existing styles */
    display: inline-block;
    border: solid #d2b36c;
    border-width: 0 3px 3px 0; /* Arrow shape */
    padding: 6px;
}

.carousel-control-prev-icon::before {
    transform: rotate(135deg); /* Left arrow */
}

.carousel-control-next-icon::before {
    transform: rotate(-45deg); /* Right arrow */
}
.toast {
    position: fixed;
    bottom: 10px;
    left: 50%;
    transform: translateX(-50%);
    padding: 10px 20px;
    background-color: #28a745;
    color: #fff;
    border-radius: 5px;
    display: none;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.2);
    z-index: 1111;
    text-align: center;
    min-width: 200px;
}

/* .toast {
    position: fixed;
    bottom: 10px;
    right: 10px;
    padding: 10px 20px;
    background-color: #28a745;
    color: #fff;
    border-radius: 5px;
    display: none;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.2);
    z-index: 1050;
    z-index: 1111;
} */
/*temp*/
.card {
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    border-radius: 8px;
}

.card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.15);
}

.card img {
    border-top-left-radius: 8px;
    border-top-right-radius: 8px;
}

.card-body h5 {
    font-size: 1.25rem;
}

.card-body .text-muted {
    font-size: 0.9rem;
}

.card-footer button {
    font-size: 1rem;
    width: 36px;
    height: 36px;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 0;
}

/* .bg-gold {
    background-color: #ffd700 !important;
} */

.text-success {
    color: #28a745 !important;
}

.fs-5 {
    font-size: 1.25rem;
}
.bg-item-footer{
    background-color: #333 !important;
}
.text-gold {
    color: #d2b36c !important;
}
.pmimg{
    border-radius: 8px;
}
.m-promotion{
    margin-top: auto !important;
    margin-bottom: auto !important;
}
#topItemsCarousel .carousel-control-next{
    right: -50px;
}
#topItemsCarousel .carousel-control-prev {
    left: -50px;
}
@media (max-width: 768px) {
    #topItemsCarousel .carousel-control-next {
        right: 0px;
    }

    #topItemsCarousel .carousel-control-prev {
        left: 0px;
    }
}

/*temp*/


#usrdisplaydeliveryaddress {
    white-space: pre-line; /* Preserve line breaks */
}

#usrdisplaydeliveryaddress span {
    display: block;
    margin-left: 20px; /* Indentation for the second and third lines */
}

/* Custom Accordion HEADER ONLY styles */
.accordion {
    --bs-accordion-border-color: rgba(210, 179, 108, 0.2);
}

/* Header colors */
.accordion-button {
    background-color: #121618 !important;
    color: #d2b36c !important;
    font-weight: 600;
    padding: 1rem 1.25rem;
}

/* Collapsed state - lighter gold */
.accordion-button:not(.collapsed) {
    color: #d2b36c !important;
    background-color: #1a1f22 !important;
    box-shadow: inset 0 -1px 0 rgba(210, 179, 108, 0.1);
}

/* Arrow icon - gold when expanded, lighter when collapsed */
.accordion-button::after {
    background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16' fill='%23d2b36c'%3e%3cpath fill-rule='evenodd' d='M1.646 4.646a.5.5 0 0 1 .708 0L8 10.293l5.646-5.647a.5.5 0 0 1 .708.708l-6 6a.5.5 0 0 1-.708 0l-6-6a.5.5 0 0 1 0-.708z'/%3e%3c/svg%3e");
}

.accordion-button:not(.collapsed)::after {
    background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16' fill='%23f0d9a0'%3e%3cpath fill-rule='evenodd' d='M1.646 4.646a.5.5 0 0 1 .708 0L8 10.293l5.646-5.647a.5.5 0 0 1 .708.708l-6 6a.5.5 0 0 1-.708 0l-6-6a.5.5 0 0 1 0-.708z'/%3e%3c/svg%3e");
}

/* Focus state */
.accordion-button:focus {
    border-color: rgba(210, 179, 108, 0.5);
    box-shadow: 0 0 0 0.25rem rgba(210, 179, 108, 0.1);
}

/* First item specific styling */
.accordion-item:first-of-type {
    border-top-left-radius: 0.375rem;
    border-top-right-radius: 0.375rem;
}
.accordion-item:first-of-type .accordion-button {
    border-top-left-radius: 0.375rem;
    border-top-right-radius: 0.375rem;
}



/* Professional Order Card with Your Colors */
.order-card {
    background: #121618;
    border-radius: 8px;
    border: 1px solid rgba(210, 179, 108, 0.15);
    transition: transform 0.2s ease;
  }
  
  .order-card:hover {
    transform: translateY(-3px);
    border-color: rgba(210, 179, 108, 0.3);
  }
  
  /* Badge */
  .order-badge {
    background: rgba(210, 179, 108, 0.15);
    color: #d2b36c;
    padding: 0.35rem 0.75rem;
    border-radius: 50px;
    font-size: 0.75rem;
    font-weight: 500;
  }
  
  /* Buttons */
  .btn-view {
    background: rgba(210, 179, 108, 0.1);
    color: #d2b36c;
    border: 1px solid rgba(210, 179, 108, 0.3);
  }
  
  .btn-reorder {
    background: rgba(40, 167, 69, 0.1);
    color: #28a745;
    border: 1px solid rgba(40, 167, 69, 0.3);
  }
  
  .btn-view:hover {
    background: rgba(210, 179, 108, 0.2);
  }
  
  .btn-reorder:hover {
    background: rgba(40, 167, 69, 0.2);
  }
  
  /* Text Elements */
  .store-icon {
    color: #d2b36c;
  }
  
  .store-name {
    color: #f8f9fa;
    font-size: 1rem;
  }
  
  .order-date {
    color: rgba(210, 179, 108, 0.7);
  }
  
  /* Order Items */
  .order-items {
    background: rgba(210, 179, 108, 0.03);
    border-radius: 6px;
    padding: 0.75rem;
  }
  
  .order-item {
    color: #e9ecef;
  }
  
  .item-icon {
    color: #d2b36c;
    font-size: 1.1rem;
  }
  
  .item-qty {
    color: rgba(210, 179, 108, 0.6);
  }


  .progress-track {
    padding: 0 1rem;
    margin: 1rem 0;
}
.progressbar {
    counter-reset: step;
    padding: 0;
    display: flex;
    justify-content: space-between;
}
.progressbar li {
    list-style: none;
    position: relative;
    text-align: center;
    flex: 1;
    font-size: 0.8rem;
    color: #6c757d;
}
.progressbar li:before {
    content: counter(step);
    counter-increment: step;
    width: 2rem;
    height: 2rem;
    line-height: 2rem;
    display: block;
    text-align: center;
    margin: 0 auto 0.5rem;
    border-radius: 50%;
    background-color: #e9ecef;
}
.progressbar li:after {
    content: '';
    position: absolute;
    width: 100%;
    height: 2px;
    background: #e9ecef;
    top: 1rem;
    left: -50%;
    z-index: -1;
}
.progressbar li:first-child:after {
    content: none;
}
.progressbar li.active {
    color: #1a1f22;
    font-weight: bold;
}
.progressbar li.active:before {
    background-color: #1a1f22;
    color: white;
}
.progressbar li.active:after {
    background-color: #1a1f22;
}


/* Brand text styling */
.brand-text {
    font-size: 1.5rem; /* Base size */
    line-height: 1.2;
}

.brand-highlight {
    color: #d2b36c;
    font-size: 1.75rem; /* Slightly larger than base */
}

/* Responsive adjustments */
@media (max-width: 768px) {
    .brand-text {
        font-size: 1.25rem;
    }
    .brand-highlight {
        font-size: 1.5rem;
    }
}

@media (max-width: 576px) {
    .brand-text {
        font-size: 0.875rem;
    }
    .brand-highlight {
        font-size: 1rem;
    }
}