/* --- Root Variables and Global Styles --- */
:root {
    --primary: #fb2050;
    --secondary: #d4405d;
    --accent: #e90f30;
    --dark: #3a2e2f;
    --light: #fff9fa;
    --gold: #d4af37;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Poppins', sans-serif;
    background-color: var(--light);
    color: var(--dark);
    overflow-x: hidden;
}

h1, h2, h3, h4 {
    font-family: 'Playfair Display', serif;
    font-weight: 600;
}

/* --- Header Styles --- */
header {
    background: linear-gradient(135deg, var(--primary), var(--secondary));
    color: white;
    padding: 1rem 0;
    position: fixed;
    width: 100%;
    z-index: 1000;
    box-shadow: 0 4px 20px rgba(0,0,0,0.1);
    transition: all 0.3s ease;
}

header.scrolled {
    padding: 0.5rem 0;
    background: rgba(255,255,255,0.95);
    box-shadow: 0 4px 20px rgba(0,0,0,0.1);
}

header.scrolled .nav-link {
    color: var(--dark);
}

header.scrolled .logo {
    color: var(--primary);
}

.header-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 2rem;
}

.logo {
    font-family: 'Playfair Display', serif;
    font-size: 2rem;
    font-weight: 700;
    color: white;
    text-decoration: none;
    display: flex;
    align-items: center;
}

.logo i {
    margin-right: 0.5rem;
    font-size: 1.8rem;
}

nav ul {
    display: flex;
    list-style: none;
    align-items: center;
}

.nav-link {
    color: white;
    text-decoration: none;
    padding: 0.5rem 1.2rem;
    font-weight: 500;
    transition: all 0.3s ease;
    position: relative;
}

.nav-link:hover {
    color: var(--accent);
}

.nav-link.active {
    color: var(--gold);
    font-weight: 700;
}

.cta-button {
    background-color: white;
    color: var(--primary);
    padding: 0.6rem 1.5rem;
    border-radius: 30px;
    font-weight: 600;
    transition: all 0.3s ease;
    margin-left: 1rem;
    text-decoration: none;
}

.cta-button:hover {
    background-color: var(--accent);
    color: white;
    transform: translateY(-3px);
    box-shadow: 0 10px 20px rgba(0,0,0,0.1);
}

.mobile-menu {
    display: none;
    font-size: 1.5rem;
    cursor: pointer;
}

main {
    padding-top: 80px; /* Adjust based on your fixed header height */
}

/* --- Section Styles (General) --- */
.section {
    padding: 6rem 2rem;
}

.section-container {
    max-width: 1200px;
    margin: 0 auto;
}

.section-title {
    font-size: 2.5rem;
    margin-bottom: 1.5rem;
    color: var(--dark);
    position: relative;
    display: inline-block;
    padding-bottom: 10px;
}

.section-title::after {
    content: '';
    position: absolute;
    width: 60%;
    height: 4px;
    background: linear-gradient(to right, var(--primary), var(--secondary));
    bottom: 0;
    left: 0;
    border-radius: 2px;
}

.section-title.center {
    display: block;
    text-align: center;
}

.section-title.center::after {
    left: 50%;
    transform: translateX(-50%);
    width: 100px;
}

/* --- Hero Section --- */
.hero {
    height: 100vh;
    background: url('https://images.unsplash.com/photo-1578985545062-69928b1d9587?ixlib=rb-4.0.3&ixid=M3wxMjA3fDB8MHxwaG90by1wYWdlfHx8fGVufDB8fHx8fA%3D%3D&auto=format&fit=crop&w=1989&q=80') no-repeat center center/cover;
    display: flex;
    align-items: center;
    position: relative;
    padding-top: 0; /* Hero doesn't need top padding */
    margin-top: -80px; /* Overlap the header space */
}

.hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0,0,0,0.3);
}

.hero-content {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 2rem;
    position: relative;
    z-index: 1;
    color: white;
    animation: fadeInUp 1s ease;
}

.hero h1 {
    font-size: 4rem;
    margin-bottom: 1rem;
    line-height: 1.2;
    text-shadow: 2px 2px 4px rgba(0,0,0,0.3);
}

.hero p {
    font-size: 1.2rem;
    max-width: 600px;
    margin-bottom: 2rem;
    text-shadow: 1px 1px 2px rgba(0,0,0,0.3);
}

.hero-button {
    background-color: var(--primary);
    color: white;
    padding: 1rem 2rem;
    border-radius: 30px;
    font-weight: 600;
    text-decoration: none;
    display: inline-block;
    transition: all 0.3s ease;
    font-size: 1.1rem;
    box-shadow: 0 10px 20px rgba(0,0,0,0.2);
}

.hero-button:hover {
    background-color: white;
    color: var(--primary);
    transform: translateY(-5px);
    box-shadow: 0 15px 30px rgba(0,0,0,0.3);
}

/* --- About Section --- */
.about {
    background-color: white;
}

.about-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
}

.about-content p {
    margin-bottom: 1.5rem;
    line-height: 1.8;
    color: #555;
}

.about-image {
    position: relative;
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 20px 40px rgba(0,0,0,0.1);
    transform: rotate(-3deg);
    transition: all 0.5s ease;
     max-height: 450px; /* You can adjust this value (e.g., 400px, 500px) */
}

.about-image:hover {
    transform: rotate(0deg);
}

.about-image img {
    width: 100%;
    height: 100%;
    display: block;
    transition: transform 0.5s ease;
}

.about-image:hover img {
    transform: scale(1.05);
}

/* --- Products Section --- */
.products {
    background-color: var(--light);
}

.product-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    margin-top: 3rem;
}

.product-card {
    background: white;
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0,0,0,0.05);
    transition: all 0.3s ease;
    position: relative;
    display: flex;
    flex-direction: column;
}

.product-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 40px rgba(0,0,0,0.1);
}

.product-image {
    height: 250px;
    overflow: hidden;
}

.product-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.product-card:hover .product-image img {
    transform: scale(1.1);
}

.product-info {
    padding: 1.5rem;
    text-align: left;
    flex-grow: 1;
    display: flex;
    flex-direction: column;
}

.product-info h3 {
    font-size: 1.3rem;
    margin-bottom: 0.5rem;
    color: var(--dark);
}

.product-info p {
    color: #777;
    margin-bottom: 1rem;
    line-height: 1.6;
    flex-grow: 1;
}

.product-price {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-top: 1rem;
}

.price {
    font-weight: 700;
    color: var(--primary);
    font-size: 1.2rem;
}
/* --- Add this to your style.css inside the Products Section --- */

/* Style for the "Order Now" button on the PRODUCT CARD */
.product-card .order-now-btn {
    background-color: var(--primary); /* Your theme's main pink color */
    color: white;
    border: none;
    padding: 0.6rem 1.3rem; /* Small padding for a compact button */
    border-radius: 30px;      /* This creates the pill shape */
    font-weight: 600;
    font-size: 0.9rem;
    cursor: pointer;
    transition: all 0.3s ease;
    width: auto; /* IMPORTANT: This prevents it from becoming full-width */
    display: inline-block; /* Ensures it behaves like a standard button */
}

/* Hover effect for the product card button */
.product-card .order-now-btn:hover {
    background-color: var(--dark); /* Changes to dark color on hover */
    transform: translateY(-2px);
    box-shadow: 0 4px 10px rgba(0,0,0,0.1);
}
.order-now {
    background-color: var(--primary);
    color: white;
    border: none;
    padding: 0.5rem 1.2rem;
    border-radius: 30px;
    cursor: pointer;
    transition: all 0.3s ease;
    font-weight: 500;
    text-decoration: none;
    display: inline-block;
}

.order-now:hover {
    background-color: var(--dark);
    transform: translateY(-2px);
}

.product-badge {
    position: absolute;
    top: 15px;
    right: 15px;
    background-color: var(--gold);
    color: white;
    padding: 0.3rem 0.8rem;
    border-radius: 30px;
    font-size: 0.8rem;
    font-weight: 600;
    box-shadow: 0 4px 10px rgba(0,0,0,0.1);
}

/* --- Services Section --- */
.services {
    background: linear-gradient(135deg, var(--primary), var(--secondary));
    color: white;
}

.services .section-title {
    color: white;
}

.services .section-title::after {
    background: white;
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    margin-top: 3rem;
}

.service-card {
    background: rgba(255,255,255,0.1);
    backdrop-filter: blur(10px);
    border-radius: 15px;
    padding: 2rem;
    transition: all 0.3s ease;
    border: 1px solid rgba(255,255,255,0.2);
}

.service-card:hover {
    transform: translateY(-10px);
    background: rgba(255,255,255,0.2);
    box-shadow: 0 15px 30px rgba(0,0,0,0.2);
}

.service-icon {
    font-size: 3rem;
    margin-bottom: 1.5rem;
    color: white;
}

.service-card h3 {
    font-size: 1.5rem;
    margin-bottom: 1rem;
}

.service-card p {
    line-height: 1.8;
    opacity: 0.9;
}

/* --- Testimonials Section --- */
.testimonials {
    background-color: white;
}

.testimonial-slider {
    max-width: 800px;
    margin: 3rem auto 0;
    position: relative;
    background: var(--light);
    padding: 2.5rem;
    border-radius: 15px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.05);
}

.testimonial:before {
    content: '\201C';
    font-family: Georgia, serif;
    font-size: 4rem;
    color: var(--secondary);
    position: absolute;
    top: 1rem;
    left: 1rem;
    opacity: 0.3;
}

.testimonial-content {
    font-style: italic;
    line-height: 1.8;
    margin-bottom: 1.5rem;
    position: relative;
    z-index: 1;
}

.testimonial-author {
    display: flex;
    align-items: center;
    justify-content: center;
}

.author-image {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    overflow: hidden;
    margin-right: 1rem;
}

.author-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.author-info h4 {
    margin-bottom: 0.3rem;
    font-size: 1.1rem;
}

.author-info p {
    color: #777;
    font-size: 0.9rem;
}

.testimonial-rating {
    color: var(--gold);
    margin-top: 0.5rem;
}


/* --- Gallery Section --- */
.gallery {
    background-color: var(--light);
}

.gallery-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 1rem;
    margin-top: 3rem;
}

.gallery-item {
    position: relative;
    border-radius: 10px;
    overflow: hidden;
    height: 250px;
    transition: all 0.3s ease;
}

.gallery-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.gallery-item:hover {
    transform: scale(1.03);
    box-shadow: 0 15px 30px rgba(0,0,0,0.1);
}

.gallery-item:hover img {
    transform: scale(1.1);
}

.gallery-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(251, 32, 80, 0.7);
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.gallery-item:hover .gallery-overlay {
    opacity: 1;
}

.gallery-overlay i {
    color: white;
    font-size: 2rem;
}

/* --- Contact Section --- */
.contact {
    background-color: white;
}

.contact-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
}

.contact-info h3 {
    font-size: 1.5rem;
    margin-bottom: 1.5rem;
    color: var(--dark);
}

.contact-detail {
    display: flex;
    align-items: flex-start;
    margin-bottom: 1.5rem;
}

.contact-icon {
    font-size: 1.5rem;
    color: var(--primary);
    margin-right: 1rem;
    margin-top: 0.3rem;
    width: 25px;
    text-align: center;
}

.contact-text h4 {
    font-size: 1.1rem;
    margin-bottom: 0.3rem;
}

.contact-text p, .contact-text a {
    color: #555;
    text-decoration: none;
    transition: color 0.3s ease;
}

.contact-text a:hover {
    color: var(--primary);
}

.social-links {
    display: flex;
    margin-top: 1rem;
}

.social-links a {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    background-color: var(--primary);
    color: white;
    border-radius: 50%;
    margin-right: 1rem;
    transition: all 0.3s ease;
    text-decoration: none;
}

.social-links a:hover {
    background-color: var(--dark);
    transform: translateY(-3px);
}

.contact-form {
    background: var(--light);
    padding: 2rem;
    border-radius: 15px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.05);
}

.form-group {
    margin-bottom: 1.5rem;
}

.form-group label {
    display: block;
    margin-bottom: 0.5rem;
    font-weight: 500;
    color: var(--dark);
}

.form-control {
    width: 100%;
    padding: 0.8rem 1rem;
    border: 1px solid #ddd;
    border-radius: 8px;
    font-family: 'Poppins', sans-serif;
    transition: all 0.3s ease;
}

.form-control:focus {
    outline: none;
    border-color: var(--primary);
    box-shadow: 0 0 0 3px rgba(251, 32, 80, 0.2);
}

textarea.form-control {
   
    resize: vertical;
}

.submit-btn {
    background-color: var(--primary);
    color: white;
    border: none;
    padding: 1rem 2rem;
    border-radius: 30px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    width: 100%;
    font-size: 1rem;
}

.submit-btn:hover {
    background-color: var(--dark);
    transform: translateY(-3px);
    box-shadow: 0 10px 20px rgba(0,0,0,0.1);
}

/* --- Custom Cake Section --- */
.custom-cake {
    background-color: white;
}

.custom-cake-container {
    max-width: 1000px;
    margin: 0 auto;
    background-color: var(--light);
    border-radius: 15px;
    padding: 3rem;
    box-shadow: 0 10px 30px rgba(0,0,0,0.05);
    margin-top: 3rem;
}

.custom-steps {
    display: flex;
    justify-content: space-between;
    margin-bottom: 2rem;
    position: relative;
}

.custom-steps::before {
    content: '';
    position: absolute;
    top: 20px;
    left: 0;
    right: 0;
    height: 2px;
    background-color: #ddd;
    z-index: 1;
}

.step {
    text-align: center;
    position: relative;
    z-index: 2;
    background-color: var(--light);
    padding: 0 1rem;
}

.step-number {
    width: 40px;
    height: 40px;
    background-color: #ccc;
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 0.5rem;
    font-weight: 600;
    transition: background-color 0.3s ease;
}

.step.active .step-number {
    background-color: var(--primary);
}

.step-title {
    font-weight: 500;
}

.custom-form {
    display: none;
}

.custom-form.active {
    display: block;
    animation: fadeIn 0.5s ease;
}

.form-navigation {
    display: flex;
    justify-content: space-between;
    margin-top: 2rem;
}

.prev-btn, .next-btn {
    background-color: var(--primary);
    color: white;
    border: none;
    padding: 0.8rem 1.5rem;
    border-radius: 30px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
}

.prev-btn {
    background-color: #ddd;
    color: var(--dark);
}

.prev-btn:disabled {
    background-color: #eee;
    cursor: not-allowed;
}

.prev-btn:hover:not(:disabled) {
    background-color: #ccc;
}

.next-btn:hover {
    background-color: var(--dark);
}

.size-options, .flavor-options, .type-options, .filling-options {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(150px, 1fr));
    gap: 1rem;
    margin-top: 1rem;
}

.size-options, .flavor-options, .type-options, .filling-options { 
    border: 2px solid #ddd;
    border-radius: 8px;
    padding: 1rem;
    cursor: pointer;
    transition: all 0.3s ease;
    text-align: center;
    background-color: white;
}

.size-option:hover, .flavor-option:hover {
    border-color: var(--primary);
}

.size-option.selected, .flavor-option.selected {
    border-color: var(--primary);
    background-color: #fff0f3;
}

.size-option input, .flavor-option input {
    display: none;
}

.size-option label, .flavor-option label {
    cursor: pointer;
    margin-bottom: 0;
}

.order-summary {
    background-color: white;
    padding: 1.5rem;
    border-radius: 8px;
    border: 1px solid #ddd;
}

.summary-item {
    display: flex;
    justify-content: space-between;
    padding: 0.5rem 0;
    border-bottom: 1px solid #eee;
}

.summary-item span {
    text-align: right;
    color: #555;
}

.summary-total {
    display: flex;
    justify-content: space-between;
    padding-top: 1rem;
    font-size: 1.2rem;
    font-weight: 700;
}


/* --- Footer --- */
footer {
    background-color: var(--dark);
    color: white;
    padding: 4rem 2rem 2rem;
}

.footer-container {
    max-width: 1200px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 3rem;
}

.footer-logo {
    font-family: 'Playfair Display', serif;
    font-size: 2rem;
    font-weight: 700;
    color: white;
    margin-bottom: 1.5rem;
    display: inline-block;
    text-decoration: none;
}

.footer-about p {
    line-height: 1.8;
    margin-bottom: 1.5rem;
    opacity: 0.8;
}

.footer-links h3, .footer-newsletter h3 {
    font-size: 1.3rem;
    margin-bottom: 1.5rem;
    position: relative;
    padding-bottom: 0.5rem;
}

.footer-links h3::after, .footer-newsletter h3::after {
    content: '';
    position: absolute;
    width: 50px;
    height: 3px;
    background: var(--primary);
    bottom: 0;
    left: 0;
}

.footer-links ul {
    list-style: none;
}

.footer-links li {
    margin-bottom: 0.8rem;
}

.footer-links a {
    color: rgba(255,255,255,0.8);
    text-decoration: none;
    transition: all 0.3s ease;
    display: inline-block;
}

.footer-links a:hover {
    color: var(--primary);
    transform: translateX(5px);
}

.newsletter-form {
    display: flex;
    margin-bottom: 1.5rem;
}

.newsletter-input {
    flex: 1;
    padding: 0.8rem 1rem;
    border: none;
    border-radius: 30px 0 0 30px;
    font-family: 'Poppins', sans-serif;
}

.newsletter-input:focus {
    outline: none;
}

.newsletter-btn {
    background-color: var(--primary);
    color: white;
    border: none;
    padding: 0 1.5rem;
    border-radius: 0 30px 30px 0;
    cursor: pointer;
    transition: all 0.3s ease;
}

.newsletter-btn:hover {
    background-color: var(--secondary);
}

.footer-bottom {
    text-align: center;
    padding-top: 3rem;
    margin-top: 3rem;
    border-top: 1px solid rgba(255,255,255,0.1);
    opacity: 0.7;
    font-size: 0.9rem;
}

.footer-bottom a {
    color: rgba(255,255,255,0.8);
    text-decoration: none;
}
.footer-bottom a:hover {
    color: var(--primary);
}

/* --- Animations --- */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes fadeIn {
    from {
        opacity: 0;
    }
    to {
        opacity: 1;
    }
}

/* --- Responsive Styles --- */
@media (max-width: 992px) {
    .about-grid, .contact-grid {
        grid-template-columns: 1fr;
        gap: 3rem;
    }
    .about-image {
        order: -1;
    }
    .hero h1 {
        font-size: 3rem;
    }
    .custom-cake-container {
        padding: 2rem;
    }
}

@media (max-width: 768px) {
    nav ul {
        display: none;
        flex-direction: column;
        position: absolute;
        top: 100%;
        left: 0;
        width: 100%;
        background-color: white;
        padding: 1rem 0;
        box-shadow: 0 10px 20px rgba(0,0,0,0.1);
    }
    nav ul.active {
        display: flex;
    }
    nav li {
        width: 100%;
        text-align: center;
    }
    .nav-link {
        color: var(--dark);
        display: block;
        padding: 1rem;
    }
    .cta-button {
        margin: 1rem auto 0;
    }
    .mobile-menu {
        display: block;
        color: white; /* Ensure it's visible on transparent header */
    }
    header.scrolled .mobile-menu {
        color: var(--dark);
    }
    .hero h1 {
        font-size: 2.5rem;
    }
    .hero p {
        font-size: 1rem;
    }
    .section-title {
        font-size: 2rem;
    }
    .custom-steps {
        flex-direction: column;
        align-items: flex-start;
        gap: 1.5rem;
    }
    .custom-steps::before {
        left: 20px;
        top: 0;
        bottom: 0;
        width: 2px;
        height: 100%;
    }
    .step {
        display: flex;
        align-items: center;
        text-align: left;
        width: 100%;
        padding: 0;
    }
    .step-number {
        margin: 0 1rem 0 0;
    }
}

@media (max-width: 576px) {
    .header-container {
        padding: 0 1rem;
    }
    .section {
        padding: 4rem 1rem;
    }
    .hero h1 {
        font-size: 2.2rem;
    }
    .hero-button {
        padding: 0.8rem 1.5rem;
        font-size: 1rem;
    }
    .product-grid, .services-grid, .gallery-grid {
        grid-template-columns: 1fr;
    }
    .size-options, .flavor-options {
        grid-template-columns: 1fr 1fr;
    }
}
/* --- Add this to your ../css/style.css (REPLACE your old modal CSS) --- */

/* --- Order Modal Styles --- */

.order-modal {
    display: none; /* Hides the modal by default */
    position: fixed;
    z-index: 2000;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0,0,0,0.6);
    justify-content: center;
    align-items: center;
    padding: 1rem;
}

.order-modal.active {
    display: flex; /* Shows the modal when JS adds the 'active' class */
}
    
.modal-content {
    background-color: white;
    margin: auto;
    border-radius: 15px;
    box-shadow: 0 20px 50px rgba(0,0,0,0.3);
    width: 100%;
    animation: fadeInUp 0.5s ease;
    overflow: hidden;
    max-width: 440px;      
    max-height: 90vh;      
    display: flex;
    flex-direction: column;
}

.modal-header {
    background: linear-gradient(135deg, var(--primary), var(--secondary));
    color: white;
    padding: 1.2rem 1.5rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-shrink: 0; 
}

.modal-body {
    padding: 1.5rem 2rem;
    overflow-y: auto;
}

/* =================================================================== */
/* ===== START: MERGED CODE FOR VEG/NON-VEG RADIO BUTTONS ===== */
/* =================================================================== */

/* Style the container for the radio buttons */
.type-options {
    display: flex;
    gap: 15px; /* Adds space between the Veg and Non-Veg options */
    margin-top: 8px;
}

/* Style each individual option's container */
.type-option {
    flex-grow: 1; /* Makes both options take up equal space */
}

/* Hide the actual radio button circle */
.type-option input[type="radio"] {
    display: none;
}

/* Style the label to be the clickable element */
.type-option label {
    display: block;
    padding: 12px;
    border: 1px solid #ddd; /* Match .form-control border */
    border-radius: 8px;      /* Match .form-control border-radius */
    text-align: center;
    cursor: pointer;
    transition: all 0.2s ease-in-out;
    font-weight: 500;
}

/* Style the label when the user hovers over it */
.type-option label:hover {
    border-color: var(--secondary);
    background-color: #fef5f7; /* A very light version of your primary color */
}

/* Style the label when its corresponding radio button is selected */
.type-option input[type="radio"]:checked + label {
    background-color: var(--primary); /* Use your primary theme color */
    color: white;
    border-color: var(--primary); /* Match the background color */
}
/* =================================================================== */
/* ===== END: MERGED CODE FOR VEG/NON-VEG RADIO BUTTONS ===== */
/* =================================================================== */


.floating-action-buttons {
    position: fixed; /* Keeps it on the screen when scrolling */
    right: 20px;
    top: 50%;
    transform: translateY(-50%); /* Centers it vertically */
    z-index: 1000; /* Ensures it's on top of other content */
    display: flex;
    flex-direction: column;
    gap: 10px; /* Space between the buttons */
}

.floating-btn {
    display: flex;
    align-items: center;
    justify-content: center;
    background-color: #e83e8c; /* A nice pink, matching your theme */
    color: #fff;
    text-decoration: none;
    border-radius: 50px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.2);
    transition: all 0.3s ease;
    position: relative;
}

.floating-btn:hover {
    transform: scale(1.1);
    box-shadow: 0 6px 16px rgba(0, 0, 0, 0.3);
}

/* Specific style for the "Order Now" button */
.order-now-float {
    padding: 10px 20px 10px 15px; /* More padding for text */
}
.order-now-float i {
    margin-right: 8px;
}

/* Specific style for the smaller Facebook button */
.facebook-float {
    width: 45px;
    height: 45px;
    font-size: 1.2rem;
    align-self: flex-end; /* Aligns it to the right */
}

/* The close button on the "Order Now" icon */
.close-float-btn {
    position: absolute;
    top: -8px;
    right: -5px;
    background-color: #333;
    color: #fff;
    border: 2px solid #fff;
    border-radius: 50%;
    width: 24px;
    height: 24px;
    font-size: 16px;
    line-height: 20px;
    text-align: center;
    cursor: pointer;
    opacity: 0; /* Hidden by default */
    transition: opacity 0.3s ease;
}

/* Show the close button on hover */
.order-now-float:hover .close-float-btn {
    opacity: 1;
}

/* A class to hide the button when closed */
.floating-btn.hidden {
    display: none;
}
/* --- Add this to your style.css file --- */

/* --- Owner Message Section --- */
.owner-message-section {
    background-color: white; /* A clean background to make the card pop */
}

.owner-card {
    max-width: 800px;
    margin: 3rem auto 0;
    background: var(--light);
    border-radius: 15px;
    padding: 2.5rem;
    box-shadow: 0 15px 40px rgba(0,0,0,0.07);
    display: flex;
    align-items: center;
    gap: 2.5rem;
    position: relative;
}

.owner-photo {
    width: 150px;
    height: 150px;
    border-radius: 50%;
    overflow: hidden;
    flex-shrink: 0; /* Prevents the image from shrinking */
    border: 6px solid white;
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
}

.owner-photo img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.owner-message blockquote {
    font-size: 1.1rem;
    font-style: italic;
    line-height: 1.8;
    color: #555;
    margin: 0 0 1.5rem 0;
    border-left: 3px solid var(--primary);
    padding-left: 1.5rem;
    position: relative;
}

.owner-signature h4 {
    font-family: 'Playfair Display', serif;
    font-size: 1.4rem;
    color: var(--dark);
    margin: 0;
}

.owner-signature p {
    color: var(--secondary);
    margin: 0;
    font-weight: 500;
}

/* Responsive styles for the owner message section */
@media (max-width: 768px) {
    .owner-card {
        flex-direction: column;
        text-align: center;
        padding: 2rem;
        gap: 2rem;
    }

    .owner-message blockquote {
        border-left: none;
        padding-left: 0;
        text-align: center;
    }
}

body.home-page main {
    padding-top: 0 !important;
}

body.home-page .hero {
    margin-top: 0 !important;
}
/* FILE: ../css/style.css */
/* --- ADD THIS NEW CODE BLOCK TO THE END OF THE FILE --- */

/* --- Full-Width Map Section on Contact Page --- */

.map-section {
    background-color: white; /* Or var(--light) to match other sections */
    padding-top: 4rem; /* Adjust spacing as needed */
}

/* This is the container for the map iframe */
.map-container-full {
    width: 100%;
    height: 450px; /* A good height for a full-width map */
    margin-top: 3rem; /* Space below the "Find Our Bakery" title */
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 15px 40px rgba(0,0,0,0.1);
}

.map-container-full iframe {
    width: 100%;
    height: 100%;
    border: none;
}
/* FILE: css/style.css */
/* --- ADD THIS NEW CODE BLOCK TO THE END --- */

/* --- AJAX Form Status Message Styles --- */
#form-status-message {
    padding: 1rem;
    margin-bottom: 1.5rem;
    border-radius: 8px;
    text-align: center;
    font-weight: 500;
    display: none; /* Hidden by default */
}

/* Style for the success message */
#form-status-message.success {
    background-color: #e8f5e9; /* Light green */
    color: #2e7d32; /* Dark green */
    border: 1px solid #a5d6a7;
    display: block; /* Make it visible */
}

/* Style for an error message */
#form-status-message.error {
    background-color: #ffebee; /* Light red */
    color: #c62828; /* Dark red */
    border: 1px solid #ef9a9a;
    display: block; /* Make it visible */
}



/* --- Add this to the end of your css/style.css file --- */

.delivery-charge-note {
    font-size: 0.9rem;
    color: #555;
    font-style: italic;
    text-align: center;
    margin-top: 15px;      /* Adds space above the note */
    margin-bottom: 20px;   /* Adds space below the note, before the button */
    padding: 12px;
    background-color: var(--light); /* Uses your theme's light background color */
    border-radius: 8px;
    border: 1px dashed var(--secondary); /* A subtle dashed border */
}

.delivery-charge-note i {
    margin-right: 8px;
    color: var(--primary); /* Uses your theme's primary pink for the icon */
}
