@import url('https://fonts.googleapis.com/css2?family=Forum&family=Libre+Baskerville:ital,wght@0,400;0,700;1,400&family=Lobster&family=Manrope:wght@200..800&family=Syncopate:wght@400;700&family=Teachers:ital,wght@0,400..800;1,400..800&display=swap');

@font-face {
    font-family: 'NeueAachenProBlk';
    src: url('./fonnts.com-NeueAachenProBlk.ttf') format('truetype');
    font-weight: normal;
    font-style: normal;
}

@font-face {
    font-family: 'NeueAachenRegular';
    src: url('./NeueAachenW04-Regular.ttf') format('truetype');
    font-weight: normal;
    font-style: normal;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}



body {
    font-family: 'Forum', sans-serif;
    line-height: 1.6;
    color: #55262F;
    overflow-x: hidden;
}

/* Container */
.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 2rem;
}

/* Buttons */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    padding: 1rem 2rem;
    border: none;
    border-radius: 0.5rem;
    font-size: 1rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    text-decoration: none;
    white-space: nowrap;
}

.btn-primary {
    background: #55262F;
    color: white;
    box-shadow: 0 4px 15px rgba(102, 62, 56, 0.3);
}

.btn-primary:hover {
    background: #5a352f;
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(102, 62, 56, 0.4);
}

.btn-outline {
    background: rgba(255, 255, 255, 0.1);
    color: white;
    border: 2px solid rgba(255, 255, 255, 0.3);
    backdrop-filter: blur(10px);
}

.btn-outline:hover {
    background: rgba(255, 255, 255, 0.2);
    border-color: rgba(255, 255, 255, 0.5);
}

.btn-outline-dark {
    background: transparent;
    color: #55262F;
    border: 2px solid #55262F;
}

.btn-outline-dark:hover {
    background: #55262F;
    color: white;
}

.btn-luxury {
    background: #55262F;
    color: white;
    box-shadow: 0 4px 15px rgba(102, 62, 56, 0.3);
}

.btn-luxury:hover {
    background: #5a352f;
    transform: scale(1.05);
    box-shadow: 0 6px 20px rgba(102, 62, 56, 0.4);
}

.btn-full {
    width: 100%;
}

/* Hero Section */
.hero-section {
    position: relative;
    min-height: 100dvh;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
}

.hero-background {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: url('./images/arcoherobg.jpg') no-repeat center center/cover;
}

.head-span {
    font-family: 'NeueAachenProBlk', serif;
}

.hotel-span {
    font-family: 'NeueAachenRegular', serif;
    font-weight: 800;
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.623);
}

.hero-content {
    position: relative;
    z-index: 10;
    text-align: center;
    color: white;
    padding: 0 2rem;
}

.hero-logo {
    margin-bottom: 1rem;
}

.head-span span {
    font-size: clamp(2.5rem, 4vw, 7rem);
    letter-spacing: 8px;
    line-height: 0 !important;
}


.logo-placeholder {
    width: 80px;
    height: 80px;
    background: url('./images/logo.png') no-repeat center center/cover;
    margin: 0 auto 1rem;
    backdrop-filter: blur(10px);
}

.hero-title {
    font-size: clamp(2rem, 4vw, 7rem);
    font-weight: 800;
    letter-spacing: 0.1em;
}

.title-underline {
    width: 6rem;
    height: 4px;
    background: white;
    margin: 0 auto;
}

.hero-tagline {
    font-size: clamp(1.25rem, 3vw, 2rem);
    font-weight: 300;
    margin-bottom: 2rem;
    opacity: 0.9;
}

.hero-description {
    font-size: clamp(1rem, 2vw, 1.25rem);
    opacity: 0.8;
    margin-bottom: 3rem;
    max-width: 3xl;
    line-height: 1.8;
}

.hero-buttons {
    display: flex;
    gap: 1rem;
    align-items: center;
}


.hero-form {
    display: flex;
    gap: 1rem;
    align-items: center;
    justify-content: center;
    max-width: 420px;
    margin: 0 auto;
    padding: 1rem;
    border-radius: 12px;
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.2);
}

.form-input {
    padding: 0.8rem 1rem;
    font-size: 1rem;
    border: none;
    border-radius: 8px;
    width: 100%;
    max-width: 180px;
    background: transparent;
    color: #ffffff;
    transition: all 0.3s ease;
    box-shadow: 0 0 8px rgba(255, 255, 255, 0.5);

}


input[type="date"]::-webkit-calendar-picker-indicator {
    filter: invert(1);
}


.hero-btns {
    padding: 0.8rem 1rem;
    font-size: 1rem;
    border: none;
    border-radius: 8px;
    width: 100%;
    max-width: 170px;
    background: transparent;
    color: #ffffff;
    transition: all 0.3s ease;
    box-shadow: 0 0 8px rgba(255, 255, 255, 0.5);
    cursor: pointer;

}


/* Dropdown specific */
.hero-dropdown {
    position: absolute;
    top: 1.5rem;
    right: 2rem;
    z-index: 20;
    animation: pulse 2s infinite;

}

.special-offer {
    animation: pulse 2s infinite;
    cursor: pointer;
}

.logo-left {
    position: absolute;
    top: 1.5rem;
    left: 2rem;
    z-index: 20;
    width: 80px;
    height: 80px;
    background: url('./images/logo.png') no-repeat center center/cover;
}

.location-dropdown {
    padding: 0.6rem 1rem;
    border-radius: 8px;
    color: #fff;
    border: 1px solid rgba(255, 255, 255, 0.685);
    cursor: pointer;
    font-size: 1rem;
    box-shadow: 0 0 10px rgba(255, 255, 255, 0.3);
    backdrop-filter: blur(1px);

    /* hide arrow across browsers */
    appearance: none;
    -webkit-appearance: none;
    -moz-appearance: none;
    background-image: none !important;
}

/* For IE/Edge */
.location-dropdown::-ms-expand {
    display: none;
}

.location-dropdown option {
    background: #55262F;
    /* Black background */
    color: #fff;
    /* White text */
    padding: 0.5rem;
}

.hero-dropdown-mobile {
    display: none;
    /* show on mobile */
    margin-bottom: 1rem;
}


/* Pulse animation */
@keyframes pulse {
    0% {
        transform: scale(1);
    }

    70% {
        transform: scale(1.05);
    }

    100% {
        transform: scale(1);
    }
}


@media (max-width: 768px) {
    .hero-dropdown-mobile {
        animation: pulse 2s infinite;
        display: block;
        /* hide top one */
    }

    .hero-dropdown {
        display: none;
        /* hide top one */
    }

    .hero-content .form-input {
        display: block;
        /* show near buttons */
        margin: 1rem auto;
    }
}


@media (min-width: 640px) {
    .hero-buttons {
        flex-direction: row;
        justify-content: center;
    }

}

.scroll-indicator {
    position: absolute;
    bottom: 2rem;
    left: 50%;
    transform: translateX(-50%);
}

.scroll-icon {
    width: 1.5rem;
    height: 2.5rem;
    border: 2px solid rgba(255, 255, 255, 0.5);
    border-radius: 1.25rem;
    display: flex;
    justify-content: center;
    padding-top: 0.5rem;
}

.scroll-dot {
    width: 4px;
    height: 12px;
    background: rgba(255, 255, 255, 0.7);
    border-radius: 2px;
    animation: scroll-bounce 2s infinite;
}

@keyframes scroll-bounce {

    0%,
    20% {
        transform: translateY(0);
    }

    50% {
        transform: translateY(8px);
    }

    80%,
    100% {
        transform: translateY(0);
    }
}

/* Section Styles */
.section-header {
    text-align: center;
    margin-bottom: 4rem;
}

.section-title {
    font-size: clamp(2.5rem, 5vw, 5rem);
    font-weight: 800;
    color: #55262F;
    margin-bottom: 1rem;
}

.section-description {
    font-size: 1.25rem;
    color: #8B5A4F;
    max-width: 3xl;
    margin: 0 auto;
}

/* Destinations Section */
.destinations-section {
    padding: 5rem 0;
    background: white;
}

.destinations-content {
    display: flex;
    flex-direction: column;
    gap: 8rem;
}

.destination-card {
    display: grid;
    grid-template-columns: 1fr;
    gap: 2rem;
    align-items: center;
}

@media (min-width: 1024px) {
    .destination-card {
        /*grid-template-columns: 1fr 1fr;*/
        gap: 4rem;
    }


    .destination-card.reverse {
        direction: rtl;
    }

    .destination-card.reverse>* {
        direction: ltr;
    }
}

.destination-image {
    position: relative;
    border-radius: 1rem;
    overflow: hidden;
    box-shadow: 0 20px 40px rgba(102, 62, 56, 0.3);
    group: hover;
}

.image-placeholder {
    width: 100%;
    height: 500px;
    background: linear-gradient(135deg, #55262F, #8B5A4F);
    transition: transform 0.5s ease;
}

.srinagar-bg {
    background: url('./images/Arco-Hotel-Srinagar.webp') no-repeat center center/cover;
}

.sonmarg-bg {
    background: url('./images/Arco-Hotel-Sonmarg.jpg') no-repeat center center/cover;
}

.destination-card:hover .image-placeholder {
    transform: scale(1.1);
}

.image-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(to top, rgba(102, 62, 56, 0.3), transparent);
}

.destination-content {
    space-y: 1.5rem;
}

.destination-title {
    font-size: 2.5rem;
    font-weight: 900;
    color: #55262F;
    margin-bottom: 1rem;
}

.destination-description {
    font-size: 1.125rem;
    color: #8B5A4F;
    line-height: 1.8;
    margin-bottom: 1.5rem;
}

.highlights {
    margin-bottom: 1.5rem;
}

.highlights-title {
    font-size: 1.25rem;
    font-weight: 600;
    color: #55262F;
    margin-bottom: 0.75rem;
}

.highlights-list {
    display: grid;
    grid-template-columns: 1fr;
    gap: 0.5rem;
    list-style: none;
}

@media (min-width: 640px) {
    .highlights-list {
        grid-template-columns: 1fr 1fr;
    }
}

.highlights-list li {
    display: flex;
    align-items: center;
    color: #8B5A4F;
}

.highlight-dot {
    width: 8px;
    height: 8px;
    background: #55262F;
    border-radius: 50%;
    margin-right: 0.75rem;
}

.contact-info {
    background: rgba(255, 255, 255, 0.5);
    padding: 1.5rem;
    border-radius: 0.5rem;
    border: 1px solid rgba(102, 62, 56, 0.1);
    margin-bottom: 1.5rem;
}

.contact-item {
    gap: 10px;
    display: flex;
    align-items: center;
    margin-bottom: 0.75rem;
    color: #8B5A4F;
    font-size: 0.875rem;
}

.contact-item:last-child {
    margin-bottom: 0;
}

.contact-item i {
    width: 1rem;
    height: 1rem;
    color: #55262F;
    margin-right: 0.5rem;
}

.contact-item span a {
    text-decoration: none;
    color: #8B5A4F;
}

.destination-buttons {
    display: flex;
    gap: 1rem;
    flex-wrap: wrap;
}

/* Amenities Section */
.amenities-section {
    padding: 5rem 0;
    background: rgba(102, 62, 56, 0.05);
}

.amenities-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 2rem;
}

@media (min-width: 768px) {


    .amenities-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    input[type="date"] {
        position: relative;
        /* Ensure positioning context for the icon */
    }

    input[type="date"]::-webkit-calendar-picker-indicator {
        filter: invert(1);
        /* Keep for white icon */
        cursor: pointer;
        opacity: 1;
        /* Ensure icon is fully opaque */
        width: 20px;
        /* Set explicit size for consistency */
        height: 20px;
        background-size: contain;
        /* Ensure icon scales properly */
        margin-right: 8px;
        /* Space to prevent overlap with input text */
    }

}

@media (min-width: 1024px) {
    .amenities-grid {
        grid-template-columns: repeat(4, 1fr);
    }

}

.amenity-card {
    background: white;
    padding: 2rem;
    border-radius: 0.75rem;
    box-shadow: 0 10px 30px rgba(102, 62, 56, 0.15);
    transition: all 0.3s ease;
    text-align: center;
}

.amenity-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 20px 40px rgba(102, 62, 56, 0.3);
}

.amenity-icon {
    width: 4rem;
    height: 4rem;
    background: rgba(102, 62, 56, 0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1rem;
    transition: background 0.3s ease;
}

.amenity-card:hover .amenity-icon {
    background: rgba(102, 62, 56, 0.2);
}

.amenity-icon i {
    width: 2rem;
    height: 2rem;
    color: #55262F;
}

.amenity-title {
    font-size: 1.25rem;
    font-weight: 600;
    color: #55262F;
    margin-bottom: 0.5rem;
}

.amenity-description {
    color: #8B5A4F;
}

/* Contact Section */
.contact-section {
    padding-top: 5rem;
    background: #55262F;
    color: white;
}

.contact-content {
    display: flex;
    flex-direction: column;
    gap: 4rem;
    align-items: flex-start;
}

@media (min-width: 992px) {
    .contact-content {
        flex-direction: row;
        justify-content: space-between;
    }

}

/* Title & Description */
.contact-title {
    font-size: clamp(2.5rem, 5vw, 5rem);
    font-weight: 800;
    margin-bottom: 1.5rem;
}

.contact-description {
    font-size: 1.25rem;
    opacity: 0.85;
    margin-bottom: 2rem;
    line-height: 1.8;
}

/* Contact Details */
.contact-details {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    margin-bottom: 2rem;
}

.contact-detail {
    align-items: center;
    margin-bottom: 1.5rem;
}

.contact-detail i {
    width: 2.5rem;
    height: 2.5rem;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(255, 255, 255, 0.15);
    border-radius: 50%;
    margin-right: 1rem;
    flex-shrink: 0;
    color: white;
}

.detail-title {
    font-weight: 600;
    margin-bottom: 0.25rem;
}

.detail-text {
    opacity: 0.85;
}

/* Button */
.btn-luxury {
    padding: 0.75rem 2rem;
    background: #55262F;
    color: #fff;
    font-weight: 700;
    border-radius: 2rem;
    border: none;
    cursor: pointer;
    transition: all 0.3s ease;
}

.btn-luxury:hover {
    background: #e5e5e5;
    color: #55262F;
    transform: translateY(-2px);
}

/* Footer */
.footer {
    background: #55262F;
    color: white;
    padding: 2rem 0;
    text-align: center;
}

.footer-content {
    text-align: center;
}

.footer-brand {
    font-size: 1.125rem;
    font-weight: 600;
    margin-bottom: 0.5rem;
}

.footer-tagline {
    font-size: 0.875rem;
    opacity: 0.8;
    margin-bottom: 1rem;
}

.footer-copyright {
    font-size: 0.75rem;
    opacity: 0.6;
}

/* Responsive Design */
@media (max-width: 768px) {
    .hero-content {
        max-width: 100%;
    }

    .destination-buttons {
        flex-direction: column;
    }

    .btn {
        padding: 0.75rem 1.5rem;
        font-size: 0.875rem;
    }


    .hero-content {
        padding: 0 0.5rem;
    }

    .form-input {
        padding: 0.8rem 1rem;
        font-size: 0.875rem;
        max-width: 102px;

    }

    .logo-left {
        display: none;
        /* left: 50% !important;
    transform: translateX(-50%) !important;
    background: url('./images/logo-small.png') !important;
    background-repeat: no-repeat !important;
    background-size: contain !important; */
    }

}

/* Smooth Scrolling */
html {
    scroll-behavior: smooth;
}

/* Loading Animation */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.fade-in-up {
    animation: fadeInUp 0.6s ease-out;
}

.contact-numbers {
    display: flex;
    justify-content: space-between;
    gap: 5px;
    flex-wrap: wrap;
}


/* Initially hide the floating button */
/* Initially hide the floating button */
.hidden {
    display: none;
}

/* Styling for the floating WhatsApp button */
.floating-button {
    position: fixed;
    bottom: 100px;
    right: 20px;
    z-index: 100;
    text-align: center;
    display: flex;
    flex-direction: column;
    align-items: center;
}

/* Helper text for "Talk with us!" below the button */

/* Fade-in effect for the helper text */
@keyframes fadeIn {
    from {
        opacity: 0;
    }

    to {
        opacity: 1;
    }
}

/* WhatsApp button with pulsing effect */
.whatsapp-button {

    border: none;
    border-radius: 50%;
    width: 45px;
    height: 45px;
    color: white;
    font-size: 24px;
    cursor: pointer;
    outline: none;
    display: flex;
    justify-content: center;
    align-items: center;
    animation: pulse 1.5s infinite;
    /* Pulsing animation */
}

.whatsapp-button img {
    width: 25px;
    height: 25px;
}

/* Pulsing effect */
@keyframes pulse-whatsapp {
    0% {
        box-shadow: 0 0 0 0 rgba(255, 255, 255, 0.4);
    }

    70% {
        box-shadow: 0 0 0 10px rgba(37, 211, 102, 0);
    }

    100% {
        box-shadow: 0 0 0 0 rgba(37, 211, 102, 0);
    }
}

.helper-text {
    margin-top: 8px;
    font-size: 12px;
    color: #ffffff;
    padding: 4px 8px;
    border-radius: 50px;
    animation: fadeIn 1s ease-in-out;
}

/* Hide the dropdown menu initially */
.dropdown-content {
    display: none;
    position: absolute;
    bottom: 80px;
    /* Adjust this to place the dropdown above the button */
    right: 0;
    background-color: white;
    border: 1px solid #ddd;
    border-radius: 5px;
    box-shadow: 0px 8px 16px rgba(0, 0, 0, 0.2);
    z-index: 1;
    overflow: hidden;
    width: 180px;
    text-align: center;
}

/* Links inside the dropdown */
.dropdown-content a {
    padding: 12px 16px;
    display: block;
    text-decoration: none;
    color: black;
    border-bottom: 1px solid #ddd;
}

.dropdown-content a:hover {
    background-color: #f1f1f1;
}

/* Show the dropdown when it's active */
.show {
    display: block;
}

/* Responsive styles for small devices */
@media (max-width: 600px) {
    #loader {

        img {
            width: 250px;
            height: 250px;
        }
    }

    .floating-button {
        bottom: 40px;
        right: 15px;
    }

    .whatsapp-button {
        width: 50px;
        height: 50px;
    }

    .whatsapp-button i {
        font-size: 24px;
    }

    .dropdown-content {
        width: 160px;
    }

    .dropdown-content a {
        padding: 10px 14px;
    }

    .back-to-top {
        margin-right: 0px;

    }
}

/* Container */
.special-offer-container {
    position: relative;
    background: rgba(255, 255, 255, 0.12);
    backdrop-filter: blur(10px);
    padding: 1.3rem 1.2rem;
    border-radius: 14px;
    border: 1px solid rgba(255, 255, 255, 0.18);
    box-shadow: 0 6px 25px rgba(0, 0, 0, 0.35);
    max-width: 450px;
    margin: 2rem auto;
    text-align: center;
    overflow: hidden;
}

/* SPECIAL OFFER Stamp Text */
.special-offer-stamp-text {
    width: 53%;
    position: absolute;
    top: 8px;
    left: -62px;
    background: #B89752;
    color: #55262F;
    font-weight: 800;
    padding: 5px 22px;
    /* border-radius: 4px; */
    font-size: 0.55rem;
    transform: rotate(-20deg);
    /* animation: pulse 1.5s infinite 
ease-in-out; */
    box-shadow: 0 4px 12px rgba(184, 151, 82, 0.45);
    letter-spacing: 1px;
}




/* Text content */
.offer-details {
    font-size: 0.95rem;
    color: #ffffff;
    margin: 0;
    line-height: 1.35;
}

.offer-price {
    font-size: 1.2rem;
    font-weight: 700;
    color: #B89752;
    margin: 10px 0 14px;
}

/* Button */
.special-offer-btn {
    display: inline-block;
    background: #B89752;
    color: #55262F;
    padding: 0.55rem 1.4rem;
    border-radius: 30px;
    font-size: 0.9rem;
    font-weight: 700;
}

/* Helper text for "Talk with us!" below the button */

/* Fade-in effect for the helper text */
@keyframes fadeIn {
    from {
        opacity: 0;
    }

    to {
        opacity: 1;
    }
}

/* WhatsApp button with pulsing effect */
.whatsapp-button {

    border: none;
    border-radius: 50%;
    width: 45px;
    height: 45px;
    color: white;
    font-size: 24px;
    cursor: pointer;
    outline: none;
    display: flex;
    justify-content: center;
    align-items: center;
    animation: pulse 1.5s infinite;
    /* Pulsing animation */
}

.whatsapp-button img {
    width: 25px;
    height: 25px;
}

/* Pulsing effect */
@keyframes pulse-whatsapp {
    0% {
        box-shadow: 0 0 0 0 rgba(255, 255, 255, 0.4);
    }

    70% {
        box-shadow: 0 0 0 10px rgba(37, 211, 102, 0);
    }

    100% {
        box-shadow: 0 0 0 0 rgba(37, 211, 102, 0);
    }
}

.helper-text {
    margin-top: 8px;
    font-size: 12px;
    color: #ffffff;
    padding: 4px 8px;
    border-radius: 50px;
    animation: fadeIn 1s ease-in-out;
}

/* Hide the dropdown menu initially */
.dropdown-content {
    display: none;
    position: absolute;
    bottom: 80px;
    /* Adjust this to place the dropdown above the button */
    right: 0;
    background-color: white;
    border: 1px solid #ddd;
    border-radius: 5px;
    box-shadow: 0px 8px 16px rgba(0, 0, 0, 0.2);
    z-index: 1;
    overflow: hidden;
    width: 180px;
    text-align: center;
}

/* Links inside the dropdown */
.dropdown-content a {
    padding: 12px 16px;
    display: block;
    text-decoration: none;
    color: black;
    border-bottom: 1px solid #ddd;
}

.dropdown-content a:hover {
    background-color: #f1f1f1;
}

/* Show the dropdown when it's active */
.show {
    display: block;
}

/* Responsive styles for small devices */
@media (max-width: 600px) {
    #loader {

        img {
            width: 250px;
            height: 250px;
        }
    }

    .floating-button {
        bottom: 40px;
        right: 15px;
    }

    .whatsapp-button {
        width: 50px;
        height: 50px;
    }

    .whatsapp-button i {
        font-size: 24px;
    }

    .dropdown-content {
        width: 160px;
    }

    .dropdown-content a {
        padding: 10px 14px;
    }

    .back-to-top {
        margin-right: 0px;

    }
}

/* MAIN CONTAINER */
.special-offer-container {
    position: relative;
    background: rgba(255, 255, 255, 0.12);
    backdrop-filter: blur(10px);
    padding: 1.3rem 1.2rem;
    border-radius: 14px;
    border: 1px solid rgba(255, 255, 255, 0.18);
    box-shadow: 0 6px 25px rgba(0, 0, 0, 0.35);
    max-width: 450px;
    margin: 2rem auto;
    text-align: center;
    overflow: hidden;
    opacity: 0;
    transform: scale(0.92);
    animation: offerEnter 0.9s ease-out forwards;

}



/* RIBBON WITH CUT EDGE */
.special-offer-ribbon {
    position: absolute;
    top: 11px;
    left: -66px;
    width: 200px;
    background: #B89752;
    color: #ffffff;
    padding: 8px 0;
    text-align: center;
    font-weight: 800;
    font-size: 0.55rem;
    letter-spacing: 1px;
    transform: rotate(-35deg);

    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.25);

}

/* Cut edge */
.special-offer-ribbon::after {
    content: "";
    position: absolute;
    bottom: -10px;
    right: 20%;
    border-width: 10px 10px 0 10px;
    border-style: solid;
    border-color: #8c6f38 transparent transparent transparent;
}

/* INFO ICON */
.info-icon {
    position: absolute;
    top: 10px;
    right: 10px;
    color: rgba(255, 255, 255, 0.8);
    cursor: pointer;
    width: 20px;
    height: 20px;
    z-index: 100;
    transition: 0.2s;
}

.info-icon:hover {
    color: #8c6f38;
}

.offer-popup {
    position: absolute;
    top: 40px;
    left: 50%;
    transform: translateX(-50%);

    background: #ffffff;
    color: #333;
    padding: 18px 20px;
    border-radius: 12px;

    font-size: 0.87rem;
    line-height: 1.45;
    font-weight: 400;

    box-shadow: 0 10px 28px rgba(0, 0, 0, 0.18);

    max-width: 320px;
    width: 90%;
    white-space: normal;

    display: none;
    z-index: 100;
}

/* Title */
.offer-popup h4 {
    margin: 0 0 10px 0;
    font-size: 1rem;
    font-weight: 700;
    color: #B89752;
    text-align: center;
}

/* Section spacing */
.tooltip-section {
    margin-bottom: 12px;
}

/* Remove default list styling */
.tooltip-section ul {
    padding: 0;
    margin: 6px 0 0;
    list-style: none;
}

.tooltip-section ul li {
    position: relative;
    padding-left: 16px;
    margin-bottom: 6px;
}

/* Gold bullet */
.tooltip-section ul li::before {
    content: "•";
    position: absolute;
    left: 0;
    top: 0;
    color: #B89752;
    font-weight: 900;
}

/* Close Icon */
.tooltip-close {
    position: absolute;
    top: 8px;
    right: 10px;
    font-size: 20px;
    font-weight: bold;
    cursor: pointer;
    color: #555;
}

.tooltip-close:hover {
    color: #000;
}


.tooltip-close {
    position: absolute;
    top: 6px;
    right: 8px;
    font-size: 18px;
    color: #444;
    cursor: pointer;
    font-weight: 700;
    z-index: 200;
}

.tooltip-close:hover {
    color: #000;
}

@keyframes offerEnter {
    0% {
        opacity: 0;
        transform: scale(0.92) translateY(10px);
    }

    60% {
        opacity: 1;
        transform: scale(1.02) translateY(0);
    }

    100% {
        opacity: 1;
        transform: scale(1);
    }
}

.offer-popup.show {
    display: block;
}

/* CONTENT */
.offer-details {
        margin-top: 25px;
    font-size: 0.95rem;
    color: #fff;
    line-height: 1.35;
    font-family: 'Forum', sans-serif;
    letter-spacing: 1.3px;
}


.offer-price {
    letter-spacing: 1.2px;
    display: inline-block;
    font-size: 1.2rem;
    font-weight: 700;
    color: #B89752;
    margin: 10px 0 14px;
    white-space: nowrap;
}



.special-offer-btn {
    display: inline-block;
    background: #B89752;
    color: #ffffff;
    padding: 0.55rem 1.4rem;
    border-radius: 30px;
    font-weight: 700;
    font-size: 0.9rem;
    text-decoration: none;
    transition: 0.25s;
    animation: pulse 3s infinite ease-in-out;

}

.special-offer-btn:hover {
    transform: scale(1.05);
}