:root {
    --primary-background: #FFF5F7;
    --primary-text: #2D2D2D;
    --accent-color: #D21F3C;
    --accent-text: #FFFFFF;
    --secondary-background: #FCE4EC;
    --secondary-text: #4A4A4A;
    --border-color: #F8BBD0;
    --button-hover: #B01730;
    --status-discount: #E91E63;
    --status-out-of-stock: #9E9E9E;
    --main-font: 'Montserrat', sans-serif;
    --heading-font: 'Playfair Display', serif;
    --primary_background: var(--primary-background);
    --primary_text: var(--primary-text);
    --accent_color: var(--accent-color);
    --accent_text: var(--accent-text);
    --secondary_background: var(--secondary-background);
    --secondary_text: var(--secondary-text);
    --border_color: var(--border-color);
    --button_hover: var(--button-hover);
}

* {
    box-sizing: border-box;
}

body {
    background-color: var(--primary-background);
    color: var(--primary-text);
    font-family: var(--main-font);
    margin: 0;
    padding: 0;
    line-height: 1.6;
    -webkit-font-smoothing: antialiased;
}

h1,
h2,
h3,
h4,
h5,
h6 {
    font-family: var(--heading-font);
    font-weight: 700;
    margin-top: 0;
    line-height: 1.2;
}

a,
a:hover,
a:focus {
    text-decoration: none;
    transition: color 0.3s ease;
}

a {
    color: var(--accent-color);
}

img {
    max-width: 100%;
    height: auto;
    display: block;
}

button {
    cursor: pointer;
    border: none;
    font-family: var(--main-font);
    transition: all 0.3s ease;
}

button:focus {
    outline: none;
}

ul,
ol {
    list-style: none;
    padding: 0;
    margin: 0;
}

html {
    scroll-behavior: smooth;
}

.cookie-consent-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.6);
    z-index: 10000;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 1rem;
}

.cookie-consent-modal {
    background: var(--primary-background);
    padding: 2rem;
    border-radius: 12px;
    max-width: 500px;
    width: 100%;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.15);
    text-align: center;
}

.cookie-settings {
    text-align: left;
    background: var(--secondary-background);
    padding: 1rem;
    border-radius: 8px;
    margin-bottom: 1.5rem;
}

.cookie-option {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    margin-bottom: 0.5rem;
    font-size: 0.9rem;
}

.cookie-buttons {
    display: flex;
    flex-wrap: wrap;
    gap: 0.5rem;
    justify-content: center;
}

.cookie-buttons button {
    padding: 0.6rem 1.2rem;
    border-radius: 5px;
    font-weight: 700;
    font-size: 0.85rem;
}

#cookieConsentAcceptAll {
    background: var(--accent-color);
    color: var(--accent-text);
}

#cookieConsentAcceptAll:hover {
    background: var(--button-hover);
}

#cookieConsentReject {
    background: var(--secondary-text);
    color: var(--accent-text);
}

#cookieConsentCustomize,
#cookieConsentSave {
    background: transparent;
    border: 1px solid var(--accent-color);
    color: var(--accent-color);
}

@media (max-width: 768px) {
    h1 {
        font-size: 1.75rem;
    }

    h2 {
        font-size: 1.5rem;
    }

    h3 {
        font-size: 1.25rem;
    }

    p,
    a,
    span,
    label {
        font-size: 0.95rem;
        word-wrap: break-word;
    }

    .cookie-consent-modal {
        padding: 1.5rem;
    }

    .cookie-buttons button {
        width: 100%;
    }
}

/* ===== header ===== */
#header {
    background-color: var(--primary_background);
    border-bottom: 1px solid var(--border_color);
    overflow: visible;
    width: 100%;
}

.navbar-wrapper {
    position: relative;
    z-index: 1000;
}

.logo-img {
    max-width: 60px;
    height: auto;
    object-fit: contain;
}

.site-name {
    font-size: 0.8rem;
    font-weight: 700;
    color: var(--primary_text);
    text-transform: uppercase;
    letter-spacing: 0.5px;
    hyphens: auto;
    line-height: 1.2;
}

@media (max-width: 767px) {
    .site-name {
        font-size: 0.7rem;
    }
}

.desktop-link {
    color: var(--primary_text);
    text-decoration: none;
    font-weight: 500;
    transition: color 0.3s ease;
}

.desktop-link:hover {
    color: var(--accent_color);
}

.cta-btn {
    background-color: var(--accent_color);
    color: var(--accent_text);
    padding: 0.6rem 1.5rem;
    border-radius: 4px;
    text-decoration: none;
    font-weight: 600;
    transition: background-color 0.3s ease;
}

.cta-btn:hover {
    background-color: var(--button_hover);
    color: var(--accent_text);
}

.mobile-toggle-btn {
    background: none;
    border: none;
    color: var(--accent_color);
    font-size: 1.5rem;
    cursor: pointer;
    padding: 0;
}

.mobile-menu {
    display: none;
    background-color: var(--secondary_background);
    border-top: 1px solid var(--border_color);
    box-shadow: 0 18px 30px rgba(45, 45, 45, 0.12);
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    z-index: 999;
}

.mobile-menu.open {
    display: block;
}

.mobile-link {
    display: block;
    color: var(--secondary_text);
    text-decoration: none;
    font-size: 1rem;
    padding: 0.5rem 0;
    font-weight: 500;
}

.cta-mobile {
    color: var(--accent_color);
    font-weight: 700;
}

@media (max-width: 991.98px) {
    .navbar-wrapper {
        background-color: var(--primary_background);
    }

    .mobile-menu .container {
        background-color: var(--secondary_background);
    }
}

@media (min-width: 1024px) {
    .d-lg-flex {
        display: flex !important;
    }

    .d-lg-none {
        display: none !important;
    }
}

@media (max-width: 1023px) {
    .d-lg-flex {
        display: none !important;
    }

    .d-lg-none {
        display: block !important;
    }
}

/* ===== hero_section ===== */
#hero h1 {
    font-size: 3rem
}

@media(max-width:767px) {
    #hero {
        min-height: 70vh
    }

    #hero h1 {
        font-size: 1.125rem !important;
        line-height: 1.2 !important;
        margin-bottom: 1rem !important
    }

    #hero p {
        font-size: 0.875rem !important;
        line-height: 1.3 !important;
        margin-bottom: 1.5rem !important
    }

    #hero .btn-lg {
        padding: 0.75rem 1.5rem !important;
        font-size: 0.9rem !important
    }
}

#hero .js-scroll-to-catalog:hover {
    background-color: var(--button_hover) !important;
    transform: translateY(-2px);
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.2)
}

/* ===== product_catalog ===== */
#catalog h2 {
    font-size: 1.5rem;
}

#catalog h3 {
    font-size: 1.125rem;
}

#catalog .badge {
    font-size: 0.75rem;
    font-weight: 700;
    text-transform: uppercase;
}

#catalog .card {
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

#catalog .card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.08) !important;
}

#catalog .btn:hover {
    background-color: var(--button_hover) !important;
}

#catalog .mb-1Small {
    font-size: 0.85rem;
    margin-bottom: 0.5rem;
}

@media (max-width: 767px) {
    #catalog h2 {
        font-size: 1rem !important;
        line-height: 1.2;
    }

    #catalog h3 {
        font-size: 0.875rem !important;
        line-height: 1.2;
    }

    #catalog p {
        font-size: 0.875rem;
    }
}

/* ===== usp_section ===== */
#benefits {
    padding: 80px 0;
}

#benefits h2 {
    hyphens: auto;
}

#benefits h3 {
    hyphens: auto;
}

#benefits .usp-item:last-child {
    margin-bottom: 0 !important;
}

@media (max-width: 767.98px) {
    #benefits {
        padding: 40px 0;
    }

    #benefits h2 {
        font-size: 1rem !important;
        line-height: 1.2;
    }

    #benefits h3 {
        font-size: 0.875rem !important;
        line-height: 1.2;
    }

    #benefits .image-wrapper {
        margin-top: 30px;
    }

    #benefits .image-decoration {
        display: none;
    }

    #benefits .usp-icon-wrapper {
        min-width: 40px !important;
        height: 40px !important;
    }

    #benefits .usp-icon-wrapper i {
        font-size: 1rem !important;
    }

    #benefits .image-wrapper img {
        height: 300px;
    }
}

/* ===== rooms_selection ===== */
#rooms h2 {
    font-size: 2rem;
}

#rooms h3 {
    font-size: 1.25rem;
}

.js-room-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 10px 20px rgba(210, 31, 60, 0.1);
}

@media (max-width: 767.98px) {
    #rooms h2 {
        font-size: 1rem !important;
    }

    #rooms h3 {
        font-size: 0.875rem !important;
    }

    #rooms .lead {
        font-size: 0.9rem;
    }

    #rooms .card {
        padding: 1.5rem !important;
    }
}

/* ===== daily_picks ===== */
#daily_picks .daily-card {
    transition: transform 0.3s ease, border-color 0.3s ease;
}

#daily_picks .daily-card:hover {
    transform: translateY(-8px);
    border-color: var(--accent_color) !important;
}

#daily_picks .btn:hover {
    background-color: var(--button_hover) !important;
}

@media (max-width: 767px) {
    #daily_picks h2 {
        font-size: 1rem !important;
    }

    #daily_picks h3 {
        font-size: 0.875rem !important;
    }

    #daily_picks p {
        font-size: 0.85rem;
    }

    #daily_picks .container {
        padding-left: 15px;
        padding-right: 15px;
    }
}

/* ===== bespoke_service ===== */
.bespoke-service-section {
    background-color: var(--primary_background);
    color: var(--primary_text);
    padding-top: clamp(2rem, 5vw, 5rem);
    padding-bottom: clamp(2rem, 5vw, 5rem);
}

.bespoke-title {
    color: var(--primary_text);
    font-weight: 700;
    line-height: 1.2;
    hyphens: auto;
}

.bespoke-desc {
    color: var(--secondary_text);
    line-height: 1.6;
}

.bespoke-primary-text {
    color: var(--primary_text);
    font-weight: 600;
}

.bespoke-secondary-text {
    color: var(--secondary_text);
}

.bespoke-accent-text {
    color: var(--accent_color);
}

.bespoke-icon-wrapper {
    min-width: 24px;
    text-align: center;
    font-size: 1.25rem;
}

.btn-bespoke {
    background-color: var(--accent_color);
    color: var(--accent_text);
    border: none;
    transition: background-color 0.3s ease, transform 0.2s ease;
    border-radius: 4px;
    display: inline-block;
}

.btn-bespoke:hover {
    background-color: var(--button_hover);
    color: var(--accent_text);
    transform: translateY(-2px);
}

.bespoke-img {
    border: 1px solid var(--border_color);
}

@media (max-width: 767.98px) {
    .bespoke-title {
        font-size: 1rem !important;
        line-height: 1.3;
    }

    .h6 {
        font-size: 0.875rem !important;
    }

    .bespoke-desc {
        font-size: 0.875rem;
    }

    .bespoke-img {
        height: 300px !important;
    }
}

/* ===== process_steps ===== */
#work_steps .section-title {
    font-size: 2.5rem;
    line-height: 1.2;
}

#work_steps .section-subtitle {
    font-size: 1.1rem;
}

#work_steps .js-step-item {
    transition: transform 0.3s ease;
    padding: 1rem;
    border-radius: 12px;
    background-color: var(--secondary_background);
    border: 1px solid transparent;
}

#work_steps .js-step-item:hover {
    transform: translateX(10px);
    border-color: var(--border_color);
}

#work_steps h3 {
    font-size: 1.25rem;
}

@media (max-width: 767.98px) {
    #work_steps .section-title {
        font-size: 1rem !important;
        line-height: 1.1;
        hyphens: auto;
    }

    #work_steps h3 {
        font-size: 0.875rem !important;
        line-height: 1.3;
    }

    #work_steps .section-subtitle {
        font-size: 0.875rem;
    }

    #work_steps .step-icon-box {
        width: 36px !important;
        height: 36px !important;
    }

    #work_steps .step-icon-box i {
        font-size: 16px !important;
    }

    #work_steps .js-step-item {
        padding: 0.75rem;
    }

    #work_steps .process-image-wrapper img {
        height: 250px !important;
    }
}

/* ===== service_warranty ===== */
#warranty {
    position: relative;
}

.warranty-content-box h2 {
    font-size: 1.75rem;
    line-height: 1.2;
}

.warranty-content-box p {
    line-height: 1.6;
}

.js-warranty-cta:hover {
    background-color: var(--button_hover) !important;
    transform: translateY(-2px);
    transition: all 0.3s ease;
}

@media (max-width: 767.98px) {
    #warranty h2 {
        font-size: 1rem !important;
        line-height: 1.3;
    }

    #warranty h3 {
        font-size: 0.875rem !important;
    }

    #warranty p {
        font-size: 0.875rem;
        hyphens: auto;
    }

    #warranty {
        padding-top: 40px !important;
        padding-bottom: 40px !important;
    }

    .warranty-image-wrapper {
        margin-bottom: 20px;
    }
}

/* ===== delivery_info ===== */
#shipping {
    padding: 80px 0;
}

#shipping h2 {
    font-size: 2.5rem;
    line-height: 1.2;
    margin-bottom: 1.5rem;
    color: var(--primary_text);
}

#shipping h3 {
    font-size: 1.15rem;
    font-weight: 600;
    margin-bottom: 0.25rem;
    color: var(--primary_text);
}

#shipping p {
    font-size: 1rem;
    line-height: 1.6;
    color: var(--secondary_text);
    hyphens: auto;
}

.delivery-icon-box {
    width: 48px;
    height: 48px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 12px;
    margin-right: 15px;
    flex-shrink: 0;
    font-size: 1.25rem;
}

.shipping-img {
    width: 100%;
    height: 450px;
    object-fit: cover;
    border-radius: 20px;
    box-shadow: 0 15px 35px rgba(210, 31, 60, 0.1);
}

.image-wrapper {
    position: relative;
}

.btn {
    background-color: #FCE4EC;
    color: var(--accent-color);
    border: none;
    border-radius: 8px;
    padding: 0.6rem 1.5rem;
    font-weight: 600;
    box-shadow: 0 2px 8px rgba(210, 31, 60, 0.12);
    transition: all 0.3s ease;
}

.btn:hover {
    background-color: var(--accent-color) !important;
    color: #FFFFFF !important;
    transform: translateY(-2px);
    box-shadow: 0 6px 16px rgba(210, 31, 60, 0.25);
}

@media(max-width:767px) {
    #shipping {
        padding: 40px 0;
    }

    #shipping h2 {
        font-size: 1.125rem !important;
        line-height: 1.2;
    }

    #shipping h3 {
        font-size: 0.875rem !important;
        line-height: 1.2;
    }

    #shipping p {
        font-size: 0.875rem;
    }

    .shipping-img {
        height: 280px;
    }

    .delivery-icon-box {
        width: 40px;
        height: 40px;
        font-size: 1rem;
    }
}

/* ===== payment_methods ===== */
#payment h2 {
    font-size: 2rem;
    hyphens: auto;
}

#payment h3 {
    font-size: 1rem;
    hyphens: auto;
}

#payment p {
    font-size: 1.1rem;
    line-height: 1.6;
}

.payment-content {
    padding-right: 15px;
}

@media (max-width: 767px) {
    #payment {
        padding: 40px 0;
    }

    #payment h2 {
        font-size: 1rem !important;
        line-height: 1.2;
    }

    #payment h3 {
        font-size: 0.875rem !important;
        line-height: 1.2;
    }

    #payment p {
        font-size: 0.875rem;
    }

    .payment-content {
        padding-right: 0;
        text-align: center;
    }
}

/* ===== client_reviews ===== */
#reviews h2 {
    font-size: 2.5rem;
}

#reviews .js-review-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 20px rgba(210, 31, 60, 0.1) !important;
}

@media (max-width: 767.98px) {
    #reviews {
        padding-top: 3rem !important;
        padding-bottom: 3rem !important;
    }

    #reviews h2 {
        font-size: 1rem !important;
        line-height: 1.2;
    }

    #reviews h3 {
        font-size: 0.875rem !important;
        line-height: 1.2;
    }

    #reviews .card {
        padding: 1.5rem !important;
    }

    #reviews .container {
        padding-left: 15px;
        padding-right: 15px;
    }
}

/* ===== order_form ===== */
#order_form .form-control:focus,
#order_form .form-select:focus {
    border-color: var(--accent_color);
    box-shadow: none;
}

#order_form button:hover {
    background-color: var(--button_hover) !important;
}

@media (max-width: 767px) {
    #order_form h2 {
        font-size: 1rem !important;
        line-height: 1.2;
        hyphens: auto;
    }

    #order_form h3 {
        font-size: 0.875rem !important;
        line-height: 1.2;
        hyphens: auto;
    }

    #order_form .p-4 {
        padding: 1.5rem !important;
    }
}

/* ===== footer ===== */
#footer {
    hyphens: auto;
}

.footer-brand {
    font-size: 1.25rem;
}

.js-policy-link {
    font-size: 0.9rem;
    transition: color 0.3s ease;
    text-decoration: none;
}

.js-policy-link:hover {
    color: var(--accent_color) !important;
}

@media (max-width: 767.98px) {
    .footer-brand {
        font-size: 0.8rem !important;
    }

    .js-policy-link {
        font-size: 0.8rem;
        padding: 0.3rem 0 !important;
    }

    .footer-copy {
        font-size: 0.75rem !important;
    }
}
