:root {
    --color-pistachio: #d8e8b0;
    --color-lime: #b4d862;
    --color-white: #ffffff;
    --color-moss: #506a2e;
    --color-moss-dark: #3a4d21;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    scroll-behavior: smooth;
}

body {
    background-color: var(--color-pistachio);
    font-family: 'Outfit', sans-serif;
    color: var(--color-moss);
    overflow-x: hidden;
    position: relative;
}

/* Background Blobs for dynamic look */
.blob {
    position: absolute;
    border-radius: 50%;
    filter: blur(40px);
    z-index: -1;
    opacity: 0.6;
}

.blob-1 {
    top: -10%;
    left: -10%;
    width: 50vw;
    height: 50vw;
    background-color: var(--color-lime);
}

.blob-2 {
    bottom: 0;
    right: -10%;
    width: 60vw;
    height: 40vw;
    background-color: var(--color-lime);
}

.blob-3 {
    top: 40%;
    left: 60%;
    width: 30vw;
    height: 30vw;
    background-color: var(--color-white);
    opacity: 0.3;
}

/* Navbar Section */
.navbar {
    position: sticky;
    top: 0;
    width: 100%;
    background: rgba(255, 255, 255, 0.7);
    backdrop-filter: blur(15px);
    z-index: 1000;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.05);
    transition: all 0.3s ease;
}

.nav-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 1rem;
    height: 70px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    position: relative;
}

.logo-link {
    width: 180px;
    display: block;
}

.nav-logo {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    max-width: 140px;
    max-height: 55px;
    height: auto;
    transition: transform 0.3s ease;
    filter: drop-shadow(0 5px 15px rgba(0, 0, 0, 0.1));
}

.nav-logo:hover {
    transform: scale(1.05);
}

.nav-links {
    display: flex;
    gap: 2rem;
}

.nav-links a {
    text-decoration: none;
    color: var(--color-moss-dark);
    font-weight: 600;
    font-size: 1.1rem;
    transition: color 0.3s ease;
    border-bottom: 2px solid transparent;
    padding-bottom: 0.2rem;
}

.nav-links a:hover {
    color: var(--color-moss);
    border-bottom: 2px solid var(--color-moss);
}

.nav-actions {
    display: flex;
    align-items: center;
}

.cart-btn {
    background: none;
    border: none;
    font-size: 1.5rem;
    color: var(--color-moss-dark);
    cursor: pointer;
    position: relative;
    transition: transform 0.2s;
}

.cart-btn:hover {
    transform: scale(1.1);
}

.cart-btn i {
    color: var(--color-moss-dark) !important;
    font-size: 1.8rem;
    display: inline-block;
}

.cart-count {
    position: absolute;
    top: -8px;
    right: -12px;
    background-color: #ff4757;
    color: white;
    font-size: 0.8rem;
    font-weight: bold;
    padding: 0.1rem 0.4rem;
    border-radius: 50%;
}

.menu-toggle {
    display: none;
    font-size: 1.5rem;
    color: var(--color-moss-dark);
    background: none;
    border: none;
    cursor: pointer;
}

/* Sections Global */
section {
    padding-top: 3rem;
    /* Space for sticky nav */
}

.section-title {
    text-align: center;
    font-family: 'Dancing Script', cursive;
    font-size: 3rem;
    color: var(--color-moss-dark);
    margin-bottom: 1rem;
    text-shadow: 1px 1px 3px rgba(255, 255, 255, 0.7);
}

.text-left {
    text-align: left;
}

/* Hero Section */
.hero {
    text-align: center;
    padding: 2rem 1rem 1rem;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.5rem;
}

.date-badge {
    color: var(--color-white);
    background-color: var(--color-moss);
    padding: 0.5rem 1.5rem;
    border-radius: 50px;
    font-size: 1.5rem;
    font-weight: 800;
    letter-spacing: 2px;
    box-shadow: 0 4px 15px rgba(80, 106, 46, 0.3);
    text-transform: uppercase;
}

.heart-icon {
    font-size: 2.5rem;
    animation: heartbeat 1.5s infinite;
    margin: 0.5rem 0;
}

@keyframes heartbeat {
    0% {
        transform: scale(1);
    }

    15% {
        transform: scale(1.2);
    }

    30% {
        transform: scale(1);
    }

    45% {
        transform: scale(1.2);
    }

    60% {
        transform: scale(1);
    }

    100% {
        transform: scale(1);
    }
}

.hero-title {
    font-family: 'Dancing Script', cursive;
    color: var(--color-moss-dark);
    font-size: 5rem;
    text-shadow: 2px 2px 4px rgba(255, 255, 255, 0.8);
    margin-top: -0.5rem;
}

/* Products Section */
.products-section {
    padding-bottom: 1.5rem;
    max-width: 1200px;
    margin: 0 auto;
}

.products-grid {
    display: flex;
    justify-content: center;
    gap: 2rem;
    flex-wrap: wrap;
    padding: 0 1rem;
}

.product-card {
    background: rgba(255, 255, 255, 0.3);
    backdrop-filter: blur(10px);
    border: 2px solid rgba(255, 255, 255, 0.5);
    border-radius: 20px;
    padding: 1rem;
    width: 280px;
    text-align: center;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
    transition: all 0.4s ease;
    display: flex;
    flex-direction: column;
    align-items: center;
    cursor: pointer;
}

.product-card:hover {
    transform: translateY(-10px);
    background: rgba(255, 255, 255, 0.4);
    box-shadow: 0 15px 40px rgba(80, 106, 46, 0.2);
}

.product-image-container {
    position: relative;
    width: 100%;
    aspect-ratio: 1;
    background: var(--color-white);
    border: 4px solid var(--color-lime);
    border-radius: 10px;
    margin-bottom: 1rem;
    box-shadow: inset 0 0 10px rgba(0, 0, 0, 0.1);
    overflow: hidden;
}

.view-more {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(80, 106, 46, 0.7);
    color: white;
    display: flex;
    justify-content: center;
    align-items: center;
    opacity: 0;
    transition: opacity 0.3s ease;
    font-weight: bold;
    font-size: 1.2rem;
    border-radius: 6px;
    z-index: 5;
}

.product-card:hover .view-more {
    opacity: 1;
}

.product-pin {
    position: absolute;
    top: -15px;
    left: 50%;
    transform: translateX(-50%);
    width: 24px;
    height: 24px;
    background: radial-gradient(circle at 6px 6px, #8b9d73, #4a5c21);
    border-radius: 50%;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.3), inset 0 2px 4px rgba(255, 255, 255, 0.4);
    z-index: 10;
}

.product-pin::after {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 8px;
    height: 8px;
    background: rgba(255, 255, 255, 0.3);
    border-radius: 50%;
}

.image-placeholder {
    width: 100%;
    height: 100%;
    background-size: cover;
    background-position: center;
    transition: transform 0.5s ease;
}

.product-card:hover .image-placeholder {
    transform: scale(1.1);
}

.alfajores-bg {
    background-image: url('https://images.unsplash.com/photo-1599598425947-33004bb657bc?ixlib=rb-4.0.3&auto=format&fit=crop&w=500&q=80');
}

.chocolates-bg {
    background-image: url('https://images.unsplash.com/photo-1549007994-cb92caebd54b?ixlib=rb-4.0.3&auto=format&fit=crop&w=500&q=80');
}

.espejos-bg {
    background-image: url('https://images.unsplash.com/photo-1618365908648-723d08599818?ixlib=rb-4.0.3&auto=format&fit=crop&w=500&q=80');
}

.product-info {
    background-color: var(--color-moss);
    width: 100%;
    padding: 0.8rem;
    border-radius: 10px;
    transition: background-color 0.3s ease;
}

.product-info h3 {
    color: var(--color-white);
    font-size: 1.4rem;
    font-weight: 600;
    letter-spacing: 1px;
}

.product-card:hover .product-info {
    background-color: var(--color-moss-dark);
}

/* Services Section */
.services-section {
    padding-bottom: 1.5rem;
    max-width: 1200px;
    margin: 0 auto;
}

.services-grid {
    display: flex;
    justify-content: center;
    gap: 2rem;
    flex-wrap: wrap;
    padding: 0 1rem;
}

.service-card {
    background: rgba(255, 255, 255, 0.4);
    border: 1px solid rgba(255, 255, 255, 0.6);
    border-radius: 15px;
    padding: 2rem;
    width: 300px;
    text-align: center;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
    transition: transform 0.3s;
}

.service-card:hover {
    transform: translateY(-5px);
}

.service-icon {
    font-size: 3rem;
    color: var(--color-moss);
    margin-bottom: 1rem;
}

.service-card h3 {
    color: var(--color-moss-dark);
    margin-bottom: 1rem;
}

/* About Section */
.about-section {
    max-width: 1000px;
    margin: 0 auto;
    padding-bottom: 2rem;
    padding-left: 1rem;
    padding-right: 1rem;
}

.about-container {
    display: flex;
    align-items: center;
    gap: 3rem;
    background: rgba(255, 255, 255, 0.5);
    padding: 3rem;
    border-radius: 20px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
}

.about-text {
    flex: 1;
}

.about-text p {
    font-size: 1.1rem;
    line-height: 1.6;
    margin-bottom: 1rem;
    color: var(--color-moss-dark);
}

.about-img {
    flex: 1;
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
}

.about-img img {
    width: 100%;
    height: auto;
    display: block;
    transition: transform 0.5s;
}

.about-img:hover img {
    transform: scale(1.05);
}

/* Info Section Content (Bottom) */
.info-section {
    padding: 2rem 1rem 2rem;
    position: relative;
    z-index: 10;
}

.footer-layout {
    display: flex;
    max-width: 1000px;
    margin: 0 auto;
    align-items: center;
    justify-content: center;
    gap: 4rem;
}

.info-content {
    flex: 0 1 auto;
    display: inline-flex;
    flex-direction: column;
    gap: 0.8rem;
    background: rgba(255, 255, 255, 0.4);
    backdrop-filter: blur(15px);
    border-radius: 20px;
    padding: 2rem 3rem;
    box-shadow: 0 10px 30px rgba(80, 106, 46, 0.1);
    color: var(--color-moss-dark);
    font-size: 1.2rem;
    border: 1px solid rgba(255, 255, 255, 0.6);
}

.footer-logo {
    flex: 0 0 200px;
    transition: transform 0.3s ease;
}

.footer-logo img {
    width: 100%;
    height: auto;
    filter: drop-shadow(0 10px 20px rgba(0, 0, 0, 0.1));
}

.footer-logo:hover {
    transform: scale(1.05);
}

.info-content p {
    margin: 0;
    font-weight: 800;
    letter-spacing: 0.5px;
}

.contact-btn {
    display: inline-block;
    background: var(--color-white);
    color: var(--color-moss);
    text-decoration: none;
    padding: 1rem 2rem;
    border-radius: 50px;
    font-size: 1.2rem;
    margin-top: 1rem;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
    border: 2px solid var(--color-lime);
}

.contact-btn:hover {
    background: var(--color-moss);
    color: var(--color-white);
    border-color: var(--color-moss);
    transform: translateY(-3px);
    box-shadow: 0 6px 20px rgba(80, 106, 46, 0.3);
}

.contact-btn i {
    margin: 0 5px;
    color: #25D366;
}

/* Modal Styling */
.modal-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.6);
    backdrop-filter: blur(5px);
    display: flex;
    justify-content: center;
    align-items: center;
    z-index: 2000;
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
}

.modal-overlay.active {
    opacity: 1;
    visibility: visible;
}

.modal-content {
    background: var(--color-white);
    padding: 2rem;
    border-radius: 20px;
    max-width: 800px;
    width: 90%;
    position: relative;
    transform: scale(0.9);
    transition: transform 0.3s ease;
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.2);
    border: 4px solid var(--color-lime);
}

.modal-overlay.active .modal-content {
    transform: scale(1);
}

.close-modal {
    position: absolute;
    top: 15px;
    right: 20px;
    background: none;
    border: none;
    font-size: 2rem;
    color: var(--color-moss);
    cursor: pointer;
}

.modal-body {
    display: flex;
    gap: 2rem;
    align-items: center;
}

.modal-img-wrapper {
    flex: 1;
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

.modal-img-wrapper img {
    width: 100%;
    height: auto;
    display: block;
}

.modal-details {
    flex: 1;
}

.modal-details h2 {
    color: var(--color-moss-dark);
    font-size: 2.5rem;
    margin-bottom: 1rem;
    font-family: 'Dancing Script', cursive;
}

.modal-description {
    font-size: 1.1rem;
    color: #555;
    line-height: 1.5;
    margin-bottom: 1.5rem;
}

.modal-price {
    font-size: 2rem;
    color: var(--color-moss);
    font-weight: 800;
    margin-bottom: 2rem;
}

.add-to-cart-btn {
    background: var(--color-moss);
    color: white;
    border: none;
    padding: 1rem 2rem;
    font-size: 1.2rem;
    border-radius: 50px;
    cursor: pointer;
    transition: all 0.3s ease;
    width: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 10px;
}

.add-to-cart-btn:hover {
    background: var(--color-moss-dark);
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(80, 106, 46, 0.4);
}

.sub-option {
    transition: all 0.3s ease;
}

.sub-option:hover {
    background: #f0f4e8 !important;
}

.sub-option input[type="radio"] {
    accent-color: var(--color-moss);
}

.quantity-controls button:active {
    background: #ccc !important;
}

.quantity-controls input::-webkit-outer-spin-button,
.quantity-controls input::-webkit-inner-spin-button {
    -webkit-appearance: none;
    margin: 0;
}

/* Shopping Cart Sidebar Sidebar*/
.cart-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.4);
    z-index: 100;
    display: none;
}

.cart-overlay.active {
    display: block;
    z-index: 1500;
}

.cart-sidebar {
    position: fixed;
    top: 0;
    right: -400px;
    width: 400px;
    max-width: 100%;
    height: 100vh;
    background: var(--color-white);
    box-shadow: -5px 0 15px rgba(0, 0, 0, 0.1);
    z-index: 1600;
    transition: right 0.4s ease;
    display: flex;
    flex-direction: column;
}

.cart-sidebar.active {
    right: 0;
}

.cart-header {
    padding: 1.5rem;
    background: var(--color-pistachio);
    color: var(--color-moss-dark);
    display: flex;
    justify-content: space-between;
    align-items: center;
    border-bottom: 2px solid var(--color-lime);
}

.close-btn {
    background: none;
    border: none;
    font-size: 1.5rem;
    color: var(--color-moss-dark);
    cursor: pointer;
}

.cart-items {
    padding: 1.5rem;
    flex: 1;
    overflow-y: auto;
}

.empty-cart-msg {
    text-align: center;
    color: #888;
    margin-top: 2rem;
    font-size: 1.1rem;
}

.cart-item {
    display: flex;
    align-items: center;
    gap: 1rem;
    padding-bottom: 1rem;
    margin-bottom: 1rem;
    border-bottom: 1px solid #eee;
}

.cart-item img {
    width: 60px;
    height: 60px;
    border-radius: 8px;
    object-fit: cover;
}

.cart-item-details {
    flex: 1;
}

.cart-item-title {
    font-weight: 600;
    color: var(--color-moss-dark);
    margin-bottom: 0.3rem;
}

.cart-item-price {
    color: var(--color-moss);
    font-weight: bold;
}

.remove-item {
    color: #ff4757;
    background: none;
    border: none;
    cursor: pointer;
    font-size: 1.2rem;
}

.cart-footer {
    padding: 1.5rem;
    background: #f9f9f9;
    border-top: 1px solid #eee;
}

.cart-total {
    display: flex;
    justify-content: space-between;
    font-size: 1.5rem;
    font-weight: 800;
    color: var(--color-moss-dark);
    margin-bottom: 1rem;
}

.checkout-btn {
    width: 100%;
    background: #25D366;
    /* WhatsApp Green */
    color: white;
    border: none;
    padding: 1rem;
    border-radius: 10px;
    font-size: 1.1rem;
    font-weight: bold;
    cursor: pointer;
    transition: background 0.3s;
}

.checkout-btn:hover {
    background: #1ebd5a;
}

/* SVGs Branches */
.branch {
    position: absolute;
    width: 150px;
    height: auto;
    opacity: 0.2;
    z-index: 1;
}

.branch-top-right {
    top: 50px;
    right: 20px;
    transform: rotate(45deg);
}

.branch-bottom-left {
    bottom: 50px;
    left: 20px;
    transform: rotate(-135deg);
}

/* Hero layout */
.hero-content {
    display: flex;
    max-width: 1200px;
    margin: 0 auto;
    align-items: center;
    gap: 2rem;
}

.hero-left {
    flex: 1;
    text-align: left;
}

.hero-desc {
    font-size: 1.2rem;
    line-height: 1.5;
    margin-top: 1.5rem;
    color: var(--color-moss-dark);
}

.hero-right {
    flex: 1;
}

.hero-img-wrapper {
    position: relative;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.1);
    transform: rotate(3deg);
    border: 5px solid white;
}

.hero-img-wrapper img,
.hero-img-wrapper video {
    width: 100%;
    height: auto;
    min-height: 300px;
    object-fit: cover;
    display: block;
}

.hero-img-wrapper video {
    background: #000;
}

/* Testimonials */
.testimonials-section {
    padding-bottom: 1rem;
    max-width: 1200px;
    margin: 0 auto;
}

.testimonials-grid {
    display: flex;
    justify-content: center;
    gap: 2rem;
    flex-wrap: wrap;
    padding: 0 1rem;
}

.testimonial-card {
    background: white;
    padding: 2rem;
    border-radius: 15px;
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.05);
    max-width: 350px;
    text-align: center;
    position: relative;
    border: 1px solid var(--color-pistachio);
}

.testimonial-card:before {
    content: '"';
    font-family: 'Dancing Script', cursive;
    font-size: 5rem;
    color: var(--color-lime);
    position: absolute;
    top: -10px;
    left: 20px;
    opacity: 0.5;
}

.testimonial-text {
    font-style: italic;
    font-size: 1.1rem;
    color: #555;
    margin-bottom: 1.5rem;
    position: relative;
    z-index: 2;
}

.testimonial-author {
    font-weight: 800;
    font-size: 1.2rem;
    color: var(--color-moss-dark);
}

/* Contact Pill */
.text-center {
    text-align: center;
}

.mt-3 {
    margin-top: 1.5rem;
}

.contact-pill-wrapper {
    display: flex;
    justify-content: center;
    margin-top: 1.5rem;
}

.contact-pill {
    display: inline-flex;
    align-items: center;
    background: white;
    color: var(--color-moss-dark);
    text-decoration: none;
    padding: 1rem 3rem;
    border-radius: 50px;
    font-size: 1.4rem;
    border: 3px solid var(--color-lime);
    box-shadow: 0 10px 20px rgba(80, 106, 46, 0.1);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.contact-pill:hover {
    transform: translateY(-3px);
    box-shadow: 0 15px 30px rgba(80, 106, 46, 0.2);
}

.wa-icon-inline {
    width: 28px;
    height: 28px;
    margin-right: 8px;
    vertical-align: middle;
}

/* Social and Address Styles */
.social-address-wrapper {
    margin-top: 2rem;
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
    align-items: center;
}

.insta-callout {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    background: linear-gradient(45deg, #f09433 0%, #e6683c 25%, #dc2743 50%, #cc2366 75%, #bc1888 100%);
    color: white;
    text-decoration: none;
    padding: 0.8rem 2rem;
    border-radius: 50px;
    font-weight: 600;
    font-size: 1.1rem;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(204, 35, 102, 0.3);
}

.insta-callout:hover {
    transform: scale(1.05);
    box-shadow: 0 6px 20px rgba(204, 35, 102, 0.4);
}

.address-info {
    font-size: 1.1rem;
    color: var(--color-moss-dark);
    display: flex;
    align-items: center;
    gap: 8px;
    font-weight: 500;
}

.address-info i {
    color: #e74c3c;
}

/* Floating WhatsApp */
.whatsapp-float {
    position: fixed;
    bottom: 30px;
    right: 30px;
    background-color: #25d366;
    color: white;
    width: 60px;
    height: 60px;
    border-radius: 50px;
    display: flex;
    justify-content: center;
    align-items: center;
    font-size: 30px;
    box-shadow: 0 10px 25px rgba(37, 211, 102, 0.3);
    z-index: 900;
    transition: all 0.3s ease;
    text-decoration: none;
    overflow: hidden;
}

.whatsapp-float span {
    max-width: 0;
    opacity: 0;
    white-space: nowrap;
    transition: all 0.5s ease;
    font-size: 16px;
    font-weight: 600;
    margin-left: 0;
}

.whatsapp-float:hover {
    width: 200px;
    box-shadow: 0 15px 30px rgba(37, 211, 102, 0.4);
}

.whatsapp-float:hover span {
    max-width: 200px;
    opacity: 1;
    margin-left: 10px;
}

/* Responsive adjustment for float */
@media (max-width: 768px) {
    .whatsapp-float {
        bottom: 20px;
        right: 20px;
        width: 50px;
        height: 50px;
        font-size: 24px;
    }

    .whatsapp-float:hover {
        width: 50px;
    }

    .whatsapp-float span {
        display: none;
    }
}

/* Responsive */
@media (max-width: 768px) {
    .hero-content {
        flex-direction: column;
        text-align: center;
    }

    .hero-left {
        text-align: center;
    }

    .hero-img-wrapper {
        margin-top: 2rem;
        transform: rotate(0);
    }

    .nav-links {
        display: none;
        /* simple hamburger fallback setup without full js dropdown */
        position: absolute;
        top: 100%;
        left: 0;
        width: 100%;
        background: white;
        flex-direction: column;
        text-align: center;
        padding: 1rem 0;
        box-shadow: 0 5px 10px rgba(0, 0, 0, 0.1);
    }

    .nav-links.active {
        display: flex;
    }

    .menu-toggle {
        display: block;
    }

    .nav-logo {
        max-width: 110px;
        max-height: 45px;
        top: 50%;
        transform: translateY(-50%);
    }

    .blob-1 {
        width: 80vw;
        height: 80vw;
    }

    .blob-2 {
        width: 90vw;
        height: 60vw;
    }

    .hero-title {
        font-size: 3rem;
    }

    .date-badge {
        font-size: 1.2rem;
    }

    .about-container {
        flex-direction: column;
        padding: 1.5rem;
    }

    .footer-layout {
        flex-direction: column;
        gap: 2rem;
    }

    .info-content {
        padding: 1.5rem;
        font-size: 1rem;
        width: 100%;
        max-width: 400px;
    }

    .footer-logo {
        flex: 0 0 150px;
        max-width: 150px;
    }

    .contact-btn {
        font-size: 1.1rem;
        padding: 0.8rem 1.5rem;
    }

    .modal-body {
        flex-direction: column;
    }
}