/*
Theme Name: Crumbz
Author: Monirul Islam
Version: 1.0
*/

*,
*:before,
*:after {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

:root {
    --primary-color: #e2c2e7;
    --secondary-color: #ffc05a;
    --text-color: #bd89c;
    --tertiary-color: #2f2c3d;
    --theme-color: rgb(171, 112, 231);
    --vintage-green: #a0ebd6;
}

html,
body {
    font-family: "Playfair Display", serif;
    background-color: var(--primary-color);
    color: var(--text-color);
    line-height: 1.6;
    scroll-behavior: smooth;
    position: relative;
    font-weight: 600;
    padding-top: 30px;
}

a {
    color: #fff;
    text-decoration: none;
}

ul {
    list-style: none;
}

img {
    max-width: 100%;
}

.container {
    max-width: 1100px;
    margin: 0 auto;
}

.h-400 {
    height: 400px !important;
}

.h-full {
    height: 100% !important;
}

.btn {
    padding: 0.5rem 2rem;
    background-color: var(--vintage-green);
    border: 2px solid transparent;
    color: #fff;
    font-weight: 600;
    border-radius: 50px;
    transition: background-color 0.3s ease;
}

.btn:hover {
    background-color: rgb(35, 2, 78);
    border-color: rgb(205, 167, 255);
}

/* h3::first-letter {
    font-size: 3rem;
    color: rebeccapurple;
    padding-right: 2px;
    font-weight: bold;
  } */

h3::first-line {
    color: purple;
    font-size: 2rem;
}

/* navbar */
.navbar {
    background: transparent;
    color: #fff;
    padding: 2.4rem 2rem;
    position: fixed;
    top: 0;
    right: 0;
    left: 0;
    z-index: 1000;
    transition: background-color 0.5s ease-in-out;

}

.navbar.navbar--scroll {
    background-color: var(--vintage-green);
    backdrop-filter: blur(10px);

}

.navbar_logo img {
    margin-top: 10px;
    height: 180px;
    /* Adjust height as needed */
    display: block;
}

.navbar_container {
    display: flex;
    justify-content: space-between;
    /* Keep it for now */
    align-items: center;
    text-align: center;
    position: relative;
    /* Add this */
}

/* Center the logo */
.navbar_logo {
    position: absolute;
    left: 10%;
    transform: translateX(-50%);
}

.navbar_menu {
    margin-left: auto;
    display: flex;
    align-items: center;
    /* Pushes menu to the right */
}

.navbar_menu-list {
    display: flex;
    align-items: center;
    gap: 2rem;
    /* font-weight: 600; */
}

.navbar_menu-link:hover,
.navbar_mobile-menu-link:hover {
    color: rgb(255, 136, 255);
}

/* mobile view */
.navbar_mobile-menu {
    display: none;
    cursor: pointer;
}

.navbar_mobile-menu-items {
    position: absolute;
    top: 100%;
    left: 0;
    width: 100%;

    background: #7cdec1;
    opacity: 0.95;
    padding: 3rem 2rem;
    text-align: center;
    box-shadow: 0 2px 5px rgba(255, 255, 255, 0.1);
    border-top: 1px solid rgba(226, 198, 198, 0.1);
    transition: transform 0.3s ease-in-out;
}

.navbar_mobile-menu-list {
    display: flex;
    flex-direction: column;
    gap: 2rem;
    font-size: 1.2rem;
}

.navbar_mobile-menu-items {
    transform: translateX(110%);
}

.navbar_mobile-menu-items.active {
    transform: translateX(0);
}

/* General Styles */
.container {
    width: 90%;
    max-width: 1200px;
    margin: auto;
}

.hero {
    margin-top: 170px;
}

/* Carousel */
.carousel {
    position: relative;
    width: 100%;
    height: 400px;
    overflow: hidden;
}

.carousel_inner {
    display: flex;
    transition: transform 0.5s ease-in-out;
}

.carousel_item {
    width: 100%;
    flex-shrink: 0;
}

.carousel_item img {
    width: 100%;
    height: 400px;
    object-fit: cover;
}

/* Details Section */
/* .details {
  padding: 6rem 2rem;
} */

.details_container {
    margin-top: 50px;
}

.details_grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 4rem;
    align-items: stretch;
    position: relative;
}

.details_grid-content {
    max-width: 500px;
    background-color: white;
    display: flex;
    flex-direction: column;
    align-items: baseline;
    justify-content: center;
    padding: 20px;
}

.details_grid-heading {
    font-size: 2rem;
}

.details_grid-description {
    line-height: 1.6;
    font-size: 1rem;
    padding: 20px 0px;
    background-color: white;
}

/* .details_grid-button {
  display: inline-block;
  padding: 0.8rem 1.5rem;
  background-color: #1cdfc5;
  color: white;
  border-radius: 8px;
  text-decoration: none;
} */

/* Hero Section */
.grid_layout {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 3rem;
    align-items: stretch;
    position: relative;
}

.script_box {
    padding: 1rem;
    background-color: white;
    display: flex;
    flex-direction: column;
    align-items: baseline;
    justify-content: center;
    padding: 20px;
}

.summary .section-lists p {
    margin: 30px auto;
    padding: 30px;

}

.carousel {
    position: sticky;
    top: 0;
}

/* Responsive Design */
@media screen and (max-width: 768px) {
    html,
    body {
        padding-top: 0px;
    }
    .details_grid {
        display: flex;
        flex-direction: column-reverse;
    }

    .navbar_logo img {
        height: 120px;
    }

    .details_grid,
    .grid_layout {
        grid-template-columns: 1fr;
        text-align: center;
    }

    .carousel {
        height: 300px;
    }

    .carousel_item img {
        height: 300px;
    }

    .details_grid-content {
        margin-bottom: 45px;
        max-width: 100%;
    }

    .details_grid-button {
        margin-top: 1rem;
    }

    .details_grid {

        gap: 0;

    }
}

/* Social */
.social {
    background: #272d35;
    color: #fff;
    padding: 4rem 2rem;
    text-align: center;
    font-size: 1.7rem;
    margin-top: 10px;
}

.social .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 2rem;
    max-width: 1200px;
    margin: auto;
}

.social-content {
    flex: 1;
    min-width: 300px;
}

.social-icons {
    display: flex;
    justify-content: center;
    gap: 1rem;
    margin-top: 1rem;
}

.social-icons :hover {
    color: var(--secondary-color);
}

.whatsapp:hover {
    color: var(--secondary-color);
}

.contact {
    flex: 1;
    min-width: 300px;
}

.contact h2 {
    margin-bottom: 1rem;
}

.emails {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}


/* Footer */
.footer {
    background: #272d35;
    color: #fff;
    border-top: 1px solid #384653;
    padding: 0.5rem 2rem;

}

.footer-flex {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.footer ul {
    display: flex;
    justify-content: center;
    gap: 1rem;
    margin: 2rem 0;
}

.footer ul:hover {
    color: var(--secondary-color);
}

.contact .emails a:hover {
    color: var(--secondary-color);
}

/* Inner Header */
.inner-header {
    background: var(--primary-color);
    color: #fff;
    padding-top: 8rem;
}

.inner-header h1 {
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 1rem;
}

/* Contact Form */
.emails {
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
}

.contact-form p {
    margin-bottom: 3rem;
}

.contact-form input,
.contact-form textarea {
    display: block;
    font-family: inherit;
    font-size: medium;
    width: 100%;
    margin: 1.5rem 0;
    border: 1px solid #ccc;
    padding: 1.2rem 1rem;
}

.contact-form textarea {
    height: 200px;
}

.contact-form .btn {
    display: block;
    width: 100%;
    font-size: inherit;
    font-family: inherit;
    margin: 0 auto;
}

@media (max-width: 992px) {
    /* Hero */
}

@media (max-width:768px) {
    .navbar {
        padding: 0;
    }

    .navbar_logo {
        position: relative;
        left: auto;
        transform: none;
        /* Add some spacing */
    }

    .navbar_menu {
        display: none;
        /* Hide menu on mobile by default */
    }

    .navbar_mobile-menu {
        display: flex;
        align-items: center;
    }

    .navbar_container {
        justify-content: end;
        gap: 40px;

        padding: 0;
    }


    .navbar_menu {
        display: none;
    }


    .carousel_inner {
        width: 100%;
    }

    .carousel {
        height: 300px;

    }

    .carousel_item img {
        height: 100%;
        max-height: 300px;
    }

    /* .grid_layout {
            grid-template-columns: 1fr;
        } */
    /* Details */
    /* .details{
            margin:0 auto ;
         }
  .details_grid {
    grid-template-columns: 1fr;
    text-align: center;
  }

  .details_grid-image img {
    width: 100%;
    max-width: 400px;
  }

  .details_grid-content {
    width: 100%;
    max-width: 400px;
    margin-top: 30px;
  } */
    .social .container {
        flex-direction: column;
        text-align: center;
    }

    .social {
        font-size: 1.2rem;
    }

    .footer {
        padding: 0.5rem 1rem;
        font-size: 0.9rem;
    }

    .footer-flex {
        flex-direction: column;
        text-align: center;
    }
}

.wpcf7 input,
.wpcf7 textarea {
    width: 100%;
    padding: 12px;
    margin: 10px 0;
    border: 1px solid #ccc;
    border-radius: 5px;
    font-size: 16px;
}

.wpcf7-submit {
    border-radius: 50px !important;
    -webkit-border-radius: 50px !important;
    -moz-border-radius: 50px !important;
    -ms-border-radius: 50px !important;
    -o-border-radius: 50px !important;
}

.product-card {
    position: relative;
    border-radius: 2rem;
    padding: 2rem;
    justify-content: center;
    margin-bottom: 2rem;
    max-width: 1000px;
    margin: 0 auto;
    margin-top: 0px;
    -webkit-border-radius: 2rem;
    -moz-border-radius: 2rem;
    -ms-border-radius: 2rem;
    -o-border-radius: 2rem;
    transition: all linear 0.3s;
    -webkit-transition: all linear 0.3s;
    -moz-transition: all linear 0.3s;
    -ms-transition: all linear 0.3s;
    -o-transition: all linear 0.3s;
}

.product-card:hover {
    background-color: var(--theme-color);
    color: white !important;
}

.product-card:hover .product-title a,
.product-card:hover .product-details,
.product-card:hover .product-description {
    color: white;
}

.product-card:hover .productprices {
    color: white;
}

.product-card-inner {
    display: flex;
    align-items: center;
    gap: 2rem;
    flex-wrap: wrap;
    position: relative;
}

.product-image {
    position: relative;
    width: 300px;
    height: 100%;
}

.product-image img {
    width: 310px;
    max-width: 100%;
    object-fit: contain;
    z-index: 9;
}

.product-card.left .product-image img {
    transform: scaleX(-1);
    -webkit-transform: scaleX(-1);
    -moz-transform: scaleX(-1);
    -ms-transform: scaleX(-1);
    -o-transform: scaleX(-1);
}

.product-details {
    flex: 1;
    position: relative;
    z-index: 9;
}
	
.show-mobile{
	display: none
}

.product-title {
    font-size: 2.5rem;
    font-weight: 800;
    margin-bottom: 1rem;
    color: var(--theme-color);
}

.product-title a {
    color: var(--theme-color);
}

.product-description {
    font-size: 1rem;
    margin-bottom: 1.5rem;
    color: var(--theme-color);
}

.product-buttons {
    display: flex;
    gap: 1rem;
}

.btn-outline {
    padding: 0.75rem 1.5rem;
    border: 2px solid #000;
    background: none;
    font-weight: 600;
    border-radius: 999px;
    text-decoration: none;
    color: white;
}

.productprices {
    padding: 0.75rem 1.5rem;
    border: 2px solid #000;
    background: none;
    font-weight: 600;
    border-radius: 999px;
    text-decoration: none;
    color: black;
}

.btn-filled {
    padding: 0.75rem 1.5rem;
    background: #000;
    color: #fff;
    font-weight: 600;
    border-radius: 999px;
    text-decoration: none;
}

.discount-badge {
    position: absolute;
    top: 1rem;
    right: 1rem;
    background: #ff0000;
    color: #fff;
    padding: 0.5rem 1rem;
    border-radius: 1rem;
    font-weight: bold;
    font-size: 0.9rem;
}

#menu-item-394 a{
    color: purple;
}

.menu-item-394 a{
	color: purple;
}

@media (max-width: 768px) {
    .product-card {
        margin-top: 0;
    }

    .product-card-inner {
        flex-direction: row;
        flex-wrap: nowrap;
        align-items: flex-start;
        gap: 1rem;
    }

    .product-image {
        width: 40%;
    }

    .product-image img {
        width: 100%;
        position: relative;
        top: 0;
        left: 0;
    }

    .product-details {
        flex: 1;
        font-size: 0.85rem;
    }
	.product-details{
		display: none;
	}
	
	.show-mobile{
		display: block
	}

    .product-title {
        font-size: 1.4rem;
    }

    .product-description {
        font-size: 0.85rem;
        margin-bottom: 1rem;
    }

    .product-buttons {
        flex-wrap: wrap;
        gap: 0.5rem;
    }

    .btn-outline,
    .btn-filled,
    .productprices {
        padding: 0.5rem 1rem;
        font-size: 0.85rem;
        white-space: nowrap;
    }
	
	
    .discount-badge {
        font-size: 0.75rem;
        padding: 0.3rem 0.7rem;
    }
}

/* Cart */

.wp-block-woocommerce-cart {
    background-color: #384653;
    color: white;
    padding: 10px 20px;
}

.wp-block-heading {
    color: white !important;
}

.wc-block-cart-item__wrap .wc-block-components-product-badge {
    display: none;
}

.wc-block-components-product-badge {
    border-color: red;
    background-color: red;
}

/* Custom background for the checkout button */
.wp-block-woocommerce-proceed-to-checkout-block {
    background-color: rgb(171, 112, 231);
    color: white;
    padding: 10px 20px;
    border-radius: 5px;
    text-align: center;
    cursor: pointer;
    font-size: 16px;
}

/* Change button background color on hover */
.wp-block-woocommerce-proceed-to-checkout-block:hover {
    background-color: rgb(35, 2, 78);
    color: #FFF;
    transition: background-color 0.3s ease;
}

/* Make the text inside cart items and cross-sells white */
.wp-block-woocommerce-cart-items-block,
.wp-block-woocommerce-cart-cross-sells-block,
.wp-block-woocommerce-cart-order-summary-block,
.wp-block-woocommerce-cart-express-payment-block {
    color: white !important;
}

.wp-block-woocommerce-cart-order-summary-coupon-form-block {
    background-color: #333;
    color: white;
}

/* Empty cart message text color */
.wp-block-woocommerce-empty-cart-block .wp-block-heading {
    color: white !important;
}

/* Style the place order button */
.wp-block-woocommerce-checkout-actions-block button,
.wc-block-components-checkout-place-order-button {
    background-color: rgb(171, 112, 231);
    color: white;
    border: none;
    padding: 12px 24px;
    font-size: 16px;
    border-radius: 5px;
    cursor: pointer;
    transition: background-color 0.3s ease, transform 0.2s ease;
}

/* Hover effect */
.wp-block-woocommerce-checkout-actions-block button:hover,
.wc-block-components-checkout-place-order-button:hover {
    background-color: rgb(35, 2, 78);
    transform: scale(1.03);
}

/* Optional: disabled state */
.wp-block-woocommerce-checkout-actions-block button:disabled,
.wc-block-components-checkout-place-order-button:disabled {
    background-color: #cccccc;
    cursor: not-allowed;
    opacity: 0.7;
}

.about-carousel img {
    object-position: top;
}

#boutique img {
    object-position: top;
}

.navbar_cart {
    position: relative;
    margin-left: 20px;
}

.cart-link {
    position: relative;
    color: #000;
    text-decoration: none;
    font-size: 22px;
}

.cart-count {
    position: absolute;
    top: -8px;
    right: -12px;
    background-color: #e60023;
    color: white;
    border-radius: 50%;
    padding: 2px 6px;
    font-size: 12px;
    font-weight: bold;
}

.wc-block-checkout {
    background-color: white;
    padding: 10px 20px;
    border-radius: 5px;
    -webkit-border-radius: 5px;
    -moz-border-radius: 5px;
    -ms-border-radius: 5px;
    -o-border-radius: 5px;

}

.wc-block-components-radio-control--highlight-checked,
.wc-block-components-radio-control--highlight-checked div.wc-block-components-radio-control-accordion-option {
    padding: 20px;
}

.wc-block-components-radio-control__option {
    background-color: white;
    padding: 5px 10px;
}

.wc-block-components-radio-control__option.wc-block-components-radio-control__option-checked {
    background-color: var(--tertiary-color);
    color: var(--theme-color);
}

@media (max-width: 640px) {
    .details_grid-heading {
        margin: auto;
    }

    .details_grid-button {
        margin-top: 1rem;
        display: block;
        margin-left: auto;
        margin-right: auto;
    }

    .product-image {
        height: 70px;
    }

    .product-card {
        margin-top: 0;
    }

}


/* Order Now */
.text-center {
    text-align: center;
}

.custom-checkout {
    background-color: white;
    margin-top: 120px;
    min-height: 85vh;
    padding: 20px;
    border-radius: 10px;
    -webkit-border-radius: 10px;
    -moz-border-radius: 10px;
    -ms-border-radius: 10px;
    -o-border-radius: 10px;
    margin-bottom: 30px;
}

.select-order-type {
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 24px;
    color: purple;
}

.select-order-type a {
    padding: 0 !important;
    background-color: inherit !important;
    color: #7cdec1 !important;
}

.select-order-type a:hover {
    background-color: inherit !important;
}

.pickup-section {
    max-width: 70%;
}

.pickup-section h3 {
    margin-bottom: 20px;
}

.order-now-container h3 {
    color: white;
}

.order-types {
    display: flex;
    align-items: center;
    gap: 20px;
    justify-content: space-between;
    margin-top: 30px;
}

.order-type {
    background-color: #bd89c5;
    width: 50%;
    text-align: center;
    border-radius: 10px;
    -webkit-border-radius: 10px;
    -moz-border-radius: 10px;
    -ms-border-radius: 10px;
    -o-border-radius: 10px;
    cursor: pointer;
}

.order-type img {
    width: 300px;
    margin: auto;
}

.order-type h2 {
    color: white;
    font-size: 26px;
    font-weight: 600;
    padding-bottom: 30px;
}

@media (max-width: 768px) {
    .order-types {
        display: block;
    }

    .order-type {
        width: 100%;
        margin-top: 15px;
    }

    .order-type:nth-child(2) img {
        margin: auto !important;
    }

    .checkout-columns {
        display: block !important;
    }

    .woocommerce-terms-and-conditions-wrapper {
        margin-bottom: 20px;
    }

    .place-order .button {
        display: block !important;
        padding: 15px !important;
    }
}

#add_payment_method #payment,
.woocommerce-cart #payment,
.woocommerce-checkout #payment {
    background-color: #a0ebd6;
}

.woocommerce #payment #place_order,
.woocommerce-page #payment #place_order {
    display: flex;
    margin: auto;
    float: inherit;
}

.wc-block-components-totals-shipping__collaterals {
    display: none;
}

.woocommerce-error a {
    color: purple !important;
}

.ship-label {
    color: purple;
    font-size: 28px;
}

.woocommerce-shipping-totals.shipping{
	display: none
}

.custom-contact-form{
	background-color: white;
    padding: 25px;
    border-radius: 5px;
}

.custom-contact-form p{
	color: purple;
	font-size: 20px;
}

.wpcf7-form-control.wpcf7-submit{
	background-color: #A0EBD6;
	color: white;
    font-family: "Playfair Display", Sans-serif;
    font-size: 18px;
    font-weight: 600;
    border-style: solid;
    border-width: 2px 2px 2px 2px;
    border-color: #FFFFFF;
    border-radius: 42px 42px 42px 42px;
    padding: 1rem 2rem 1rem 2rem;
	transition: all .3s;
}

.wpcf7-form-control.wpcf7-submit:hover{
	background-color: #23024E;
    border-color: #CDA7FF;
}

.background-top .swiper-slide:nth-child(2) .elementor-carousel-image{
	background-position: top;
}
.background-bottom .swiper-slide:nth-child(2) .elementor-carousel-image{
	background-position: bottom;
}
.last-image .swiper-slide:last-child .elementor-carousel-image{
	background-size: inherit;
}

.home-slider .swiper-slide:nth-child(4) .elementor-carousel-image{
	background-size: cover !important;
}



.product-image-wrapper {
    text-align: center;
    margin-bottom: 10px;
}

.product-image-wrapper a{
	display: block;
}

@media screen and (max-width: 768px) {
	.product-image-wrapper a{
		display: initial;
	}
}



.lineup-modal {
    display: none;
    position: fixed;
    z-index: 10000;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    overflow-y: auto;
    background-color: rgba(0,0,0,0.75);
}

.lineup-modal-content {
    background-color: #fff;
    color: purple;
    margin: 4% auto;
    padding: 20px 30px;
    border-radius: 12px;
    width: 90%;
    max-width: 500px;
    position: relative;
}

.close-modal {
    position: absolute;
    top: 15px;
    right: 20px;
    font-size: 28px;
    font-weight: bold;
    color: white;
    cursor: pointer;
}

.cookie-list {
    list-style: none;
    padding: 0;
    margin: 0;
}

.cookie-list li {
    display: flex;
    align-items: center;
    margin-bottom: 18px;
}

.cookie-list li img {
    width: 60px;
    object-fit: cover;
    border-radius: 50%;
    margin-right: 15px;
}

.cookie-list li div {
    display: flex;
    flex-direction: column;
}

.cookie-list li strong {
    font-size: 16px;
    margin-bottom: 2px;
}

.cookie-list li span {
    font-size: 14px;
}

