/*** START COMMONN STYLES ***/

a, a:hover 
{
	text-decoration: none !important;
}

ul 
{
    display: block;
    list-style: none;
    padding: 0;
    margin: 0;
}

h2, h3, h4, h5, h6 
{
    font-family: 'Prata', sans-serif;
}

.padding-10 
{
    padding: 10px;
}


/*** END COMMON STYLES ***/



/*** START BOOTSTRAP STYLES ***/

#home-section-carousel .carousel-caption
{
    bottom: 250px;
}

#home-section-carousel .carousel-indicators
{
    bottom: 150px;
}
html
{
	scroll-behavior: smooth;
}
body
{
	font-size: 16px;
	background-color: white;
	font-family: 'Roboto', sans-serif;
}
.navbar 
{
    border: medium none;
    -moz-border-radius: 0;
    -webkit-border-radius: 0;
    -ms-border-radius: 0;
    border-radius: 0;
    margin: 0;
    position: relative;
    padding: 0 !important;
}

.header-section
{
    transition: all .3s ease-in-out;
}
.header-section
{
	background-color:rgba(20,20,23,0.92);
	-webkit-backdrop-filter: blur(10px);
	backdrop-filter: blur(10px);
	width:100%;
	height:80px;
	z-index:999;
	position:fixed;
	left:0;
	top:0;
	padding:0;
	display:flex;
	align-items:center;
	box-shadow: 0 1px 0 rgba(255,255,255,0.06), 0 12px 30px rgba(0,0,0,0.18);
}


.menu-wrap
{
    position: relative;
}

ul.nav>li
{
    position: relative;
}
ul.nav>li>a
{
    position: relative;
    color: #ddd;
    font-family: work sans,sans-serif;
    display: inline-block;
    vertical-align: middle;
    padding: 0 20px;
    letter-spacing: 0.02em;
    font-size: 12px;
    font-weight: 600;
    text-transform: uppercase;
    line-height: 80px;
    z-index: 1;
    transition: color 0.25s ease;
}

ul.nav>li>a::after {
    content: '';
    position: absolute;
    left: 20px;
    right: 20px;
    bottom: 26px;
    height: 2px;
    background: var(--primary-color);
    transform: scaleX(0);
    transform-origin: center;
    transition: transform 0.25s ease;
}

ul.nav>li>a:hover
{
    color: #fff;
}

ul.nav>li>a:hover::after
{
    transform: scaleX(1);
}

.header-btn {
    padding-left: 24px;
    border-left: 1px solid rgba(255,255,255,0.12);
}

.header-btn .menu-btn {
    background-image: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
    font-family: 'Work Sans', sans-serif;
    font-size: 13px;
    font-weight: 600;
    letter-spacing: 0.03em;
    text-transform: uppercase;
    color: #fff;
    padding: 0 32px;
    height: 48px;
    line-height: 48px;
    display: inline-block;
    border-radius: 100px;
    text-align: center;
    transition: transform 0.25s ease, box-shadow 0.25s ease, opacity 0.25s ease;
    box-shadow: 0 10px 24px -8px var(--primary-color);
}

.header-btn .menu-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 14px 28px -8px var(--primary-color);
    opacity: .92;
}
.about_content h2
{
    font-size: 38px;
    line-height: 1.25;
    font-weight: 400;
    color: #232323;
    margin-bottom: 24px;
    position: relative;
}

.about_content h2::after {
    content: '';
    display: block;
    width: 56px;
    height: 3px;
    margin: 20px auto 0;
    background-image: linear-gradient(90deg, var(--primary-color), var(--secondary-color));
    border-radius: 3px;
}

.about_section h3
{
    font-size: 17px;
}

.about_section
{
    padding: 90px 0;
    background: #fff;
}

.about_content img
{
    border-radius: 50%;
    padding: 10px;
    border: 1px solid #eee;
    box-shadow: 0 20px 40px -18px rgba(0,0,0,0.25);
}

.about_section .about_img img
{
    width: 60%;
    border-radius: 14px;
    box-shadow: 0 24px 48px -12px rgba(0,0,0,.25);
    transition: transform 0.35s cubic-bezier(0.4, 0, 0.2, 1);
}

.about_section .about_img img:hover
{
    transform: translateY(-6px);
}

.about_section .about_img_3
{
    margin: -260px 0 0 40px;
}
.about_section .about_img_2
{
    margin: -180px 0 0 270px;
}

/*** END ABOUT SECTION STYLE ***/

/*** START SERVICES SECTION STYLE ***/

.services_section
{
    padding: 90px 0px;
    background-color: #faf9f7;
}

.service_box
{
    background-color: #fff;
    padding: 44px 28px;
    text-align: center;
    cursor: pointer;
    border-radius: 16px;
    border: 1px solid #efefef;
    box-shadow: 0 20px 45px -20px rgba(20,20,20,0.18);
    transition: transform 0.3s cubic-bezier(0.4, 0, 0.2, 1), box-shadow 0.3s ease, border-color 0.3s ease;
}

.service_box:hover
{
    transform: translateY(-8px);
    box-shadow: 0 28px 55px -18px rgba(20,20,20,0.24);
    border-color: rgba(0,0,0,0.04);
}

.service_box i
{
    font-size: 32px;
    margin-bottom: 22px;
    width: 76px;
    height: 76px;
    line-height: 76px;
    border-radius: 50%;
    color: var(--primary-color);
    background: rgba(0,0,0,0.04);
    background: color-mix(in srgb, var(--primary-color) 12%, white);
    display: inline-block;
    transition: transform 0.3s ease;
}

.service_box:hover i
{
    transform: scale(1.08) rotate(-4deg);
}

.service_box h3
{
    font-size: 19px;
    margin-bottom: 12px;
}

.service_box p
{
    color: #7a7a7a;
    font-size: 14.5px;
    line-height: 1.7;
    margin-bottom: 0;
}
.book_section
{
    background-color: #222227;
    position: relative;
    padding:30px 0px;
}

.appointment_form 
{
    padding: 40px;
}
.appointment_form .book_content 
{
    margin-bottom: 30px;
}

.appointment_form .form-control 
{
    background-color: transparent;
    height: 55px;
    border: 3px solid rgba(255,255,255,0.3);
    line-height: 52px;
    color: #fff;
    border-radius: 0;
}
.appointment_form .form-control:focus 
{
    border: 3px solid rgba(255,255,255,0.5);
    box-shadow: none;
    outline: none;
}
.nice-select.form-control 
{
    width: 100%;
    line-height: 52px;
    padding: 0 15px;
}
.appointment_form .form-control 
{
    background-color: transparent;
    border: 3px solid rgba(255,255,255,0.3);
    line-height: 52px;
    color: #fff;
    border-radius: 0;
}
.appointment_form .default_btn 
{
    margin-top: 15px;
}
.default_btn
{
    font-family: "Work Sans",sans-serif;
    letter-spacing: 0.02em;
    background-image: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
    color: #fff;
    line-height: 45px;
    display: inline-block;
    padding: 0 28px;
    border-radius: 100px;
    font-size: 12px;
    text-transform: uppercase;
    font-weight: 600;
    position: relative;
    border: none;
    overflow: hidden;
    z-index: 1;
    box-shadow: 0 12px 26px -10px var(--primary-color);
    -webkit-transition: color 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    -moz-transition: color 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    -ms-transition: color 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    -o-transition: color 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    transition: color 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}
.default_btn:hover 
{
    color: #fff;
}
.default_btn:hover:before 
{
    -webkit-transform-origin: left center;
    -moz-transform-origin: left center;
    -ms-transform-origin: left center;
    transform-origin: left center;
    -webkit-transform: scale(1, 1);
    -moz-transform: scale(1, 1);
    -ms-transform: scale(1, 1);
    -o-transform: scale(1, 1);
    transform: scale(1, 1);
}

.default_btn:before 
{
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    bottom: 0;
    right: 0;
    background: #222227;
    -webkit-transform-origin: right center;
    -moz-transform-origin: right center;
    -ms-transform-origin: right center;
    transform-origin: right center;
    -webkit-transform: scale(0, 1);
    -moz-transform: scale(0, 1);
    -ms-transform: scale(0, 1);
    -o-transform: scale(0, 1);
    transform: scale(0, 1);
    -webkit-transition: -webkit-transform 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    -moz-transition: -moz-transform 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    -ms-transition: -ms-transform 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    -o-transition: -o-transform 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    transition: transform 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    z-index: -1;
}


/*** END BOOKING SECTION STYLE ***/


/*** START GALLERY SECTION STYLE ***/

.gallery-section
{
    background-color: #ffffff;
    padding: 90px 0 96px;
}

.gallery-section .gallery-img
{
    background-size: cover;
    height: 100%;
    width: 100%;
    background-position: 50%;
    background-repeat: no-repeat;
    transition: transform 0.5s cubic-bezier(0.4, 0, 0.2, 1);
}

.gallery-section .gallery-column
{
    padding: 6px !important;
    margin-bottom: 0;
    cursor: pointer;
}

.gallery-section .gallery-column > div
{
    position: relative;
    height: 100%;
    border-radius: 14px;
    overflow: hidden;
    box-shadow: 0 18px 36px -20px rgba(0,0,0,0.3);
}

.gallery-section .gallery-column > div::after
{
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg, transparent 55%, rgba(0,0,0,0.55) 100%);
    opacity: 0;
    transition: opacity 0.35s ease;
}

.gallery-section .gallery-column:hover .gallery-img
{
    transform: scale(1.1);
}

.gallery-section .gallery-column:hover > div::after
{
    opacity: 1;
}
.section_heading
{
    text-align: center;
    margin-bottom: 50px;
}

.section_heading h3
{
    color: var(--primary-color);
    font-weight: 600;
    font-family: 'Work Sans', sans-serif;
    font-size: 12px;
    letter-spacing: 0.25em;
    text-transform: uppercase;
    margin-bottom: 10px;
}

.section_heading h2
{
    font-size: 36px;
    line-height: 48px;
    font-weight: 400;
    letter-spacing: 0;
    color: #232323;
}

.heading-line
{
    width: 56px;
    height: 3px;
    margin: 20px auto 0;
    border-radius: 3px;
    background-image: linear-gradient(90deg, var(--primary-color), var(--secondary-color));
}

/*** END SECTION HEADING STYLE ***/


/*** START TEAM SECTION STYLE ***/

.team_section
{
    padding: 90px 0px 96px;
    background-color: #ffffff;
}

.team_section .team_members .team_member
{
    position: relative;
    overflow: hidden;
    border-radius: 16px;
    box-shadow: 0 20px 40px -20px rgba(0,0,0,0.3);
}

.team_section .team_members .team_member img
{
    width: 100%;
    display: block;
    transition: transform 0.45s cubic-bezier(0.4, 0, 0.2, 1);
}

.team_section .team_members .team_member:hover img
{
    transform: scale(1.08);
}

.team_section .team_members .team_member::after
{
    content: '';
    position: absolute;
    inset: 0;
    box-shadow: inset 0 -60px 50px -35px rgba(0,0,0,0.45);
    pointer-events: none;
}

.pricing_section
{
    background-color: #faf9f7;
    padding: 90px 0 96px;
}
.pricing_section .price_wrap
{
    background: #fff;
    border-radius: 16px;
    padding: 36px 32px;
    height: 100%;
    box-shadow: 0 20px 45px -24px rgba(0,0,0,0.22);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.pricing_section .price_wrap:hover
{
    transform: translateY(-6px);
    box-shadow: 0 26px 55px -20px rgba(0,0,0,0.28);
}

.pricing_section .price_wrap h3
{
    background-image: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
    border-radius: 100px;
    display: inline-block;
    padding: 9px 22px;
    color: #fff;
    margin: 0 0 26px;
    font-size: 14px;
    font-weight: 600;
    letter-spacing: 0.02em;
}
.pricing_section .price_wrap .price_list li
{
    margin-bottom: 28px;
    padding-bottom: 28px;
    border-bottom: 1px dashed #e8e6e2;
    position: relative;
}

.pricing_section .price_wrap .price_list li:last-child
{
    margin-bottom: 0;
    padding-bottom: 0;
    border-bottom: none;
}

.pricing_section .price_wrap .price_list li h4
{
    position: relative;
    color: #262626;
    font-size: 17px;
    font-weight: 600;
    letter-spacing: 0.2px;
    margin: 0 0 6px;
    padding-right: 90px;
}

.pricing_section .price_wrap .price_list li p
{
    margin: 0;
    color: #858585;
    font-size: 13.5px;
    padding-right: 90px;
}

.pricing_section .price_wrap .price_list li span.price
{
    font-family: "Prata",sans-serif;
    font-size: 21px;
    color: var(--primary-color);
    font-weight: 700;
    position: absolute;
    top: 0;
    right: 0;
}

/*** END PRICING SECTION STYLE ***/


/*** START WIDGET SECTION - FOOTER STYLE ***/

.widget_section
{
    background-color: #222227;
    padding: 100px 0;
}

.widget_social 
{
    display: block;
    text-align: left;
}
.widget_social li 
{
    display: inline-block;
}
.widget_social li a 
{
    color: #777;
    font-size: 12px;
    margin-right: 20px;
}
.footer_widget p 
{
    color: #999;
}
.footer_widget h3 
{
    color: #fff;
}
.subscribe_form 
{
    display: block;
    text-align: center;
    padding: 5px 0;
}
.subscribe_form .form_input 
{
    display: block;
    color: #fff;
    border: none;
    font-size: 14px;
    line-height: 50px;
    padding: 0 10px;
    float: left;
    width: 100%;
    margin-bottom: 10px;
    transition: all 0.5s ease-in-out;
}
.opening_time li 
{
    color: #999;
    line-height: 35px;
}
.subscribe_form .submit 
{
    background-color: var(--primary-color);
    color: #fff;
    font-family: "Work Sans", sans-serif;
    font-size: 12px;
    font-weight: 600;
    line-height: 50px;
    display: inline-block;
    padding: 0 10px;
    width: 100%;
    cursor: pointer;
    border: none;
    transition: all 0.5s ease-in-out;
}

.subscribe_form .submit:hover 
{
    background-color: #897666;
    transition: all 0.5s ease-in-out;
}


/*** END WIDGET SECTION - FOOTER STYLE ***/

/*** START CONTACT US SECTION STYLE ***/

.contact-section {
    padding: 90px 0 100px;
    background-color: #faf9f7;
}

.contact-info
{
    background: #ffffff;
    border-radius: 20px;
    padding: 48px 44px;
    border: 1px solid #f0efec;
    box-shadow: 0 20px 45px -28px rgba(0,0,0,0.2);
}

.contact-info h2
{
	font-size: 32px;
	color: #232323;
	margin: 0 0 12px;
	font-weight: 400;
	line-height: 1.3;
	letter-spacing: -0.02em;
	font-family: 'Prata', sans-serif;
}

.contact-info > p
{
    color: #7a7a7a;
    margin-bottom: 24px;
}

.contact-info h3
{
    line-height: 1.6;
    margin-bottom: 20px;
    font-size: 16px;
    font-weight: 600;
    color: var(--primary-color);
}

.contact-info h4
{
    font-size: 15px;
    line-height: 1.8;
    font-weight: 400;
}

.icon-social
{
    color: var(--primary-color);
    border-color: rgba(0,0,0,0.08) !important;
    background: #fff;
    transition: all 0.25s ease;
}

.icon-social:hover
{
    background-image: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
    border-color: transparent !important;
    color: #fff !important;
    transform: translateY(-3px);
    box-shadow: 0 10px 20px -8px var(--primary-color);
}

.form-control
{
    background-color: #fff;
    border-radius: 10px;
    padding: 25px 16px;
    box-shadow: none;
    border: 2px solid #eee;
    transition: border-color 0.2s ease;
}

.form-control:focus
{
    border-color: var(--primary-color);
    box-shadow: none;
    outline: none;
}



/*** END CONTACT US SECTION STYLE ***/

/*** START FOOTER BOTTOM STYLE ***/


.footer_section 
{
    display: block;
    background-color: #222227;
    border-top: 1px solid #333;
    padding: 30px 0;
}

.footer_section .copyright 
{
    font-size: 14px;
    color: #ddd;
}

.footer_social 
{
    display: block;
    text-align: right;
}

.footer_social li 
{
    display: inline-block;
}
.footer_social li a
{
    font-family: "Work Sans",sans-serif;
    color: #ddd;
    font-size: 12px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.03em;
    margin-left: 20px;
    transition: color 0.2s ease;
}

.footer_social li a:hover
{
    color: var(--primary-color);
}

/*** END FOOTER BOTTOM STYLE ***/



/*** START MOBILE NAVBAR STYLE ***/


a.mob-menu-toggle
{
    display: none;
    align-items: center;
    justify-content: center;
    width: 44px;
    height: 44px;
    flex-shrink: 0;
    font-size: 17px;
    color: #ffffff !important;
    margin: 0 0 0 10px;
    z-index: 10000;
    text-decoration: none !important;
    box-shadow: 0 8px 18px -6px var(--primary-color);
    border-radius: 50%;
    background-image: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
    transition: transform 0.2s ease, box-shadow 0.2s ease;
}

a.mob-menu-toggle:hover
{
    box-shadow: 0 10px 22px -6px var(--primary-color);
}

a.mob-menu-toggle:active
{
    transform: scale(0.92);
}


#menu_mobile.active 
{
    -webkit-transform: translate(100%, 0);
    transform: translate(100%, 0);
}

#menu_mobile
{
    position: fixed;
    z-index: 25000;
    top: 0;
    bottom: 0;
    width: min(320px, 86vw);
    left: -320px;
    height: 100%;
    -webkit-transform: translate(0, 0);
    transform: translate(0, 0);
    -webkit-transition: 0.5s cubic-bezier(0.4, 0, 0.2, 1);
    transition: 0.5s cubic-bezier(0.4, 0, 0.2, 1);
    background: #1a1a1d !important;
    box-shadow: 24px 0 60px rgba(0,0,0,0.35);
    overflow: hidden;
    padding-top: 20px;
    padding-bottom: 80px;
}

.mob-menu-top
{
    list-style-type: disc;
    list-style: outside none disc;
    margin-left: 15px;
    margin: 1em 0;
    list-style: none;
}

.mob-menu-top::before
{
    content: "";
    display: table;
}

#menu_mobile ul.mob-menu-top li a
{
    display: block;
    font-size: 13px;
    height: 50px;
    line-height: 50px;
    padding: 0px !important;
    text-align: center;
    background: rgba(255, 255, 255, 0.06);
    border-radius: 10px;
    color: #ffffff !important;
    transition: background 0.2s ease;
}

#menu_mobile ul.mob-menu-top li a.mob-close-toggle
{
    display: flex;
    align-items: center;
    justify-content: center;
    width: 44px;
    height: 44px;
    font-size: 18px;
    flex-shrink: 0;
}

#menu_mobile ul.mob-menu-top li a.mob-close-toggle:hover
{
    background: rgba(255, 255, 255, 0.14);
}

#menu_mobile ul.mob-menu-top li a:hover
{
    background: rgba(255, 255, 255, 0.12);
}

.menu-tab-div
{
    margin: 0px 0px 0px 21px;
    padding-right: 38px;
    padding-left: 0px;
    padding-bottom: 150px;
    height: 100%;
    overflow-y: scroll;
    overflow-x: hidden;
    width: 100%;
    list-style: none;
}

#mobile-menu
{
   margin: 0 0 0 3px;
}

ul#mobile-menu.menu li a
{
    font-size: 18px;
    font-weight: 600;
    font-style: normal;
    display: block;
    padding: 12px 5px 12px 17px;
    color: #e1e1e1;
    text-decoration: none !important;
    position: relative;
    text-transform: uppercase;
    letter-spacing: 0.03em;
    border-radius: 8px;
    transition: color 0.2s ease, background 0.2s ease, padding-left 0.2s ease;
}

ul#mobile-menu.menu li a:hover
{
    color: var(--primary-color);
    background: rgba(255,255,255,0.04);
    padding-left: 24px;
}

#menu_mobile .menu-header
{
    display: flex;
    align-items: center;
}

#menu_mobile .menu-header img
{
    border-radius: 8px;
}
.whatsapp-row {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 15px;
}

.whatsapp-btn {
    text-decoration: none;
    color: inherit;
}

.whatsapp-img {
    width: 60px;
    height: 60px;
}

.whatsapp-btn .default_btn {
    background-color: #25D366;
    color: #fff;
    border-radius: 5px;
    padding: 12px 25px;
    display: inline-block;
    font-size: 16px;
    transition: 0.3s;
}

.whatsapp-btn .default_btn:hover {
    background-color: #1ebe5d;
}
.icon-social {
    margin-right: 15px;
}
.floating-book-btn {
    position: fixed;
    bottom: 70px;
    right: 25px;
    z-index: 9999;

    display: flex;
    align-items: center;
    gap: 8px;

    background: var(--accent-color);
    color: #000;
    padding: 14px 22px;
    border-radius: 50px;

    font-family: 'Montserrat', sans-serif;
    font-weight: 600;
    font-size: 14px;
    letter-spacing: 0.01em;
    text-decoration: none;

    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.3), 0 0 0 0 rgba(0,0,0,0.16);
    transition: transform 0.3s ease, box-shadow 0.3s ease, background 0.3s ease, color 0.3s ease;
    animation: floatBtnPulse 2.8s ease-in-out infinite;
}

.floating-book-btn i {
    font-size: 18px;
}

.floating-book-btn:hover {
    transform: translateY(-3px);
    background: var(--secondary-color);
    color: #fff;
    animation-play-state: paused;
}

@keyframes floatBtnPulse {
    0%, 100% {
        box-shadow: 0 10px 25px rgba(0, 0, 0, 0.3), 0 0 0 0 rgba(0,0,0,0.14);
    }
    50% {
        box-shadow: 0 10px 25px rgba(0, 0, 0, 0.3), 0 0 0 10px rgba(0,0,0,0);
    }
}

.reservation-summary-card {
     border-radius: 16px;
     overflow: hidden;
     box-shadow: 0 12px 32px rgba(0, 0, 0, 0.08);
     background: #fff;
     border: 1px solid #eef0f2;
}

.summary-header {
    background-image: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
    padding: 20px 24px;
    color: #fff;
}

.summary-header h5 {
    font-size: 1.15rem;
    font-weight: 600;
    margin: 0;
    display: flex;
    align-items: center;
    letter-spacing: 0.01em;
}

.summary-header i {
    font-size: 1.2rem;
}

.summary-body {
    padding: 16px;
    background: #fafbfc;
}
.summary-item {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    padding: 12px;
    background: #fff;
    border-radius: 10px;
    border: 1px solid #eef0f2;
    height: 100%;
    transition: all 0.25s ease;
}

.summary-item:hover {
    border-color: var(--primary-color);
    box-shadow: 0 6px 16px rgba(0,0,0,0.06);
    transform: translateY(-2px);
}

.summary-icon {
    width: 40px;
    height: 40px;
    border-radius: 10px;
    background-image: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.summary-icon i {
    color: #fff;
    font-size: 1.1rem;
}

.summary-icon.success {
    background: linear-gradient(135deg, #11998e 0%, #38ef7d 100%);
}

.summary-content {
    flex: 1;
    min-width: 0;
}

.summary-label {
    display: block;
    color: #6c757d;
    font-size: 0.75rem;
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    margin-bottom: 4px;
}

.summary-value {
    display: block;
    color: #212529;
    font-size: 1rem;
    font-weight: 600;
    line-height: 1.4;
    word-wrap: break-word;
}

.summary-price {
    color: #28a745;
    font-size: 1.1rem;
}
.text-header-invoice {
    margin-left: 15px;
}