@import url("https://fonts.googleapis.com/css2?family=Cormorant+Garamond:wght@500;600;700;800&family=Manrope:wght@400;500;600;700;800&display=swap");

/*** Spinner Start ***/
#spinner {
    opacity: 0;
    visibility: hidden;
    transition: opacity .8s ease-out, visibility 0s linear .5s;
    z-index: 99999;
 }

 #spinner.show {
     transition: opacity .8s ease-out, visibility 0s linear .0s;
     visibility: visible;
     opacity: 1;
 }
/*** Spinner End ***/


.back-to-top {
    position: fixed;
    right: 30px;
    bottom: 30px;
    z-index: 99;
}

body {
    color: #2d241d !important;
    background:
        radial-gradient(circle at 8% 0%, rgba(241, 196, 211, 0.18), transparent 24%),
        radial-gradient(circle at 92% 10%, rgba(199, 225, 214, 0.18), transparent 28%),
        linear-gradient(180deg, #fdfaf6 0%, #eef6f1 52%, #fdfaf6 100%);
    line-height: 1.7;
}

body,
p,
li,
span,
a,
small,
label,
input,
textarea,
button {
    font-family: "Manrope", sans-serif !important;
}

p,
li,
small,
label,
input,
textarea {
    color: #4a4038;
}

.text-body,
.text-muted {
    color: #5b4b41 !important;
}

h1,
h2,
h3,
h4,
h5,
h6,
.h1,
.h2,
.h3,
.h4,
.h5,
.h6 {
    font-weight: 600 !important;
    font-family: "Cormorant Garamond", serif !important;
    letter-spacing: 0.01em;
    text-wrap: balance;
}

.my-6 {
    margin-top: 6rem;
    margin-bottom: 6rem;
}

.py-6 {
    padding-top: 6rem;
    padding-bottom: 6rem;
}

.wow,
.animated {
    animation-duration: 2s !important;
}


/*** Button Start ***/
.btn.btn-primary {
    background: linear-gradient(135deg, #f1c4d4 0%, #e79db6 100%) !important;
    border: 1px solid rgba(199, 161, 92, 0.9) !important;
    color: #FFFFFF !important;
    box-shadow: 0 12px 24px rgba(199, 161, 92, 0.18);
}

.btn.btn-primary:hover {
    background: linear-gradient(135deg, #e79db6 0%, #c59a57 100%) !important;
    border-color: #c59a57 !important;
    color: #fff !important;
}

.btn.btn-outline-primary {
    color: #32443d !important;
    border-color: rgba(199, 161, 92, 0.82) !important;
    background: rgba(255, 255, 255, 0.78);
}

.btn.btn-outline-primary:hover {
    color: #32443d !important;
    border-color: #c59a57 !important;
    background: linear-gradient(135deg, rgba(199, 225, 214, 0.96) 0%, rgba(241, 196, 211, 0.92) 100%) !important;
}

.btn {
    font-weight: 600;
    transition: .5s;
}

.btn-square {
    width: 32px;
    height: 32px;
}

.btn-sm-square {
    width: 38px;
    height: 38px;
}

.btn-md-square {
    width: 44px;
    height: 44px;
}

.btn-lg-square {
    width: 56px;
    height: 56px;
}

.btn-square,
.btn-sm-square,
.btn-md-square,
.btn-lg-square {
    padding: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: normal;
}
/*** Button End ***/


/*** Navbar Start ***/
.nav-bar {
    background: rgba(253, 250, 246, 0.96);
    border-bottom: 1px solid rgba(197, 154, 87, 0.18);
    position: sticky;
    top: 0;
    z-index: 1040;
    box-shadow: 0 10px 24px rgba(46, 37, 29, 0.08);
    backdrop-filter: blur(12px);
}

.navbar .navbar-nav .nav-link {
    padding: 10px 12px;
    font-weight: 600;
    font-size: 17px;
    transition: .5s;
}

.navbar .navbar-nav .nav-link:hover,
.navbar .navbar-nav .nav-link.active {
    color: var(--bs-primary);
}

.navbar .dropdown-toggle::after {
    border: none;
    content: "\f107";
    font-family: "Font Awesome 5 Free";
    font-weight: 700;
    vertical-align: middle;
    margin-left: 8px;
}

@media (min-width: 1200px) {
    .navbar .nav-item .dropdown-menu {
        display: block;
        visibility: hidden;
        top: 100%;
        transform: rotateX(-75deg);
        transform-origin: 0% 0%;
        transition: .5s;
        opacity: 0;
    }
    
    .navbar .nav-item:hover .dropdown-menu {
        transform: rotateX(0deg);
        visibility: visible;
        opacity: 1;
    }
}

.dropdown .dropdown-menu a:hover {
    background: var(--bs-primary);
    color: var(--bs-white);
}

#searchModal .modal-content {
    background-color: rgba(255, 255, 255, .95);
}
/*** Navbar End ***/

.whatsapp-float {
    position: fixed;
    right: 30px;
    bottom: 95px;
    width: 56px;
    height: 56px;
    border-radius: 50%;
    background: #25d366;
    color: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 100;
    box-shadow: 0 12px 26px rgba(0, 0, 0, 0.22);
    transition: transform 0.25s ease, box-shadow 0.25s ease, background 0.25s ease;
}

.whatsapp-float i {
    font-size: 1.9rem;
    line-height: 1;
}

.whatsapp-float:hover {
    color: #fff !important;
    background: #1fb857;
    transform: translateY(-3px) scale(1.03);
    box-shadow: 0 16px 32px rgba(0, 0, 0, 0.26);
}


/*** Events Start ***/
.event .tab-class .nav-item a.active {
    background: var(--bs-primary) !important;
}

.event .event-img .event-overlay {
    position: absolute;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    background: linear-gradient(180deg, rgba(33, 22, 18, 0.08) 0%, rgba(33, 22, 18, 0.74) 100%);
    border-radius: 8px;
    transition: 0.5s;
    opacity: 0;
    z-index: 1;
}

.event .event-img:hover .event-overlay {
    opacity: 1;
}

#product-gallery .event-img {
    border-radius: 12px;
    overflow: hidden;
}

#product-gallery .event-img img {
    width: 100%;
    height: 260px;
    object-fit: cover;
    display: block;
    filter: brightness(1.12) saturate(1.14) contrast(1.05);
}
/*** Events End ***/


/*** service start ***/
.service .service-item {
    position: relative;
    height: 100%;
    border-radius: 8px;
    box-shadow: 0 0 45px rgba(0, 0, 0, .08);
}

.service-content::after {
    position: absolute;
    content: "";
    width: 100%;
    height: 0;
    top: 0;
    left: 0;
    bottom: auto;
    background: var(--bs-primary);
    border-radius: 8px;
    transition: 1s;
}

.service-item:hover .service-content::after {
    height: 100%;
    opacity: 1;
}

.service-item .service-content-icon {
    position: relative;
    z-index: 2;
}

.service-item .service-content-icon i,
.service-item .service-content-icon p {
    transition: 1s;
}

.service-item:hover .service-content-icon i {
    color: var(--bs-dark) !important;
}

.service-item:hover .service-content-icon p {
    color: var(--bs-white);
}

.service-item:hover .service-content-icon a.btn-primary {
    background: var(--bs-white);
    color: var(--bs-dark);
}

.service-item .service-content-icon a.btn-primary {
    transition: 1s !important;
}
/*** Services End ***/


/*** Menu Start ***/
.menu .nav-item a.active {
    background: var(--bs-primary) !important;
}

.menu .menu-item .border-bottom {
    border-bottom-style: dashed !important;
}
/*** Menu End ***/


/*** Youtube Video start ***/
.video {
    position: relative;
    height: 100%;
    min-height: 400px;
    background: linear-gradient(rgba(255, 255, 255, 0.42), rgba(255, 255, 255, 0.22)), url(../img/new_img/website/marble-bg.jpg);
    background-position: center center;
    background-repeat: no-repeat;
    background-size: cover;
    border-radius: 8px;
}

.video .btn-play {
    position: absolute;
    z-index: 3;
    top: 50%;
    left: 50%;
    transform: translateX(-50%) translateY(-50%);
    box-sizing: content-box;
    display: block;
    width: 32px;
    height: 44px;
    border-radius: 50%;
    border: none;
    outline: none;
    padding: 18px 20px 18px 28px;
}

.video .btn-play:before {
    content: "";
    position: absolute;
    z-index: 0;
    left: 50%;
    top: 50%;
    transform: translateX(-50%) translateY(-50%);
    display: block;
    width: 100px;
    height: 100px;
    background: var(--bs-primary);
    border-radius: 50%;
    animation: pulse-border 1500ms ease-out infinite;
}

.video .btn-play:after {
    content: "";
    position: absolute;
    z-index: 1;
    left: 50%;
    top: 50%;
    transform: translateX(-50%) translateY(-50%);
    display: block;
    width: 100px;
    height: 100px;
    background: var(--bs-white);
    border-radius: 50%;
    transition: all 200ms;
}

.video .btn-play img {
    position: relative;
    z-index: 3;
    max-width: 100%;
    width: auto;
    height: auto;
}

.video .btn-play span {
    display: block;
    position: relative;
    z-index: 3;
    width: 0;
    height: 0;
    border-left: 32px solid var(--bs-dark);
    border-top: 22px solid transparent;
    border-bottom: 22px solid transparent;
}

@keyframes pulse-border {
    0% {
        transform: translateX(-50%) translateY(-50%) translateZ(0) scale(1);
        opacity: 1;
    }

    100% {
        transform: translateX(-50%) translateY(-50%) translateZ(0) scale(1.5);
        opacity: 0;
    }
}

#videoModal {
    z-index: 99999;
}

#videoModal .modal-dialog {
    position: relative;
    max-width: 800px;
    margin: 60px auto 0 auto;
}

#videoModal .modal-body {
    position: relative;
    padding: 0px;
}

#videoModal .close {
    position: absolute;
    width: 30px;
    height: 30px;
    right: 0px;
    top: -30px;
    z-index: 999;
    font-size: 30px;
    font-weight: normal;
    color: #FFFFFF;
    background: #000000;
    opacity: 1;
}
/*** Youtube Video End ***/


/*** Blog Start ***/
.blog-item {
    position: relative;
}

.blog-item img {
    transition: 0.5s;
}

.blog-item:hover img {
    transform: scale(1.3)
}

.blog-item .blog-content {
    position: relative;
    transform: translateY(-50%);
    box-shadow: 0 0 45px rgba(0, 0, 0, .08);
}

.blog-item .blog-content a.btn h5 {
    transition: 0.5s;
}

.blog-item:hover .blog-content a.btn h5 {
    color: var(--bs-primary) !important;
}
/*** Blog End ***/


/*** Team Start ***/
.team-item {
    width: 100%;
    height: 100%;
    position: relative;
}

.team-item .team-icon {
    position: absolute;
    top: 0;
    right: 0;
}

.team-item .team-icon .share-link {
    opacity: 0;
    transition: 0.9s;
}

.team-item:hover .share-link {
    opacity: 1;
}

.team-item .team-content {
    transition: 0.9s;
}

.team-item:hover .team-content {
    background: var(--bs-primary) !important;
    color: var(--bs-dark) !important;
}

.team-item .team-content h4,
.team-item .team-content p {
    transition: 0.5s;
}

.team-item:hover .team-content h4 {
    color: var(--bs-dark) !important;
}

.team-item:hover .team-content p {
    color: var(--bs-white);
}
/*** Team End ***/


/*** testimonial Start ***/
.testimonial-item {
    border: 1px solid var(--bs-primary);
    padding: 20px 20px;
}

.testimonial-carousel .owl-item img {
    width: 100px;
    height: 100px;
}

.testimonial-carousel.owl-rtl .testimonial-item {
    direction: ltr !important;
}
/*** testimonial End ***/


/*** Contact start ***/
.contact-form {
    box-shadow: 0 0 45px rgba(0, 0, 0, .08);
}

/*** Contact End ***/


/*** Footer Start ***/
.footer .footer-item a.text-body:hover {
    color: var(--bs-primary) !important;
}
/*** Footer End ***/




/* ========== Delfine Bakery Custom Color Theme ========== */
:root {
    --delfine-sage: #c7e1d6;
    --delfine-sage-deep: #6f8d80;
    --delfine-blush: #f1c4d4;
    --delfine-blush-soft: #fbe9f0;
    --delfine-gold: #c59a57;
    --delfine-gold-soft: #ead1a0;
    --delfine-ivory: #fdfaf6;
    --delfine-cream: #f8f0e7;
    --delfine-ink: #32443d;
    --bs-primary: #6f8d80 !important;
    --bs-light: #fdfaf6 !important;
    --bs-primary-rgb: 111, 141, 128 !important;
    --bs-light-rgb: 253, 250, 246 !important;
}

/* Override primary color for text, backgrounds, and borders */
.text-primary {
    color: #6f8d80 !important;
}

.bg-primary {
    background-color: #6f8d80 !important;
}

.border-primary {
    border-color: #c59a57 !important;
}

.btn-primary {
    background: linear-gradient(135deg, #f1c4d4 0%, #e79db6 100%) !important;
    border-color: #c59a57 !important;
    color: #FFFFFF !important;
    box-shadow: 0 12px 24px rgba(199, 161, 92, 0.18);
}
.btn-primary:hover {
    background: linear-gradient(135deg, #e79db6 0%, #c59a57 100%) !important;
    border-color: #c59a57 !important;
    color: #FFFFFF !important;
}

/* Override light color for backgrounds */
.bg-light {
    background-color: #fdfaf6 !important;
}

/* Navbar specific overrides if needed */
.nav-bar {
    background: rgba(253, 250, 246, 0.98) !important;
    backdrop-filter: blur(12px);
    border-bottom: 1px solid rgba(197, 154, 87, 0.16);
}

/* Footer specific override */
.footer.bg-light {
    background-color: #f8f1ea !important;
    background-image:
        linear-gradient(150deg, rgba(255, 255, 255, 0.82) 0%, rgba(241, 196, 211, 0.18) 100%),
        url("../img/new_img/website/marble-bg.jpg");
    background-size: cover;
    background-position: center;
}

/* Dropdown menu override to match new light color */
.dropdown-menu.bg-light {
    background-color: #f8f1ea !important;
}

/* Update the hero section background to use the new light color */
.container-fluid.bg-light {
    background-color: #f8f1ea !important;
    background-image:
        linear-gradient(140deg, rgba(255, 255, 255, 0.84) 0%, rgba(199, 225, 214, 0.16) 52%, rgba(241, 196, 211, 0.10) 100%),
        url("../img/new_img/website/marble-bg.jpg");
    background-size: cover;
    background-position: center;
}

/* Update active pagination/item colors */
.page-item.active .page-link,
.nav-pills .nav-link.active,
.nav-pills .show>.nav-link {
    background-color: #6f8d80 !important;
    border-color: #c59a57 !important;
}

/* Service item hover effect uses primary, adjust text if needed */
.service-item:hover .service-content-icon a.btn-primary {
    background: #FFFFFF !important; /* Keep button white on hover */
    color: #6f8d80 !important;
}

/* Team item hover override */
.team-item:hover .team-content {
    background: linear-gradient(135deg, #6f8d80 0%, #c59a57 100%) !important;
}
.team-item:hover .team-content h4 {
    color: #fdfaf6 !important;
}

/* Play button animation color */
.video .btn-play:before {
    background: #c59a57 !important;
}

/* Pagination hover color override */
.page-link:hover,
.page-link:focus {
    color: #c59a57 !important;
}

/* Link hover color */
a:hover {
    color: #5f7f73 !important;
}

.delfin-slider-wrap {
    background:
        radial-gradient(circle at 12% 0%, rgba(241, 196, 211, 0.16), transparent 24%),
        radial-gradient(circle at 88% 10%, rgba(199, 225, 214, 0.18), transparent 26%),
        linear-gradient(180deg, rgba(253, 250, 246, 0.98), rgba(238, 246, 241, 0.96));
}

#header-carousel {
    position: relative;
    width: 100%;
    max-width: none;
    margin: 0 auto;
    border-radius: 0;
    overflow: hidden;
    border-left: 0;
    border-right: 0;
    border-top: 1px solid rgba(197, 154, 87, 0.16);
    border-bottom: 1px solid rgba(197, 154, 87, 0.16);
    box-shadow: none;
    background: #fdfaf6;
}

#header-carousel .carousel-inner {
    border-radius: inherit;
    overflow: hidden;
}

#header-carousel .carousel-item {
    position: relative;
    min-height: clamp(700px, 88vh, 940px);
    overflow: hidden;
}

#header-carousel .carousel-item > img.delfin-carousel-image {
    width: 100%;
    height: clamp(700px, 88vh, 940px);
    object-fit: cover;
    object-position: center;
    transform: scale(1.03);
    transform-origin: center center;
    filter: brightness(0.96) saturate(1.12) contrast(1.05);
}

#header-carousel .carousel-item.active > img.delfin-carousel-image {
    animation: delfinHeroZoom 7s ease-in-out both;
}

#header-carousel .carousel-item::after {
    content: "";
    position: absolute;
    inset: 0;
    background:
        linear-gradient(180deg, rgba(253, 250, 246, 0.00) 0%, rgba(253, 250, 246, 0.00) 48%, rgba(253, 250, 246, 0.06) 82%, rgba(253, 250, 246, 0.22) 100%),
        linear-gradient(90deg, rgba(253, 250, 246, 0.08) 0%, rgba(253, 250, 246, 0.00) 18%, rgba(253, 250, 246, 0.00) 82%, rgba(253, 250, 246, 0.06) 100%);
    z-index: 1;
}

#header-carousel .carousel-caption {
    inset: 0;
    display: flex;
    justify-content: flex-start;
    align-items: flex-end;
    text-align: left;
    padding: 0;
    padding-bottom: clamp(24px, 3vw, 40px);
    z-index: 2;
    pointer-events: none;
}

#header-carousel .carousel-item.active .carousel-caption {
    animation: delfinHeroCaptionIn 900ms ease both;
}

#header-carousel .carousel-caption .container {
    position: relative;
    z-index: 2;
    width: 100%;
    max-width: none;
    padding-left: clamp(14px, 4vw, 56px);
    padding-right: clamp(14px, 4vw, 28px);
}

.delfin-carousel-panel {
    position: relative;
    max-width: 380px;
    margin: 0;
    padding: 20px 20px 16px;
    border-radius: 24px;
    background: rgba(255, 255, 255, 0.54);
    border: 1px solid rgba(197, 154, 87, 0.18);
    box-shadow: 0 14px 28px rgba(44, 38, 31, 0.08);
    backdrop-filter: blur(10px);
    pointer-events: auto;
    text-align: left;
}

#header-carousel .carousel-item.active .delfin-carousel-panel {
    animation: delfinHeroPanelIn 900ms ease both;
}

.delfin-carousel-panel::before {
    content: "";
    position: absolute;
    left: 20px;
    top: 12px;
    transform: none;
    width: 60px;
    height: 2px;
    border-radius: 999px;
    background: linear-gradient(90deg, rgba(197, 154, 87, 0) 0%, #c59a57 35%, #f1c4d4 65%, rgba(197, 154, 87, 0) 100%);
    opacity: 0.8;
}

.delfin-carousel-kicker {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    margin-bottom: 8px;
    padding: 5px 10px;
    border-radius: 999px;
    background: rgba(199, 225, 214, 0.16);
    border: 1px solid rgba(197, 154, 87, 0.18);
    color: #5f7f73;
    font-size: 0.68rem;
    font-weight: 800;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    justify-content: flex-start;
}

#header-carousel .carousel-item.active .delfin-carousel-kicker {
    animation: delfinHeroFadeUp 700ms ease both;
    animation-delay: 120ms;
}

.delfin-carousel-panel h1 {
    margin: 0 0 8px;
    color: #32443d;
    font-size: clamp(2rem, 4.8vw, 4rem);
    line-height: 0.92;
    letter-spacing: -0.03em;
}

#header-carousel .carousel-item.active .delfin-carousel-panel h1 {
    animation: delfinHeroFadeUp 780ms ease both;
    animation-delay: 200ms;
}

.delfin-carousel-panel h1 span {
    color: #c59a57;
    font-style: italic;
}

.delfin-carousel-panel p {
    margin: 0;
    max-width: 560px;
    font-size: 0.88rem;
    color: #51453d;
}

#header-carousel .carousel-item.active .delfin-carousel-panel p {
    animation: delfinHeroFadeUp 780ms ease both;
    animation-delay: 290ms;
}

.delfin-carousel-actions {
    display: flex;
    flex-wrap: wrap;
    justify-content: flex-start;
    gap: 12px;
    margin-top: 12px;
}

#header-carousel .carousel-item.active .delfin-carousel-actions {
    animation: delfinHeroFadeUp 780ms ease both;
    animation-delay: 380ms;
}

.delfin-carousel-actions .btn {
    min-width: 160px;
}

#header-carousel .carousel-indicators {
    bottom: 22px;
    margin-bottom: 0;
    gap: 8px;
    z-index: 4;
}

#header-carousel .carousel-indicators [data-bs-target] {
    width: 12px;
    height: 12px;
    border-radius: 999px;
    background-color: rgba(255, 255, 255, 0.75);
    border: 1px solid rgba(197, 154, 87, 0.55);
    opacity: 1;
}

#header-carousel .carousel-indicators .active {
    width: 36px;
    background: linear-gradient(135deg, #f1c4d4 0%, #c59a57 100%);
}

#header-carousel .carousel-control-prev,
#header-carousel .carousel-control-next {
    width: 8%;
    z-index: 4;
}

#header-carousel .carousel-control-prev-icon,
#header-carousel .carousel-control-next-icon {
    width: 3rem;
    height: 3rem;
    background-color: rgba(255, 255, 255, 0.84);
    background-size: 55% 55%;
    border-radius: 50%;
    border: 1px solid rgba(197, 154, 87, 0.24);
    box-shadow: 0 14px 24px rgba(44, 38, 31, 0.14);
}

@media (max-width: 991.98px) {
    #header-carousel .carousel-item,
    #header-carousel .carousel-item > img.delfin-carousel-image {
        min-height: 620px;
        height: 620px;
    }

    #header-carousel .carousel-caption {
        align-items: flex-end;
        padding-bottom: 18px;
    }

    .delfin-carousel-panel {
        max-width: 100%;
        padding: 20px 16px 16px;
    }

    .delfin-carousel-panel h1 {
        font-size: clamp(2rem, 7vw, 3.5rem);
    }

    .delfin-carousel-actions .btn {
        min-width: 150px;
    }

    #header-carousel .carousel-control-prev,
    #header-carousel .carousel-control-next {
        width: 12%;
    }
}

@media (max-width: 575.98px) {
    #header-carousel .carousel-item,
    #header-carousel .carousel-item > img.delfin-carousel-image {
        min-height: 600px;
        height: 600px;
    }

    #header-carousel .carousel-caption {
        align-items: flex-end;
        padding-bottom: 16px;
        justify-content: center;
        text-align: center;
    }

    .delfin-carousel-panel {
        padding: 16px 12px 12px;
        border-radius: 22px;
        max-width: 100%;
        margin: 0 auto;
        text-align: center;
    }

    .delfin-carousel-panel::before {
        left: 50%;
        transform: translateX(-50%);
        width: 64px;
        top: 10px;
    }

    .delfin-carousel-panel h1 {
        font-size: clamp(1.8rem, 10vw, 3rem);
    }

    .delfin-carousel-panel p {
        display: none;
        font-size: 0.9rem;
        margin-left: auto;
        margin-right: auto;
    }

    .delfin-carousel-actions .btn {
        min-width: 100%;
    }

    .delfin-carousel-actions {
        justify-content: center;
        margin-top: 12px;
    }

    #header-carousel .carousel-indicators {
        bottom: 12px;
    }

    #header-carousel .carousel-indicators [data-bs-target] {
        width: 10px;
        height: 10px;
    }

    #header-carousel .carousel-indicators .active {
        width: 28px;
    }
}

@keyframes delfinHeroZoom {
    0% {
        transform: scale(1.08);
    }

    100% {
        transform: scale(1.03);
    }
}

@keyframes delfinHeroCaptionIn {
    from {
        opacity: 0;
        transform: translate3d(0, 18px, 0);
    }

    to {
        opacity: 1;
        transform: translate3d(0, 0, 0);
    }
}

@keyframes delfinHeroPanelIn {
    from {
        opacity: 0;
        transform: translate3d(0, 14px, 0) scale(0.985);
    }

    to {
        opacity: 1;
        transform: translate3d(0, 0, 0) scale(1);
    }
}

@keyframes delfinHeroFadeUp {
    from {
        opacity: 0;
        transform: translate3d(0, 12px, 0);
    }

    to {
        opacity: 1;
        transform: translate3d(0, 0, 0);
    }
}

.delfine-hero-panel {
    background: rgba(253, 250, 246, 0.82);
    border: 1px solid rgba(197, 154, 87, 0.28);
    backdrop-filter: blur(10px);
    border-radius: 28px;
    padding: 30px 32px;
    box-shadow: 0 18px 40px rgba(46, 37, 29, 0.14);
}

/* Premium poster hero */
.delfin-premium-hero {
    background:
        radial-gradient(circle at 8% 16%, rgba(241, 196, 211, 0.20), transparent 24%),
        radial-gradient(circle at 92% 12%, rgba(199, 225, 214, 0.22), transparent 28%),
        linear-gradient(135deg, #c7e1d6 0%, #eef6f1 28%, #fdfaf6 58%, #fbe9f0 100%);
}

.delfin-premium-card {
    position: relative;
    max-width: 1080px;
    margin: 0 auto;
    background: rgba(255, 255, 255, 0.96);
    border: 1px solid rgba(197, 154, 87, 0.24);
    border-radius: 34px;
    overflow: hidden;
    box-shadow: 0 30px 70px rgba(44, 38, 31, 0.16);
}

.delfin-premium-card::before {
    content: "";
    position: absolute;
    inset: 0 auto 0 0;
    width: 32%;
    background:
        linear-gradient(180deg, rgba(241, 196, 211, 0.34) 0%, rgba(241, 196, 211, 0.14) 100%),
        repeating-linear-gradient(90deg, rgba(197, 154, 87, 0.08) 0 8px, transparent 8px 24px);
    opacity: 0.75;
    pointer-events: none;
}

.delfin-premium-topbar {
    position: relative;
    z-index: 1;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 16px;
    padding: 20px 28px 18px;
    min-height: 96px;
    background: linear-gradient(180deg, rgba(255, 255, 255, 0.98), rgba(253, 250, 246, 0.92));
    border-bottom: 1px solid rgba(197, 154, 87, 0.12);
}

.delfin-premium-icon-btn {
    width: 52px;
    height: 52px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #8d6a2f;
    background: rgba(255, 255, 255, 0.78);
    border: 1px solid rgba(197, 154, 87, 0.34);
    box-shadow: 0 10px 18px rgba(44, 38, 31, 0.06);
}

.delfin-premium-brand {
    position: relative;
    z-index: 1;
    display: flex;
    align-items: center;
    justify-content: center;
    min-width: 160px;
}

.delfin-premium-brand img {
    height: 72px;
    width: auto;
}

.delfin-premium-badge-round {
    width: 52px;
    height: 52px;
    border-radius: 50%;
    background: linear-gradient(135deg, #f0a8bc 0%, #e887a8 100%);
    border: 2px solid #e3c173;
    color: #FFFFFF !important;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.15rem;
    box-shadow: 0 12px 24px rgba(44, 38, 31, 0.12);
}

.delfin-premium-collage {
    position: relative;
    min-height: clamp(680px, 86vw, 960px);
    padding: 28px 26px 44px;
    background:
        radial-gradient(circle at 84% 16%, rgba(199, 225, 214, 0.26), transparent 14%),
        radial-gradient(circle at 18% 24%, rgba(241, 196, 211, 0.32), transparent 28%),
        linear-gradient(180deg, rgba(246, 251, 248, 0.96) 0%, rgba(255, 255, 255, 0.98) 100%);
}

.delfin-premium-pattern {
    position: absolute;
    left: 18px;
    top: 18px;
    bottom: 18px;
    width: 94px;
    border-radius: 30px;
    background:
        linear-gradient(180deg, rgba(241, 196, 211, 0.58) 0%, rgba(241, 196, 211, 0.14) 100%),
        radial-gradient(circle, rgba(255, 255, 255, 0.76) 0 5px, transparent 6px);
    background-size: auto, 18px 18px;
    border: 1px solid rgba(197, 154, 87, 0.10);
    opacity: 0.8;
}

.delfin-premium-frame {
    position: absolute;
    padding: 10px;
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.96) 0%, rgba(255, 255, 255, 0.72) 100%);
    border: 2px solid rgba(197, 154, 87, 0.92);
    box-shadow: 0 18px 30px rgba(44, 38, 31, 0.12);
    overflow: hidden;
}

.delfin-premium-frame::after {
    content: "";
    position: absolute;
    inset: 6px;
    border: 1px solid rgba(197, 154, 87, 0.34);
    pointer-events: none;
}

.delfin-premium-frame img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.delfin-premium-frame.main {
    left: 8%;
    top: 16%;
    width: 50%;
    height: 54%;
    border-radius: 34px;
}

.delfin-premium-frame.circle-one {
    right: 8%;
    top: 10%;
    width: 40%;
    aspect-ratio: 1;
    border-radius: 50%;
}

.delfin-premium-frame.circle-two {
    right: 8%;
    top: 42%;
    width: 38%;
    aspect-ratio: 1;
    border-radius: 50%;
}

.delfin-premium-frame.bottom {
    left: 28%;
    bottom: 7%;
    width: 42%;
    height: 28%;
    border-radius: 50% / 45%;
}

.delfin-premium-medallion {
    position: absolute;
    z-index: 2;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    box-shadow: 0 14px 28px rgba(44, 38, 31, 0.14);
}

.delfin-premium-medallion.crown {
    left: 24%;
    bottom: 10%;
    width: 70px;
    height: 70px;
    background: linear-gradient(135deg, #fff 0%, #f7e6ec 100%);
    border: 2px solid #e2bf72;
    color: #b88416;
    font-size: 1.9rem;
}

.delfin-premium-medallion.logo {
    right: 11%;
    bottom: 39%;
    width: 88px;
    height: 88px;
    background: linear-gradient(135deg, #f2b1c1 0%, #e78eac 100%);
    border: 2px solid #e2bf72;
    color: #fff;
    font-family: "Cormorant Garamond", serif;
    font-size: 2.3rem;
    font-weight: 700;
}

.delfin-premium-copy {
    position: relative;
    z-index: 1;
    padding: 22px 28px 40px;
    text-align: center;
}

.delfin-premium-eyebrow {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto;
    padding: 9px 16px;
    border-radius: 999px;
    border: 1px solid rgba(197, 154, 87, 0.26);
    background: rgba(255, 255, 255, 0.8);
    letter-spacing: 0.24em;
    text-transform: uppercase;
    color: #6f8d80;
    font-size: 0.9rem;
}

.delfin-premium-script {
    font-family: "Cormorant Garamond", serif;
    font-style: italic;
    color: #c59a57;
    font-size: clamp(1.6rem, 2.4vw, 2.4rem);
    line-height: 1;
}

.delfin-premium-copy h1 {
    margin: 8px 0 16px;
    color: #32443d;
    font-size: clamp(3.2rem, 8vw, 6.4rem);
    line-height: 0.9;
    letter-spacing: -0.02em;
}

.delfin-premium-copy h1 .accent {
    background: linear-gradient(135deg, #b47a18 0%, #f0d9a0 42%, #b47a18 100%);
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
    font-style: italic;
}

.delfin-premium-copy .lead {
    max-width: 720px;
    margin: 0 auto;
    font-size: 1.08rem;
    color: #4d433a;
}

.delfin-premium-divider {
    width: min(280px, 70%);
    height: 1px;
    margin: 22px auto 0;
    background: linear-gradient(90deg, transparent 0%, #c59a57 15%, rgba(197, 154, 87, 0.2) 50%, #c59a57 85%, transparent 100%);
}

.delfin-premium-actions {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 14px;
    margin-top: 24px;
}

.delfin-premium-actions .btn {
    min-width: 175px;
}

.delfin-premium-pills {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 10px;
    margin-top: 24px;
}

.delfin-premium-pills span {
    padding: 8px 14px;
    border-radius: 999px;
    border: 1px solid rgba(197, 154, 87, 0.22);
    background: rgba(255, 255, 255, 0.85);
    box-shadow: 0 8px 18px rgba(44, 38, 31, 0.06);
    color: #4c4239;
    font-size: 0.93rem;
}

@media (max-width: 991.98px) {
    .delfin-premium-card::before {
        width: 100px;
        opacity: 0.5;
    }

    .delfin-premium-topbar {
        padding: 18px 22px 16px;
        min-height: 82px;
    }

    .delfin-premium-brand img {
        height: 62px;
    }

    .delfin-premium-collage {
        min-height: 760px;
        padding: 18px 16px 34px;
    }

    .delfin-premium-frame.main {
        left: 5%;
        top: 12%;
        width: 55%;
        height: 50%;
    }

    .delfin-premium-frame.circle-one {
        right: 5%;
        top: 10%;
        width: 42%;
    }

    .delfin-premium-frame.circle-two {
        right: 5%;
        top: 42%;
        width: 40%;
    }

    .delfin-premium-frame.bottom {
        left: 24%;
        bottom: 7%;
        width: 48%;
        height: 26%;
    }

    .delfin-premium-copy {
        padding: 20px 18px 34px;
    }

    .delfin-premium-copy h1 {
        font-size: clamp(2.8rem, 11vw, 5.2rem);
    }
}

@media (max-width: 575.98px) {
    .delfin-premium-topbar {
        padding: 16px 16px 14px;
    }

    .delfin-premium-icon-btn,
    .delfin-premium-badge-round {
        width: 44px;
        height: 44px;
    }

    .delfin-premium-brand img {
        height: 54px;
    }

    .delfin-premium-collage {
        min-height: 640px;
        padding: 14px 12px 28px;
    }

    .delfin-premium-pattern {
        left: 10px;
        width: 72px;
    }

    .delfin-premium-frame.main {
        left: 8%;
        top: 12%;
        width: 54%;
        height: 50%;
    }

    .delfin-premium-frame.circle-one {
        right: 6%;
        top: 10%;
        width: 41%;
    }

    .delfin-premium-frame.circle-two {
        right: 6%;
        top: 42%;
        width: 40%;
    }

    .delfin-premium-frame.bottom {
        left: 23%;
        bottom: 8%;
        width: 50%;
        height: 25%;
    }

    .delfin-premium-medallion.crown {
        left: 18%;
        bottom: 10%;
        width: 58px;
        height: 58px;
        font-size: 1.6rem;
    }

    .delfin-premium-medallion.logo {
        right: 6%;
        bottom: 37%;
        width: 72px;
        height: 72px;
        font-size: 1.9rem;
    }

    .delfin-premium-copy h1 {
        font-size: clamp(2.6rem, 18vw, 4rem);
    }

    .delfin-premium-copy .lead {
        font-size: 0.98rem;
    }

    .delfin-premium-actions .btn {
        min-width: 150px;
    }
}

/* Brand colors and logo */

.brand-logo {
    height: 56px;
    width: auto;
    display: block;
}

.brand-logo-footer {
    height: 68px;
}

/* About page sections */
.about-hero .display-4 {
    line-height: 1.1;
}

.about-image-wrap {
    position: relative;
    overflow: hidden;
    border-radius: 18px;
    border: 3px solid rgba(197, 154, 87, 0.88);
    box-shadow: 0 0 0 5px rgba(246, 227, 181, 0.28), 0 20px 40px rgba(46, 37, 29, 0.12);
    background: linear-gradient(135deg, rgba(197, 154, 87, 0.10), rgba(255, 255, 255, 0.04));
}

.about-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    transform: scale(1.01);
    filter: brightness(1.06) saturate(1.08) contrast(1.02);
}

.brand-corner {
    position: absolute;
    right: 20px;
    bottom: 20px;
    height: 70px;
    width: auto;
    background: rgba(253, 250, 246, 0.92);
    padding: 8px 12px;
    border-radius: 12px;
    border: 1px solid rgba(197, 154, 87, 0.18);
    box-shadow: 0 10px 25px rgba(46, 37, 29, 0.12);
}

.vision-wrap .vision-overlay {
    position: absolute;
    right: 18px;
    top: 18px;
    height: 90px;
    width: auto;
    background: rgba(253, 250, 246, 0.92);
    padding: 10px 12px;
    border-radius: 50%;
    border: 1px solid rgba(197, 154, 87, 0.18);
    box-shadow: 0 12px 25px rgba(46, 37, 29, 0.14);
}

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

.promise-list li {
    padding-left: 28px;
    position: relative;
    margin-bottom: 14px;
    color: #222;
}

.promise-list li::before {
    content: "\f058";
    font-family: "Font Awesome 5 Free";
    font-weight: 900;
    color: var(--bs-primary);
    position: absolute;
    left: 0;
    top: 2px;
}

.secret-card {
    background: linear-gradient(180deg, #fff 0%, #fdfaf6 100%);
    border-radius: 18px;
    padding: 40px 32px;
    border: 1px solid rgba(197, 154, 87, 0.14);
    box-shadow: 0 18px 40px rgba(46, 37, 29, 0.12);
}

@media (max-width: 991px) {
    .about-image-wrap {
        border-width: 2px;
        box-shadow: 0 0 0 4px rgba(246, 227, 181, 0.24), 0 18px 34px rgba(46, 37, 29, 0.10);
    }

    .brand-corner {
        height: 58px;
    }
    .vision-wrap .vision-overlay {
        height: 72px;
    }
    .secret-card {
        padding: 30px 22px;
    }
}

/* Product page */
.product-hero .display-4 {
    line-height: 1.1;
}

.product-hero-image {
    position: relative;
    overflow: hidden;
    border-radius: 18px;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.12);
}

.product-hero-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    filter: brightness(1.08) saturate(1.08) contrast(1.03);
}

.hero-badge {
    position: absolute;
    right: 18px;
    bottom: 18px;
    background: rgba(255, 255, 255, 0.85);
    color: #222;
    font-weight: 700;
    padding: 8px 16px;
    border-radius: 20px;
    box-shadow: 0 10px 24px rgba(0, 0, 0, 0.16);
}

.filter-row .btn {
    min-width: 110px;
}

.pill-tag {
    background: #fff;
    border: 1px solid rgba(0, 0, 0, 0.08);
    border-radius: 999px;
    padding: 6px 14px;
    font-weight: 600;
    display: inline-flex;
    align-items: center;
}

.gallery-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 14px;
}

.gallery-item {
    display: block;
    border-radius: 14px;
    overflow: hidden;
    box-shadow: 0 12px 24px rgba(0, 0, 0, 0.12);
}

.gallery-item img {
    width: 100%;
    height: 220px;
    object-fit: cover;
    display: block;
    transition: transform 0.6s ease;
    filter: brightness(1.08) saturate(1.08) contrast(1.03);
}

.gallery-item:hover img {
    transform: scale(1.05);
}

.product-card {
    background: #fff;
    border-radius: 14px;
    padding: 18px 16px;
    box-shadow: 0 12px 28px rgba(0, 0, 0, 0.08);
    height: 100%;
}

.product-card h5 {
    margin-bottom: 6px;
}

.cookie-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 12px;
}

.cookie-item {
    background: #fff;
    border-radius: 12px;
    padding: 10px 14px;
    font-weight: 600;
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.08);
}

.pure-butter {
    display: inline-block;
    margin-top: 18px;
    padding: 8px 16px;
    background: #222;
    color: #fff;
    border-radius: 999px;
    font-weight: 600;
}

.cta-card {
    background: #fff;
    border-radius: 18px;
    padding: 32px;
    box-shadow: 0 18px 36px rgba(0, 0, 0, 0.12);
}

@media (max-width: 991px) {
    .gallery-grid {
        grid-template-columns: 1fr;
    }
    .gallery-item img {
        height: 240px;
    }
    .cookie-grid {
        grid-template-columns: 1fr;
    }
}

/* ===== Delfine 2026 Menu + Product Refresh ===== */
.delfin-menu-hero,
.delfin-product-hero {
    background:
        radial-gradient(circle at 12% 20%, rgba(255, 255, 255, 0.82), transparent 42%),
        radial-gradient(circle at 88% 15%, rgba(199, 225, 214, 0.16), transparent 40%),
        radial-gradient(circle at 15% 82%, rgba(241, 196, 211, 0.16), transparent 28%),
        linear-gradient(135deg, #fdfaf6 0%, #eef6f1 100%);
}

.delfin-menu-hero-card,
.delfin-product-hero-visual {
    position: relative;
    border-radius: 24px;
    overflow: visible;
    border: 1px solid rgba(197, 154, 87, 0.18);
    box-shadow: 0 24px 44px rgba(46, 37, 29, 0.14);
}

.delfin-menu-hero-card img,
.delfin-product-hero-visual > img {
    width: 100%;
    border-radius: 24px;
    display: block;
    transform: translateZ(0);
    box-shadow: 0 16px 34px rgba(46, 37, 29, 0.08);
}

.delfin-floating-badge {
    position: absolute;
    left: 20px;
    bottom: 18px;
    background: rgba(53, 45, 36, 0.78);
    color: #fff;
    font-weight: 700;
    border-radius: 999px;
    padding: 8px 16px;
    border: 1px solid rgba(197, 154, 87, 0.24);
    box-shadow: 0 10px 20px rgba(46, 37, 29, 0.18);
}

.delfin-orbit-image {
    position: absolute;
    width: 170px;
    height: 170px;
    object-fit: cover;
    border-radius: 20px;
    border: 6px solid rgba(253, 250, 246, 0.96);
    box-shadow: 0 14px 26px rgba(46, 37, 29, 0.18);
    animation: delfinFloat 4.2s ease-in-out infinite;
}

.delfin-menu-hero-card .delfin-orbit-image {
    right: -26px;
    top: -26px;
}

.delfin-product-hero-visual .delfin-orbit-image.top {
    top: -22px;
    right: -20px;
}

.delfin-product-hero-visual .delfin-orbit-image.bottom {
    left: -20px;
    bottom: -24px;
    animation-delay: 1.4s;
}

.delfin-menu-section {
    background:
        linear-gradient(180deg, rgba(253, 250, 246, 0.96), rgba(238, 246, 241, 0.94)),
        url("../img/new_img/website/marble-bg.jpg");
    background-size: cover;
    background-position: center;
}

.delfin-category-card {
    height: 100%;
    border-radius: 22px;
    padding: 26px 22px;
    background: linear-gradient(180deg, rgba(255, 255, 255, 0.95), rgba(238, 246, 241, 0.92));
    border: 1px solid rgba(197, 154, 87, 0.16);
    box-shadow: 0 16px 30px rgba(46, 37, 29, 0.08);
    transition: transform 0.35s ease, box-shadow 0.35s ease;
}

.delfin-category-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 22px 38px rgba(46, 37, 29, 0.12);
}

.delfin-category-card h3 {
    font-size: 1.45rem;
    margin-bottom: 14px;
}

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

.delfin-menu-list li {
    position: relative;
    padding-left: 18px;
    margin-bottom: 9px;
    color: #252525;
}

.delfin-menu-list li::before {
    content: "";
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: var(--delfine-gold);
    position: absolute;
    left: 0;
    top: 9px;
}

.delfin-menu-shot {
    display: block;
    border-radius: 18px;
    overflow: hidden;
    border: 1px solid rgba(197, 154, 87, 0.16);
    box-shadow: 0 16px 34px rgba(46, 37, 29, 0.12);
}

.delfin-menu-shot img {
    width: 100%;
    height: 280px;
    object-fit: cover;
    transition: transform 0.55s ease;
}

.delfin-menu-shot:hover img {
    transform: scale(1.06);
}

.delfin-product-grid-wrap {
    background:
        radial-gradient(circle at 8% 15%, rgba(199, 225, 214, 0.14), transparent 30%),
        radial-gradient(circle at 90% 80%, rgba(241, 196, 211, 0.18), transparent 36%),
        linear-gradient(135deg, #fdfaf6 0%, #eef6f1 100%);
}

.delfin-product-grid {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 16px;
}

.delfin-product-tile {
    position: relative;
    display: block;
    border-radius: 18px;
    overflow: hidden;
    border: 1px solid rgba(197, 154, 87, 0.16);
    box-shadow: 0 14px 28px rgba(46, 37, 29, 0.11);
}

.delfin-product-tile img {
    width: 100%;
    height: 220px;
    object-fit: cover;
    display: block;
    transition: transform 0.5s ease;
    filter: brightness(1.06) saturate(1.08) contrast(1.03);
}

.delfin-product-tile:hover img {
    transform: scale(1.08);
}

.delfin-product-tile span {
    position: absolute;
    left: 12px;
    bottom: 12px;
    background: linear-gradient(135deg, rgba(61, 75, 49, 0.88), rgba(197, 154, 87, 0.84));
    color: #fff;
    border-radius: 999px;
    padding: 6px 12px;
    font-weight: 600;
    font-size: 0.9rem;
    border: 1px solid rgba(255, 255, 255, 0.18);
}

.delfin-line-card {
    height: 100%;
    border-radius: 18px;
    background: linear-gradient(180deg, #fff 0%, #fdfaf6 100%);
    padding: 22px 18px;
    box-shadow: 0 14px 28px rgba(46, 37, 29, 0.08);
    border: 1px solid rgba(197, 154, 87, 0.14);
    border-left: 4px solid var(--delfine-gold);
}

.delfin-line-card h3 {
    font-size: 1.28rem;
    margin-bottom: 14px;
}

.delfin-chip-wrap {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
}

.delfin-chip {
    background: rgba(199, 225, 214, 0.16);
    border: 1px solid rgba(199, 225, 214, 0.28);
    border-radius: 999px;
    padding: 6px 12px;
    font-size: 0.9rem;
    font-weight: 600;
    color: #4f655c;
}

.delfin-custom-card {
    border-radius: 16px;
    overflow: hidden;
    border: 1px solid rgba(197, 154, 87, 0.16);
    box-shadow: 0 14px 28px rgba(46, 37, 29, 0.11);
}

.delfin-custom-card a {
    display: block;
}

.delfin-custom-card img {
    width: 100%;
    height: 260px;
    object-fit: cover;
    transition: transform 0.5s ease;
    filter: brightness(1.06) saturate(1.08) contrast(1.03);
}

.delfin-custom-card:hover img {
    transform: scale(1.08);
}

/* Branch showcase */
.delfin-branches-wrap {
    background:
        radial-gradient(circle at 10% 10%, rgba(199, 225, 214, 0.14), transparent 35%),
        radial-gradient(circle at 90% 80%, rgba(241, 196, 211, 0.18), transparent 36%),
        linear-gradient(135deg, #fdfaf6 0%, #eef6f1 100%);
}

.delfin-branch-card {
    background: linear-gradient(180deg, #fff 0%, #fdfaf6 100%);
    border-radius: 22px;
    border: 1px solid rgba(197, 154, 87, 0.16);
    box-shadow: 0 18px 36px rgba(46, 37, 29, 0.12);
    padding: 24px;
    height: 100%;
}

.delfin-branch-top {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 12px;
    margin-bottom: 14px;
}

.delfin-branch-actions {
    display: flex;
    flex-wrap: wrap;
    justify-content: flex-end;
    gap: 10px;
}

.delfin-wa-btn {
    color: #1f9f52 !important;
    border-color: rgba(31, 159, 82, 0.35) !important;
    background: rgba(37, 211, 102, 0.08);
}

.delfin-wa-btn:hover {
    background: #25d366 !important;
    color: #ffffff !important;
    border-color: #25d366 !important;
}

.delfin-branch-top h3 {
    margin: 0;
    font-size: 1.6rem;
}

.delfin-branch-meta {
    list-style: none;
    margin: 0 0 18px;
    padding: 0;
}

.delfin-branch-meta li {
    display: flex;
    align-items: flex-start;
    gap: 10px;
    margin-bottom: 10px;
    color: #3f372f;
    line-height: 1.55;
}

.delfin-branch-meta li i {
    margin-top: 5px;
}

.delfin-branch-shot {
    display: block;
    border-radius: 14px;
    overflow: hidden;
    border: 1px solid rgba(197, 154, 87, 0.14);
    box-shadow: 0 10px 22px rgba(46, 37, 29, 0.11);
}

.delfin-branch-shot img {
    width: 100%;
    height: 170px;
    object-fit: cover;
    transition: transform 0.45s ease;
    display: block;
    filter: brightness(1.06) saturate(1.08) contrast(1.03);
}

.delfin-branch-shot:hover img {
    transform: scale(1.08);
}

/* Branch visual banners */
.delfin-branch-signature,
.delfin-branch-story {
    background:
        radial-gradient(circle at 8% 14%, rgba(199, 225, 214, 0.16), transparent 34%),
        radial-gradient(circle at 92% 86%, rgba(241, 196, 211, 0.18), transparent 36%),
        linear-gradient(135deg, #fdfaf6 0%, #eef6f1 100%);
}

.delfin-branch-banner {
    position: relative;
    display: block;
    height: 100%;
    min-height: 340px;
    border-radius: 22px;
    overflow: hidden;
    border: 1px solid rgba(197, 154, 87, 0.16);
    box-shadow: 0 18px 36px rgba(46, 37, 29, 0.14);
}

.delfin-branch-banner img {
    width: 100%;
    height: 100%;
    min-height: 340px;
    object-fit: cover;
    display: block;
    transition: transform 0.55s ease;
    filter: brightness(1.06) saturate(1.08) contrast(1.03);
}

.delfin-branch-banner:hover img {
    transform: scale(1.06);
}

.delfin-branch-banner::after {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(0deg, rgba(35, 44, 28, 0.62) 0%, rgba(35, 44, 28, 0.08) 62%);
}

.delfin-branch-banner-overlay {
    position: absolute;
    left: 20px;
    right: 20px;
    bottom: 18px;
    z-index: 2;
    color: #fff;
}

.delfin-branch-banner-overlay h3 {
    margin-bottom: 6px;
    color: #fff !important;
    font-size: 1.8rem;
}

.delfin-branch-banner-overlay p {
    margin-bottom: 0;
    color: rgba(255, 255, 255, 0.9);
    font-weight: 500;
}

.delfin-branch-brand {
    display: inline-block;
    margin-bottom: 8px;
    background: rgba(53, 45, 36, 0.78);
    color: #fff;
    border-radius: 999px;
    padding: 6px 14px;
    font-size: 0.8rem;
    font-weight: 700;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    border: 1px solid rgba(197, 154, 87, 0.35);
    box-shadow: 0 10px 18px rgba(46, 37, 29, 0.16);
}

.delfin-branch-banner-large,
.delfin-branch-banner-large img {
    min-height: 420px;
}

/* Instagram showcase */
.delfin-insta-showcase {
    background:
        radial-gradient(circle at 8% 12%, rgba(199, 225, 214, 0.14), transparent 35%),
        radial-gradient(circle at 92% 82%, rgba(241, 196, 211, 0.20), transparent 36%),
        linear-gradient(135deg, #fdfaf6 0%, #eef6f1 100%);
}

.delfin-insta-grid {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 14px;
}

.delfin-insta-card {
    position: relative;
    display: block;
    border-radius: 16px;
    overflow: hidden;
    border: 1px solid rgba(197, 154, 87, 0.14);
    box-shadow: 0 14px 30px rgba(46, 37, 29, 0.12);
}

.delfin-insta-card img {
    width: 100%;
    height: 160px;
    object-fit: cover;
    transition: transform 0.45s ease;
    display: block;
    filter: brightness(1.06) saturate(1.08) contrast(1.03);
}

.delfin-insta-card span {
    position: absolute;
    right: 10px;
    bottom: 10px;
    background: linear-gradient(135deg, rgba(61, 75, 49, 0.88), rgba(197, 154, 87, 0.84));
    color: #fff;
    font-size: 0.78rem;
    font-weight: 700;
    border-radius: 999px;
    padding: 5px 10px;
    letter-spacing: 0.02em;
}

.delfin-insta-card:hover img {
    transform: scale(1.08);
}

.delfin-insta-mini-item {
    display: block;
    border-radius: 999px;
    overflow: hidden;
    transition: transform 0.28s ease;
}

.delfin-insta-mini-item img {
    transition: transform 0.35s ease;
}

.delfin-insta-mini-item:hover {
    transform: translateY(-3px);
}

.delfin-insta-mini-item:hover img {
    transform: scale(1.08);
}

/* Service page refresh */
.delfin-service-hero {
    background:
        radial-gradient(circle at 16% 18%, rgba(255, 255, 255, 0.80), transparent 40%),
        radial-gradient(circle at 82% 16%, rgba(199, 225, 214, 0.18), transparent 38%),
        radial-gradient(circle at 15% 82%, rgba(241, 196, 211, 0.16), transparent 30%),
        linear-gradient(135deg, #fdfaf6 0%, #eef6f1 100%);
}

.delfin-service-hero-visual {
    position: relative;
    border-radius: 24px;
    overflow: visible;
    box-shadow: 0 24px 44px rgba(46, 37, 29, 0.14);
}

.delfin-service-hero-visual > img {
    width: 100%;
    border-radius: 24px;
    display: block;
}

.delfin-service-float {
    position: absolute;
    width: 150px;
    height: 150px;
    object-fit: cover;
    border-radius: 20px;
    border: 6px solid rgba(253, 250, 246, 0.96);
    box-shadow: 0 14px 26px rgba(46, 37, 29, 0.18);
    animation: delfinFloat 4.8s ease-in-out infinite;
}

.delfin-service-float.top {
    top: -22px;
    right: -18px;
}

.delfin-service-float.bottom {
    left: -16px;
    bottom: -22px;
    animation-delay: 1.3s;
}

.delfin-service-points {
    list-style: none;
    margin: 0;
    padding: 0;
}

.delfin-service-points li {
    position: relative;
    padding-left: 28px;
    margin-bottom: 12px;
    color: #3f372f;
}

.delfin-service-points li::before {
    content: "\f058";
    font-family: "Font Awesome 5 Free";
    font-weight: 900;
    color: var(--bs-primary);
    position: absolute;
    left: 0;
    top: 1px;
}

.delfin-service-stats {
    background:
        radial-gradient(circle at 7% 76%, rgba(199, 225, 214, 0.16), transparent 33%),
        radial-gradient(circle at 92% 18%, rgba(241, 196, 211, 0.20), transparent 36%),
        linear-gradient(135deg, #fdfaf6 0%, #eef6f1 100%);
}

.delfin-stat-card {
    background: linear-gradient(180deg, #fff 0%, #fdfaf6 100%);
    border: 1px solid rgba(197, 154, 87, 0.14);
    border-radius: 18px;
    padding: 24px 14px;
    box-shadow: 0 14px 28px rgba(46, 37, 29, 0.1);
}

.delfin-stat-card h2 {
    font-size: 2.1rem;
    color: var(--bs-primary);
}

.delfin-service-lines {
    background:
        radial-gradient(circle at 89% 10%, rgba(199, 225, 214, 0.14), transparent 33%),
        radial-gradient(circle at 10% 86%, rgba(241, 196, 211, 0.18), transparent 38%),
        linear-gradient(135deg, #fdfaf6 0%, #eef6f1 100%);
}

.delfin-service-card {
    height: 100%;
    border-radius: 20px;
    overflow: hidden;
    background: linear-gradient(180deg, #fff 0%, #fdfaf6 100%);
    border: 1px solid rgba(197, 154, 87, 0.16);
    box-shadow: 0 18px 34px rgba(46, 37, 29, 0.12);
    transition: transform 0.35s ease, box-shadow 0.35s ease;
}

.delfin-service-card:hover {
    transform: translateY(-7px);
    box-shadow: 0 24px 42px rgba(46, 37, 29, 0.16);
}

.delfin-service-card img {
    width: 100%;
    height: 230px;
    object-fit: cover;
}

.delfin-service-card-body {
    padding: 20px 18px 22px;
}

.delfin-service-card-body h4 {
    margin-bottom: 12px;
    font-size: 1.35rem;
}

.delfin-service-card-body p {
    margin-bottom: 18px;
}

.delfin-category-strip {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    justify-content: center;
}

.delfin-category-pill {
    display: inline-block;
    background: rgba(241, 196, 211, 0.18);
    border: 1px solid rgba(197, 154, 87, 0.16);
    border-radius: 999px;
    padding: 8px 14px;
    font-size: 0.9rem;
    font-weight: 700;
    color: #40362f;
}

.delfin-process-wrap {
    background:
        linear-gradient(180deg, rgba(253, 250, 246, 0.96), rgba(238, 246, 241, 0.94)),
        url("../img/new_img/website/marble-bg.jpg");
    background-size: cover;
    background-position: center;
}

.delfin-process-card {
    height: 100%;
    border-radius: 18px;
    background: rgba(255, 255, 255, 0.94);
    border: 1px solid rgba(197, 154, 87, 0.14);
    box-shadow: 0 14px 30px rgba(46, 37, 29, 0.1);
    padding: 24px 18px;
}

.delfin-process-card span {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 42px;
    height: 42px;
    border-radius: 50%;
    background: var(--bs-primary);
    color: #fff;
    font-weight: 700;
    margin-bottom: 12px;
}

.delfin-process-card h4 {
    font-size: 1.25rem;
    margin-bottom: 12px;
}

.delfin-branch-social-card {
    height: 100%;
    border-radius: 20px;
    background: linear-gradient(180deg, #fff 0%, #fdfaf6 100%);
    border: 1px solid rgba(197, 154, 87, 0.16);
    box-shadow: 0 16px 30px rgba(46, 37, 29, 0.11);
    padding: 24px;
}

.delfin-trust-quote {
    height: 100%;
    border-radius: 18px;
    background: linear-gradient(180deg, #fff 0%, #fdfaf6 100%);
    border: 1px solid rgba(197, 154, 87, 0.14);
    box-shadow: 0 12px 26px rgba(46, 37, 29, 0.1);
    padding: 22px 20px;
}

.copyright.bg-dark {
    background: linear-gradient(135deg, #2f392b 0%, #46533b 100%) !important;
    border-top: 1px solid rgba(197, 154, 87, 0.18);
}

.copyright.bg-dark a {
    color: #fdfaf6;
}

.copyright.bg-dark a:hover {
    color: #e4c78d !important;
}

@keyframes delfinFloat {
    0%,
    100% {
        transform: translateY(0);
    }
    50% {
        transform: translateY(-10px);
    }
}

@media (max-width: 1199px) {
    .delfin-product-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }
}

@media (max-width: 991px) {
    #product-gallery .event-img img {
        height: 240px;
    }
    .delfin-branch-banner,
    .delfin-branch-banner img {
        min-height: 300px;
    }
    .delfin-branch-banner-large,
    .delfin-branch-banner-large img {
        min-height: 360px;
    }
    .my-6 {
        margin-top: 4.5rem;
        margin-bottom: 4.5rem;
    }
    .py-6 {
        padding-top: 4.5rem;
        padding-bottom: 4.5rem;
    }
    .delfin-orbit-image {
        width: 120px;
        height: 120px;
    }
    .delfin-service-float {
        width: 110px;
        height: 110px;
    }
    .delfin-service-float.top {
        right: -8px;
        top: -8px;
    }
    .delfin-service-float.bottom {
        left: -8px;
        bottom: -8px;
    }
    .delfin-insta-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }
    .delfin-menu-hero-card .delfin-orbit-image,
    .delfin-product-hero-visual .delfin-orbit-image.top {
        right: -10px;
        top: -10px;
    }
    .delfin-product-hero-visual .delfin-orbit-image.bottom {
        left: -10px;
        bottom: -10px;
    }
}

@media (max-width: 767px) {
    #product-gallery .event-img img {
        height: 220px;
    }
    .delfin-branch-banner,
    .delfin-branch-banner img {
        min-height: 260px;
    }
    .delfin-branch-banner-large,
    .delfin-branch-banner-large img {
        min-height: 300px;
    }
    .delfin-branch-banner-overlay h3 {
        font-size: 1.45rem;
    }
    .my-6 {
        margin-top: 3.5rem;
        margin-bottom: 3.5rem;
    }
    .py-6 {
        padding-top: 3.5rem;
        padding-bottom: 3.5rem;
    }
    .display-1 {
        font-size: 2.8rem;
    }
    .display-4 {
        font-size: 2.25rem;
    }
    .display-5 {
        font-size: 2rem;
    }
    .display-6 {
        font-size: 1.6rem;
    }
    .back-to-top {
        right: 18px;
        bottom: 18px;
    }
    .whatsapp-float {
        right: 18px;
        bottom: 84px;
        width: 52px;
        height: 52px;
    }
    .whatsapp-float i {
        font-size: 1.75rem;
    }
    .delfin-product-grid {
        grid-template-columns: 1fr;
    }
    .delfin-service-card img {
        height: 200px;
    }
    .delfin-stat-card h2 {
        font-size: 1.8rem;
    }
    .delfin-branch-top {
        flex-direction: column;
        align-items: flex-start;
    }
    .delfin-branch-actions {
        justify-content: flex-start;
    }
    .delfin-insta-card img {
        height: 170px;
    }
    .delfin-branch-shot img {
        height: 150px;
    }
    .delfin-menu-shot img,
    .delfin-product-tile img,
    .delfin-custom-card img {
        height: 230px;
    }
}
