
html {
  font-size: 14px;
}

@media (min-width: 768px) {
  html {
    font-size: 16px;
  }
}

.btn:focus, .btn:active:focus, .btn-link.nav-link:focus, .form-control:focus, .form-check-input:focus {
  box-shadow: 0 0 0 0.1rem white, 0 0 0 0.25rem #258cfb;
}

html {
  position: relative;
  min-height: 100%;
}

body {
  margin-bottom: 60px;
}

body {
    background-color: #FFF8F4;
    font-family: 'Segoe UI', sans-serif;
}

.navbar {
    background: linear-gradient(90deg, #C44569, #E67E8C);
}

.navbar-brand {
    font-size: 1.8rem;
}

footer {
    background-color: #5D4037 !important;
}

.btn-danger {
    background-color: #C44569;
    border-color: #C44569;
}

    .btn-danger:hover {
        background-color: #A93256;
    }

.card {
    border: none;
    border-radius: 15px;
}
/*
    .card:hover {
        transform: translateY(-5px);
        transition: .3s;
    }
    */

.shadow-sm {
    box-shadow: 0 .5rem 1rem rgba(0,0,0,.15) !important;
}
:root {
    --theme-color: #a83264;
    --theme-color-dark: #7d2650;
    --theme-color-light: #f3d9e4;
    --bakery-pink: #ca4168;
    --bakery-rose: #df7388;
    --bakery-peach: #f6a58e;
    --bakery-cream: #fff7f2;
    --bakery-blush: #fcece8;
    --bakery-light-pink: #f9dce4;
    --bakery-brown: #563a3d;
    --bakery-dark: #28252a;
}

/*More Modifications*/
html {
    min-height: 100%;
    scroll-behavior: smooth;
}

body {
    min-height: 100vh;
    margin: 0;
    color: var(--bakery-brown);
    background-color: var(--bakery-cream);
}


/* =========================
   NAVBAR
========================= */

.site-header {
    position: relative;
    z-index: 1000;
}

    .site-header .navbar {
        background: linear-gradient( 90deg, var(--bakery-pink), var(--bakery-rose) ) !important;
    }


/* =========================
   HERO
========================= */

.hero-section {
    position: relative;
    overflow: hidden;
    background: radial-gradient( circle at 85% 20%, rgba(246, 165, 142, 0.35), transparent 24% ), radial-gradient( circle at 15% 85%, rgba(249, 220, 228, 0.85), transparent 28% ), linear-gradient( 135deg, #fff7f2 0%, #fce9e4 55%, #f8dce3 100% );
}

.hero-content {
    min-height: 620px;
}

.hero-section h1 {
    color: var(--bakery-dark);
}

.hero-section .lead {
    color: #755e62 !important;
}


/* =========================
   PRODUCTS
========================= */

.products-section {
    background: linear-gradient( 180deg, #fffaf7 0%, #fdeee9 100% );
}

    .products-section .card {
        overflow: hidden;
        border-radius: 1.25rem;
        background-color: #ffffff;
        transition: transform 0.3s ease, box-shadow 0.3s ease;
    }

        .products-section .card:hover {
            transform: translateY(-8px);
            box-shadow: 0 1rem 2rem rgba(86, 58, 61, 0.15) !important;
        }


/* =========================
   GALLERY
========================= */

.gallery-section {
    background-color: var(--bakery-light-pink);
}


/* =========================
   CONTACT
========================= */

.contact-section {
    background: linear-gradient( 135deg, var(--bakery-pink), var(--bakery-rose) );
    color: #ffffff;
}

    .contact-section h2,
    .contact-section span,
    .contact-section p {
        color: #ffffff !important;
    }


/* =========================
   FOOTER
========================= */

.site-footer,
footer.bg-dark {
    background-color: var(--bakery-brown) !important;
}
/* Dropdowns */
.form-select:focus {
    border-color: var(--theme-color);
    box-shadow: 0 0 0 0.25rem rgba(168, 50, 100, 0.25);
}

.form-select {
    border-color: var(--theme-color-light);
}

/* Primary action buttons (Add Item, Submit) */
.btn-theme {
    background-color: var(--theme-color);
    border-color: var(--theme-color);
    color: white;
}

    .btn-theme:hover,
    .btn-theme:focus {
        background-color: var(--theme-color-dark);
        border-color: var(--theme-color-dark);
        color: white;
    }

    .btn-theme:disabled {
        background-color: var(--theme-color-light);
        border-color: var(--theme-color-light);
        color: #8a8a8a;
    }

/* Outline variant, e.g. for Add Item */
.btn-outline-theme {
    border-color: var(--theme-color);
    color: var(--theme-color);
    background-color: transparent;
}

    .btn-outline-theme:hover,
    .btn-outline-theme:focus {
        background-color: var(--theme-color);
        border-color: var(--theme-color);
        color: white;
    }

   /*For images*/
/* Product Cards */
.product-card {
    border-radius: 20px;
    overflow: hidden;
    transition: all 0.3s ease;
}

    .product-card:hover {
        transform: translateY(-8px);
        box-shadow: 0 15px 30px rgba(0,0,0,.15);
    }

/* Make all product images the same size */
.product-image {
    width: 100%;
    height: 280px;
    object-fit: cover;
    object-position: center;
}

.carousel-img {
    height: 500px;
    width: 75%;
    object-fit: cover;
    margin: 0 auto;
    filter: brightness(1.2);
}

/* Move controls in next to the (now narrower) image and recolor them black */
.carousel-control-prev,
.carousel-control-next {
    width: 8%;
}

.carousel-control-prev {
    left: 10%;
}

.carousel-control-next {
    right: 10%;
}

.carousel-control-prev-icon,
.carousel-control-next-icon {
    filter: invert(1) grayscale(100);
}
.edit-btn {
    background-color: #a83273;
    border-color: #a83273;
    color: #fff;
}

    .edit-btn:hover {
        background-color: #8f2a61;
        border-color: #8f2a61;
        color: #fff;
    }

    .edit-btn:focus,
    .edit-btn:focus-visible,
    .edit-btn:active,
    .edit-btn:active:focus {
        background-color: #8f2a61;
        border-color: #8f2a61;
        color: #fff;
        outline: none;
        box-shadow: 0 0 0 0.2rem rgba(168, 50, 115, 0.25) !important;
    }


    /*For new logo
.navbar-logo {
    width: 400px;
    height: 150px;
    display: block;
    object-fit: contain;
}
        */
.navbar-brand1 {
    display: flex;
    align-items: center;
    padding-top: 0;
    padding-bottom: 0;
}

.site-header .navbar {
    min-height: 90px;
}

/*For New footer*/
.footer-logo {
    width: 280px;
    height: auto;
    display: block;
    object-fit: contain;
    display: block;
    margin: 0;
}

.footer-brand {
    display: flex;
    justify-content: flex-start;
    align-items: center;
    width: 100%;
}

.footer-logo-link {
    width: 280px;
    height: auto;
    display: block;
    object-fit: contain;
    margin: 0;
}
.navbar .nav-link.active {
    background-color: #f3c4d7;
    color: #a83273;
    box-shadow: 0 2px 8px rgba(168, 50, 115, 0.15);
}
/* Navigation Links */
/* Navigation Links */
.navbar .nav-link {
    font-size: 1.25rem;
    font-weight: 600;
    padding: 12px 18px !important;
    margin: 0 4px;
    border-radius: 10px;
    color: #fff;
    transition: all 0.3s ease;
}

    /* Hover */
    .navbar .nav-link:hover {
        background-color: #f8d6e3;
        color: #a83273;
        transform: translateY(-2px);
    }

    /* Selected / Active */
    .navbar .nav-link.active,
    .navbar .nav-link:focus,
    .navbar .nav-link:focus-visible {
        background-color: #f3c4d7;
        color: #a83273;
        box-shadow: none;
        outline: none;
    }

.navbar .nav-link,
.navbar .dropdown-item {
    outline: none;
    box-shadow: none;
}

    .navbar .nav-link:hover,
    .navbar .nav-link:focus,
    .navbar .nav-link:focus-visible,
    .navbar .nav-link:active,
    .navbar .nav-link.active {
        background-color: #f8d6e3 !important;
        color: #a83273 !important;
        box-shadow: none !important;
    }
    /* Highlight dropdown toggle while menu is open */
    .navbar .nav-link.dropdown-toggle.show {
    background-color: #f8d6e3 !important;
    color: #a83273 !important;
}
    .navbar .nav-link.dropdown-toggle.show {
        background-color: #f8d6e3 !important;
        color: #a83273 !important;
    }

    .navbar .nav-link.active {
        background-color: #f8d6e3 !important;
        color: #a83273 !important;
        box-shadow: none !important;
    }

/* Dropdown menu items */
.navbar .dropdown-item {
    font-size: 1.1rem;
    padding: 12px 20px;
    color: var(--bakery-brown);
    transition: all 0.25s ease;
}

    /* Hover, Focus, Active */
    .navbar .dropdown-item:hover,
    .navbar .dropdown-item:focus,
    .navbar .dropdown-item:focus-visible,
    .navbar .dropdown-item:active,
    .navbar .dropdown-item.active {
        background-color: #f8d6e3 !important;
        color: #a83273 !important;
        outline: none;
        box-shadow: none;
    }



/*Pgination*/
.pink-pagination .page-link {
    color: #a83273;
}

    .pink-pagination .page-link:hover {
        color: #8f2a61;
    }

.pink-pagination .page-item.active .page-link {
    background-color: #a83273;
    border-color: #a83273;
}

/*Add Buttons*/
.btn-success,
.btn-secondary,
.btn-outline-secondary {
    background-color: #a83273;
    border-color: #a83273;
    color: #fff;
}

/*/Radio buttons*/
.form-check-input:checked {
    background-color: #a83273;
    border-color: #a83273;
}

.form-check-input:focus {
    border-color: #a83273;
    box-shadow: 0 0 0 0.25rem rgba(168, 50, 115, 0.25);
}

/* =========================================
   ORDER MANAGEMENT TABLE
========================================= */

.order-table {
    width: 100%;
    table-layout: auto;
    font-size: 0.9rem;
}

    /* Keep headings from wrapping unnecessarily */
    .order-table thead th {
        white-space: nowrap;
        vertical-align: middle;
    }

    /* Compact columns */
    .order-table .col-order {
        width: 5%;
        white-space: nowrap;
    }

    .order-table .col-date {
        width: 7%;
        white-space: nowrap;
    }

    .order-table .col-status {
        width: 7%;
    }

    .order-table .col-fulfillment {
        width: 7%;
    }

    .order-table .col-total {
        width: 6%;
        white-space: nowrap;
    }

    /* Give these columns more room */
    .order-table .col-customer {
        width: 13%;
        min-width: 160px;
    }

    .order-table .col-payment {
        width: 12%;
        min-width: 150px;
    }

    .order-table .col-discount {
        width: 12%;
        min-width: 150px;
    }

    /* Other content columns */

    .order-table .col-action {
        width: 10%;
        white-space: nowrap;
    }

    /* Make selects use their available column width */
    .order-table select.form-select {
        width: 100%;
        min-width: 0;
    }
    .order-table textarea {
        width: 100%;
        min-width: 0;
        resize: vertical;
    }
    /*Customer order Details Table*/
.customer-orders-section {
    width: 82%;
    max-width: 1400px;
    margin: 25px auto;
}

.customer-order-table {
    width: 90%;
    max-width: 1400px;
    margin-left: auto;
    margin-right: auto;
}

    .customer-order-table textarea {
        width: 100%;
        max-width: 220px;
        min-width: 140px;
        resize: vertical;
    }

    .customer-order-table th:last-child,
    .customer-order-table td:last-child {
        width: 1%;
        white-space: nowrap;
    }

    .customer-order-table th {
        white-space: nowrap;
    }

.customer-order-page {
    width: 100%;
    padding-bottom: 50px;
}

.customer-order-table-wrapper {
    width: 92%;
    max-width: 1750px;
    margin: 25px auto 0;
    /* Shift table slightly to the right 
    transform: translateX(30px);
        */
}

.customer-order-table {
    width: 100% !important;
    margin-bottom: 0;
}

.customer-order-pagination {
    width: 82%;
    max-width: 1400px;
    margin: 25px auto 0;
    display: flex;
    justify-content: center;
}

.customer-order-actions {
    width: 82%;
    max-width: 1400px;
    margin: 20px auto 0;
    display: flex;
    justify-content: flex-end;
}

/* Proof of payment form */

.payment-proof-form {
    display: flex;
    flex-direction: column;
    gap: 6px;
    width: 100%;
}

.proof-file-input {
    width: 100%;
    min-width: 240px;
}

.proof-upload-btn {
    align-self: flex-start;
}

.list-orders-title {
    margin-left: 0;
    padding-left: 0;
}

/* Contact Hero */

.contact-hero {
    background: linear-gradient(135deg,#d63384,#ff7f50);
    padding: 100px 0;
}

    /* Contact Cards */

    .contact-hero h1 {
        text-shadow: 2px 2px 8px rgba(0,0,0,.25);
    }

    .contact-hero p {
        max-width: 700px;
        margin: auto;
    }

/* CTA */

.bakery-cta {
    background: linear-gradient(135deg,#d63384,#ff7f50);
}

    .bakery-cta .btn {
        padding: 12px 35px;
        font-size: 1.15rem;
        border-radius: 30px;
    }


/* ==========================================
   CANCELLATION POLICY PAGE
========================================== */

.policy-hero {
    background: linear-gradient( 135deg, #d63384 0%, #df7388 55%, #f6a58e 100% );
}

    .policy-hero h1 {
        text-shadow: 2px 2px 8px rgba(0, 0, 0, 0.18);
    }

    .policy-hero p {
        max-width: 760px;
        margin-left: auto;
        margin-right: auto;
    }

.policy-card {
    border-radius: 20px;
}

.policy-section {
    display: flex;
    align-items: flex-start;
    gap: 20px;
}

.policy-icon {
    display: flex;
    min-width: 55px;
    width: 55px;
    height: 55px;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    color: #d63384;
    background-color: #fde7ef;
    font-size: 1.4rem;
}

.policy-section h3 {
    color: #4f3335;
}

.policy-section p {
    color: #6c757d;
    line-height: 1.7;
}

.policy-cta {
    background: linear-gradient( 135deg, #d63384, #f28d72 );
}

    .policy-cta .btn {
        padding: 12px 32px;
        border-radius: 30px;
        font-weight: 600;
    }


/* Mobile */

@media (max-width: 576px) {

    .policy-section {
        flex-direction: column;
    }

    .policy-icon {
        margin-bottom: 5px;
    }
}

/* ==========================================
   ABOUT US PAGE
========================================== */

.about-hero {
    background: radial-gradient( circle at 80% 25%, rgba(255, 255, 255, 0.15), transparent 28% ), linear-gradient( 135deg, #c83f6d 0%, #df7388 55%, #f2a287 100% );
}

.about-hero-image {
    max-height: 500px;
    object-fit: cover;
}

.about-eyebrow,
.section-label {
    color: #d63384;
    font-size: 0.85rem;
    font-weight: 700;
    letter-spacing: 2px;
}

.about-eyebrow {
    color: #ffffff;
}

.about-intro {
    max-width: 700px;
}


/* Feature section */

.about-features {
    background-color: #fff6f3;
}

.about-feature-card {
    padding: 30px 25px;
    border-radius: 18px;
    background-color: #ffffff;
    box-shadow: 0 8px 25px rgba(80, 50, 55, 0.08);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

    .about-feature-card:hover {
        transform: translateY(-7px);
        box-shadow: 0 15px 35px rgba(80, 50, 55, 0.14);
    }

.about-feature-icon {
    display: flex;
    width: 60px;
    height: 60px;
    margin-bottom: 20px;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    color: #d63384;
    background-color: #fde7ef;
    font-size: 1.5rem;
}


/* Mission */

.about-mission {
    background: linear-gradient( 180deg, #fff7f2, #fde9e5 );
}

.mission-heart {
    color: #d63384;
    font-size: 2.5rem;
}

.mission-text {
    max-width: 760px;
}


/* Values */

.value-card {
    padding: 35px 30px;
    border-radius: 18px;
    border: 1px solid #f2d8df;
    background-color: #ffffff;
}

    .value-card i {
        color: #d63384;
        font-size: 2.3rem;
    }


/* CTA */

.about-cta {
    background: linear-gradient( 135deg, #d63384, #ef8d72 );
}

    .about-cta .btn {
        min-width: 180px;
        padding: 12px 28px;
        border-radius: 30px;
    }


/* Responsive */

@media (max-width: 991.98px) {

    .about-hero {
        text-align: center;
    }

    .about-hero-image {
        max-height: 400px;
    }
}

@media (max-width: 576px) {

    .about-feature-card,
    .value-card {
        padding: 25px 20px;
    }
}

/* ==========================================
   CUSTOM GOURMET COOKIE IMAGE
========================================== */

.custom-image-preview {
    max-width: 350px;
    max-height: 300px;
    object-fit: contain;
}

#addImageBtn:disabled {
    opacity: 0.5;
    cursor: not-allowed;
}

#imageUploadStatus {
    font-weight: 600;
}

/* ==========================================
   FAQ PAGE
========================================== */

.faq-hero {
    background: radial-gradient( circle at 80% 20%, rgba(255, 255, 255, 0.16), transparent 28% ), linear-gradient( 135deg, #c83f6d 0%, #df7388 55%, #f2a287 100% );
}

.faq-eyebrow {
    color: #ffffff;
    font-size: 0.85rem;
    font-weight: 700;
    letter-spacing: 2px;
}

.faq-hero-text {
    max-width: 760px;
}

.faq-category-header {
    color: #d63384;
    font-size: 1.15rem;
    font-weight: 700;
    letter-spacing: 0.5px;
}

    .faq-category-header i {
        font-size: 1.3rem;
    }

.faq-category .accordion {
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 6px 20px rgba(80, 50, 55, 0.08);
}

.faq-category .accordion-item {
    border-left: 0;
    border-right: 0;
}

    .faq-category .accordion-item:first-child {
        border-top: 0;
    }

.faq-category .accordion-button {
    padding: 18px 20px;
    color: #4f3335;
    background-color: #ffffff;
    font-weight: 600;
}

    .faq-category .accordion-button:not(.collapsed) {
        color: #d63384;
        background-color: #fff1f5;
        box-shadow: none;
    }

    .faq-category .accordion-button:focus {
        border-color: #efabc0;
        box-shadow: 0 0 0 0.2rem rgba(214, 51, 132, 0.15);
    }

.faq-category .accordion-body {
    color: #6c757d;
    line-height: 1.7;
    background-color: #ffffff;
}


/* Still need help */

.faq-help {
    margin-top: 40px;
    padding: 45px 30px;
    border-radius: 20px;
    background-color: #fff6f3;
}

.faq-help-icon {
    display: inline-flex;
    width: 65px;
    height: 65px;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    color: #d63384;
    background-color: #fde7ef;
    font-size: 1.8rem;
}

.faq-help-text {
    max-width: 600px;
}


/* Mobile */

@media (max-width: 576px) {

    .faq-category .accordion-button {
        padding: 15px;
        font-size: 0.95rem;
    }

    .faq-help {
        padding: 30px 20px;
    }
}

/* ==========================================
   CUSTOMER ORDER DETAILS TABLE ONLY
========================================== */

.customer-details-table {
    width: 80%;
    max-width: 1100px;
    margin: 25px auto;
    table-layout: fixed;
}

    /* Customer row */
    .customer-details-table .customer-row th {
        width: 18%;
    }

    .customer-details-table .customer-row td {
        text-align: left;
    }

    /* Column widths */
    .customer-details-table .details-order {
        width: 12%;
    }

    .customer-details-table .details-product {
        width: 30%;
    }

    .customer-details-table .details-flavor {
        width: 28%;
    }

    .customer-details-table .details-quantity {
        width: 12%;
    }

    .customer-details-table .details-cost {
        width: 18%;
    }

    /* Cell alignment */
    .customer-details-table th,
    .customer-details-table td {
        vertical-align: middle;
    }

    /* Prevent excessive wrapping */
    .customer-details-table .details-order,
    .customer-details-table .details-quantity,
    .customer-details-table .details-cost {
        white-space: nowrap;
    }

    /* Give product/flavor room to wrap naturally */
    .customer-details-table td:nth-child(2),
    .customer-details-table td:nth-child(3) {
        word-wrap: break-word;
    }
.customer-details-actions {
    width: 80%;
    max-width: 1100px;
    margin: 20px auto 40px;
    display: flex;
    justify-content: flex-end;
}


/* ==========================
   HEADER LAYOUT
========================== */
/* ==========================
   HEADER LAYOUT
========================== */

.navbar-container {
    width: 100%;
    display: flex;
    align-items: center;
    padding-left: 25px;
    padding-right: 25px;
    gap: 20px;
}

/* LEFT LOGO */
.navbar-left {
    flex: 0 0 auto;
    display: flex;
    justify-content: flex-start;
    align-items: center;
}

.navbar-logo {
    width: 260px;
    height: 150px;
    object-fit: contain;
    display: block;
}


/* CENTER IMAGE */
.navbar-center {
    flex: 1 1 auto;
    min-width: 0;
    display: flex;
    justify-content: center;
    align-items: center;
    padding-left: 20px;
    padding-right: 20px;
}

.header-chef {
    width: 100%;
    max-width: 560px;
    height: 150px;
    object-fit: contain;
    display: block;
    transform: none;
    transition: transform 0.3s ease;
}

    .header-chef:hover {
        transform: scale(1.03);
    }


/* RIGHT NAVIGATION */
.navbar-collapse {
    flex: 0 0 auto;
}

.navbar .nav-link {
    white-space: nowrap;
}


/* ==========================================
   LAPTOP SCREENS
========================================== */

@media (max-width: 1500px) {

    .navbar-container {
        padding-left: 20px;
        padding-right: 20px;
        gap: 12px;
    }

    .navbar-logo {
        width: 210px;
        height: 135px;
    }

    .navbar-center {
        padding-left: 10px;
        padding-right: 10px;
    }

    .header-chef {
        max-width: 440px;
        height: 135px;
    }

    .navbar .nav-link {
        font-size: 1rem;
        padding: 10px 10px !important;
        margin: 0 2px;
    }
}


/* ==========================================
   SMALL LAPTOP / TABLET
   Bootstrap navbar-expand-xl collapses below
   1200px.
========================================== */

@media (max-width: 1199.98px) {

    .navbar-container {
        flex-wrap: wrap;
        padding: 10px 20px;
    }

    .navbar-logo {
        width: 180px;
        height: 110px;
    }

    .navbar-center {
        flex: 1;
        padding: 0 15px;
    }

    .header-chef {
        max-width: 380px;
        height: 110px;
    }

    .navbar-toggler {
        margin-left: auto;
    }

    .navbar-collapse {
        flex-basis: 100%;
        width: 100%;
        margin-top: 10px;
    }

    .navbar-nav {
        width: 100%;
        align-items: stretch !important;
    }

    .navbar .nav-link {
        padding: 10px 15px !important;
        margin: 2px 0;
    }

    .navbar .dropdown-menu {
        width: 100%;
    }
}


/* ==========================================
   MOBILE
========================================== */

@media (max-width: 767.98px) {

    .navbar-container {
        padding: 8px 12px;
        gap: 8px;
    }

    .navbar-logo {
        width: 130px;
        height: 90px;
    }

    .navbar-center {
        padding: 0;
    }

    .header-chef {
        max-width: 240px;
        height: 90px;
    }
}


/* VERY SMALL PHONES */
@media (max-width: 575.98px) {

    .navbar-logo {
        width: 110px;
        height: 80px;
    }

    .navbar-center {
        display: none;
    }

    .navbar-toggler {
        margin-left: auto;
    }
}

/* ==========================================
   PRIVACY POLICY
========================================== */

.privacy-hero {
    background: linear-gradient(135deg,#c63d68,#dc7086,#f2a48b);
}

.privacy-label {
    color: #fff;
    font-weight: 700;
    letter-spacing: 2px;
    font-size: .9rem;
}

.privacy-intro {
    max-width: 750px;
}

.card h3 {
    color: #5a3a3a;
    font-weight: 700;
}

.card ul {
    padding-left: 1.5rem;
}

.card li {
    margin-bottom: .6rem;
}

.card {
    border-radius: 20px;
}

/* ==========================================
   RECEIPT COLUMNS
========================================== */

.customer-order-table .col-receipt {
    width: 9%;
    text-align: center;
    white-space: nowrap;
}

.receipt-preview {
    max-width: 350px;
    max-height: 300px;
    object-fit: contain;
}

.customer-order-actions {
    display: flex;
    justify-content: flex-end;
    align-items: center;
    gap: 15px;
    margin-top: 25px;
    margin-right: 15px;
}
.video-wrapper {
    display: flex;
    justify-content: center;
    align-items: center;
}

.bakery-video {
    width: 400px;
    height: 450px;
    object-fit: cover;
    object-position: center;
    border: none;
    border-radius: 18px;
    box-shadow: 0 12px 30px rgba(0, 0, 0, 0.16);
    background: transparent;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

    .bakery-video:hover {
        transform: translateY(-5px);
        box-shadow: 0 18px 38px rgba(0, 0, 0, 0.22);
    }


.gallery-carousel {
    width: 80%;
    max-width: 1100px;
    margin: 0 auto;
    border-radius: 18px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.12);
}

.carousel-img {
    width: 100%;
    height: 480px;
    object-fit: cover;
    object-position: center;
}

.gallery-carousel .carousel-control-prev,
.gallery-carousel .carousel-control-next {
    width: 8%;
}

.gallery-carousel .carousel-control-prev-icon,
.gallery-carousel .carousel-control-next-icon {
    width: 42px;
    height: 42px;
    background-size: 50%;
    background-color: rgba(255, 255, 255, 0.85);
    border-radius: 50%;
    filter: invert(1);
    box-shadow: 0 3px 10px rgba(0, 0, 0, 0.15);
}

.gallery-carousel .carousel-indicators button {
    width: 10px;
    height: 10px;
    border-radius: 50%;
}

.gallery-carousel .carousel-indicators {
    margin-bottom: 15px;
}

    .gallery-carousel .carousel-indicators button {
        width: 9px;
        height: 9px;
        border-radius: 50%;
        border: 2px solid white;
        margin: 0 5px;
        background-color: #cf4265;
        opacity: 0.55;
        transition: all 0.25s ease;
    }

    .gallery-carousel .carousel-indicators .active {
        width: 12px;
        height: 12px;
        opacity: 1;
        transform: scale(1.15);
    }


    /*For Manage customer Table*/
.customer-table {
    width: 100%;
    table-layout: fixed;
}

    .customer-table .col-customer-id {
        width: 8%;
    }

    .customer-table .col-customer {
        width: 14%;
    }

    .customer-table .col-email {
        width: 27%;
    }

    .customer-table .col-telephone {
        width: 15%;
    }

    .customer-table .col-created {
        width: 14%;
    }

    .customer-table .col-status {
        width: 10%;
    }

    .customer-table .col-action {
        width: 12%;
    }

    .customer-table th,
    .customer-table td {
        padding: 0.55rem 0.65rem;
        vertical-align: middle;
    }

    .customer-table td {
        overflow: hidden;
        text-overflow: ellipsis;
        white-space: nowrap;
    }


#customImageGallery {
    display: flex;
    flex-wrap: wrap;
    gap: 20px;
    align-items: flex-start;
}

.custom-image-wrapper {
    width: 120px;
    height: 120px;
    flex: 0 0 120px;
}

.custom-image-preview {
    width: 120px;
    height: 120px;
    object-fit: cover;
    display: block;
}

/* ==========================================
   COOKIE PHOTO BOOTH INQUIRY
========================================== */

.photo-booth-inquiry {
    background: linear-gradient( 180deg, #fff7f2 0%, #fcece8 100% );
}

.inquiry-card {
    max-width: 950px;
    padding: 45px;
    background-color: #ffffff;
    border-radius: 22px;
    box-shadow: 0 12px 35px rgba(86, 58, 61, 0.12);
}

.inquiry-eyebrow {
    color: #d63384;
    font-size: 0.85rem;
    font-weight: 700;
    letter-spacing: 2px;
}

.inquiry-card h1 {
    color: var(--bakery-brown);
}

.inquiry-intro {
    max-width: 700px;
    margin: 15px auto 0;
    line-height: 1.7;
}

.inquiry-card .form-label {
    color: var(--bakery-brown);
    font-weight: 600;
}

.inquiry-card .form-control {
    min-height: 48px;
    border: 1px solid #e3cfd5;
}

.inquiry-card textarea.form-control {
    min-height: 130px;
}

.inquiry-card .form-control:focus {
    border-color: var(--theme-color);
    box-shadow: 0 0 0 0.2rem rgba(168, 50, 100, 0.15);
}

.inquiry-confirmation {
    padding: 20px;
    background-color: #fff3f7;
    border: 1px solid #f2d8df;
    border-radius: 12px;
}

    .inquiry-confirmation .form-check-label {
        line-height: 1.6;
    }

#submitInquiry {
    min-height: 52px;
    font-size: 1.1rem;
    font-weight: 600;
}

    #submitInquiry:disabled {
        opacity: 0.45;
        cursor: not-allowed;
    }

@media (max-width: 767.98px) {

    .inquiry-card {
        padding: 25px 20px;
    }

        .inquiry-card h1 {
            font-size: 1.8rem;
        }
}
