/*
Theme Name: Austro Pro
Description: A professional WordPress theme for Austro-Pro Bakery products.
Version: 1.0.0
Author: Austro-Pro Team
License: GPL v2 or later
License URI: https://www.gnu.org/licenses/gpl-2.0.html
Text Domain: austro-pro
*/

/* Reset and base styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Poppins', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
    line-height: 1.6;
    color: var(--pantone-black);
    background-color: var(--pantone-white);
}

/* Container */
.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* Skip Link */
.skip-link {
    position: absolute;
    left: -9999px;
}

.skip-link:focus {
    position: absolute;
    left: 6px;
    top: 7px;
    z-index: 999999;
}

/* Header Styles */
:root {
    --navbar-height: 80px;
    --pantone-red: #DA291C;
    --pantone-white: #FFFFFF;
    --pantone-black: #000000;
    --pantone-brown: #4A3424;
}

.site-header {
    background-color: var(--pantone-red);
    color: var(--pantone-white);
    top: 0;
    width: 100%;
    z-index: 1000;
    transition: background-color 0.3s ease, box-shadow 0.3s ease;
}

.site-header.normal-header {
    position: sticky;
    box-shadow: 0 2px 10px rgba(0,0,0,0.1);
}

.site-header.is-transparent {
    position: absolute;
    background-color: transparent;
    box-shadow: none;
}

.site-header.is-scrolled {
    position: fixed;
    background-color: var(--pantone-red);
    box-shadow: 0 2px 10px rgba(0,0,0,0.1);
}

.header-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1rem 0;
    min-height: var(--navbar-height);
}

.site-branding .logo {
    text-align: left;
}

.site-title {
    font-size: 1.8rem;
    font-weight: 700;
    margin: 0;
}

.site-title a {
    color: white;
    text-decoration: none;
    letter-spacing: 1px;
}

.site-tagline {
    font-size: 0.85rem;
    color: rgba(255,255,255,0.9);
    margin: 0;
    font-weight: 300;
}

/* Navigation Styles */
.main-navigation {
    display: flex;
    align-items: center;
    gap: 2rem;
}

.nav-menu {
    display: flex;
    align-items: center;
    gap: 2rem;
}

.menu {
    display: flex;
    list-style: none;
    gap: 2rem;
    margin: 0;
    padding: 0;
}

.menu-item {
    position: relative;
}

.menu-item a {
    color: white;
    text-decoration: none;
    font-weight: 500;
    padding: 0.5rem 1rem;
    transition: all 0.3s ease;
    border-radius: 4px;
}

.menu-item a:hover {
    background-color: rgba(255,255,255,0.1);
}

/* Dropdown Menu */
.has-dropdown .dropdown-menu {
    position: absolute;
    top: 100%;
    left: 0;
    background-color: white;
    min-width: 200px;
    box-shadow: 0 4px 20px rgba(0,0,0,0.1);
    border-radius: 8px;
    opacity: 0;
    visibility: hidden;
    transform: translateY(-10px);
    transition: all 0.3s ease;
    z-index: 1001;
    list-style: none;
    padding: 0.5rem 0;
    margin: 0;
}

.has-dropdown:hover .dropdown-menu {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.dropdown-menu li a {
    color: #333;
    padding: 0.75rem 1.5rem;
    display: block;
    font-weight: 400;
    border-radius: 0;
}

.dropdown-menu li a:hover {
    background-color: #f3f4f6;
    color: #dc2626;
}

/* Language Selector */
.language-selector select {
    background-color: rgba(255,255,255,0.1);
    color: white;
    border: 1px solid rgba(255,255,255,0.3);
    padding: 0.5rem;
    border-radius: 4px;
    font-weight: 500;
}

/* Mobile Menu Toggle */
.menu-toggle {
    display: none;
    background: none;
    border: none;
    color: white;
    font-size: 1.5rem;
    cursor: pointer;
    flex-direction: column;
    gap: 4px;
    padding: 8px;
}

.menu-toggle span {
    width: 25px;
    height: 3px;
    background-color: white;
    transition: all 0.3s ease;
}

/* Hero Section */
.hero-section {
    background: linear-gradient(135deg, #f9fafb 0%, #f3f4f6 100%);
    padding: 4rem 0;
    overflow: hidden;
}

/* Fullscreen Hero Styles */
.fullscreen-hero {
    position: relative;
    width: 100%;
    aspect-ratio: 16 / 9;
    min-height: 500px;
    height: auto;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 0;
    overflow: hidden;
}

.hero-background {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
}

.hero-bg-image,
.hero-bg-video {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(0, 0, 0, 0.5) 0%, rgba(0, 0, 0, 0.3) 100%);
    z-index: 2;
}

.fullscreen-hero-content {
    position: relative;
    z-index: 3;
    text-align: center;
    color: white;
    max-width: 900px;
    margin: 0 auto;
    padding: 2rem;
}

.fullscreen-hero .hero-title {
    color: #dc2626;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
    margin-bottom: 1.5rem;
}

.fullscreen-hero .hero-tagline {
    color: rgba(255, 255, 255, 0.95);
    text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.3);
}

.fullscreen-hero .hero-description,
.fullscreen-hero .hero-text {
    color: rgba(255, 255, 255, 0.95);
    text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.3);
}

.fullscreen-hero.hero-section {
    background: transparent;
    padding: 0;
}

.fullscreen-hero-content {
    display: block !important;
    grid-template-columns: none !important;
    gap: 0 !important;
}

.fullscreen-hero .btn-secondary {
    background-color: rgba(255, 255, 255, 0.2);
    color: white;
    border-color: white;
    backdrop-filter: blur(10px);
}

.fullscreen-hero .btn-secondary:hover {
    background-color: white;
    color: #dc2626;
    border-color: white;
}

.hero-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
    align-items: center;
}

.hero-title {
    font-size: 3.5rem;
    font-weight: 700;
    color: #dc2626;
    margin-bottom: 0.5rem;
    letter-spacing: 2px;
}

.hero-tagline {
    font-size: 1.2rem;
    color: #6b7280;
    margin-bottom: 1.5rem;
    font-weight: 400;
}

.hero-description {
    font-size: 1.4rem;
    line-height: 1.7;
    color: #4b5563;
    margin-bottom: 2rem;
}

.hero-buttons {
    display: flex;
    gap: 1rem;
    justify-content: center;
}

.btn {
    display: inline-block;
    padding: 1rem 2rem;
    border-radius: 8px;
    text-decoration: none;
    font-weight: 600;
    text-align: center;
    transition: all 0.3s ease;
    border: 2px solid transparent;
}

.btn-primary {
    background-color: var(--pantone-red);
    color: var(--pantone-white);
    border-color: var(--pantone-red);
}

.btn-primary:hover {
    background-color: var(--pantone-black);
    border-color: var(--pantone-black);
    transform: translateY(-2px);
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.3);
}

.btn-secondary {
    background-color: transparent;
    color: var(--pantone-red);
    border-color: var(--pantone-red);
}

.btn-secondary:hover {
    background-color: var(--pantone-red);
    color: var(--pantone-white);
    transform: translateY(-2px);
}

.btn-large {
    padding: 1.25rem 2.5rem;
    font-size: 1.1rem;
}

.hero-image img,
.hero-image {
    width: 100%;
    height: auto;
    border-radius: 16px;
    box-shadow: 0 20px 40px rgba(0,0,0,0.1);
    display: block;
}

.hero-image-container img,
.oem-hero-image img {
    box-shadow: 0 20px 40px rgba(0,0,0,0.1);
    transition: transform 0.3s ease;
}

.hero-image-container img:hover,
.oem-hero-image img:hover {
    transform: scale(1.02);
}

/* We Design Delicious Section */
.design-delicious-section {
    padding: 6rem 0;
    background-color: #ffffff;
    overflow: hidden;
}

.design-delicious-container {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
}

/* Left side visual */
.dd-visual {
    position: relative;
    padding: 2rem 2rem 2rem 0;
    width: 100%;
}

.dd-visual-accent {
    position: absolute;
    bottom: 0;
    left: -2rem;
    width: 65%;
    height: 85%;
    border: 12px solid #d1d5db; /* Gray border accent */
    z-index: 1;
}

.dd-main-image {
    position: relative;
    width: 90%;
    height: auto;
    object-fit: cover;
    z-index: 2;
    aspect-ratio: 4 / 3;
    display: block;
}

.dd-quote-box {
    position: absolute;
    bottom: 10%;
    right: 0;
    background-color: #fff9f6;
    padding: 2.5rem 2rem;
    width: 55%;
    z-index: 3;
    box-shadow: 0 10px 30px rgba(0,0,0,0.08);
    text-align: center;
}

.dd-quote-icon {
    font-size: 3rem;
    color: #9c6c59;
    line-height: 1;
    margin-bottom: 0.5rem;
    font-family: Georgia, serif;
}

.dd-quote-text {
    font-size: 1rem;
    font-style: italic;
    color: #78716c;
    margin-bottom: 1rem;
    line-height: 1.6;
}

.dd-quote-author {
    color: #9c6c59;
    font-weight: 600;
    font-size: 1rem;
    margin: 0;
}

/* Right side content */
.dd-content {
    padding-left: 1rem;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.dd-title {
    font-size: 3rem;
    color: #4a1c2a; /* maroon */
    margin-bottom: 1.5rem;
    font-weight: 700;
}

.dd-title-accent {
    color: var(--pantone-red, #dc2626);
    font-style: italic;
    font-family: Georgia, "Times New Roman", serif;
    font-weight: 700;
}

.dd-desc {
    color: #6b7280;
    line-height: 1.7;
    margin-bottom: 2rem;
    font-size: 1.05rem;
}

.dd-list {
    list-style: none;
    padding: 0;
    margin: 0 0 2.5rem 0;
}

.dd-list li {
    display: flex;
    align-items: flex-start;
    margin-bottom: 1rem;
    color: #4b5563;
    font-size: 1.05rem;
    line-height: 1.6;
}

.dd-list-icon {
    color: #1f2937;
    font-weight: bold;
    font-size: 1.2rem;
    margin-right: 1rem;
    margin-top: -2px;
}

/* Actions */
.dd-actions {
    display: flex;
    align-items: flex-end;
    flex-wrap: wrap;
    gap: 1.5rem;
    margin-top: 1rem;
}

.dd-discover-btn {
    background-color: #e57352; /* coral button matching image */
    color: white;
    padding: 0.8rem 1.8rem;
    font-weight: 500;
    transition: background-color 0.2s;
    border: none;
    border-radius: 0;
}

.dd-discover-btn:hover {
    background-color: #d15636;
    color: white;
}
/* Responsive adjustments for new section */
@media (max-width: 992px) {
    .design-delicious-container {
        grid-template-columns: 1fr;
        gap: 3rem;
    }

    .dd-visual {
        padding: 1rem 1rem 1rem 0;
    }
}

@media (max-width: 576px) {
    .dd-quote-box {
        width: 80%;
        padding: 1.5rem;
        bottom: 5%;
    }
}

/* Home Product Slideshow */
.home-product-slideshow {
    position: relative;
    height: 600px;
    width: 100%;
    overflow: hidden;
}

.h-slides-wrapper {
    position: relative;
    width: 100%;
    height: 100%;
}

.h-slide {
    position: absolute;
    top: 0; left: 0; width: 100%; height: 100%;
    background-size: cover;
    background-position: center;
    background-attachment: scroll;
    opacity: 0;
    z-index: 0;
    transition: opacity 0.8s ease-in-out;
}

.h-slide.active {
    opacity: 1;
    z-index: 1;
}

.h-slide-overlay {
    position: absolute;
    top: 0; left: 0; right: 0; bottom: 0;
    background: rgba(0, 0, 0, 0.5); /* darkened overlay */
}

.h-slide-link {
    position: absolute;
    top: 0; left: 0; right: 0; bottom: 0;
    z-index: 3;
    text-indent: -9999px;
    overflow: hidden;
}

.h-slide-container {
    position: relative;
    z-index: 2;
    height: 100%;
    display: flex;
    flex-direction: column;
    justify-content: center;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 15px;
}

.h-slide-subtitle {
    display: block;
    color: #e57352;
    font-size: 0.9rem;
    font-weight: 700;
    letter-spacing: 2px;
    text-transform: uppercase;
    margin-bottom: 0.5rem;
}

.h-slide-title {
    font-size: 3rem;
    font-weight: 700;
    margin-bottom: 1rem;
    line-height: 1.2;
    color: white;
}

.h-slide-desc {
    font-size: 1.1rem;
    opacity: 0.9;
    max-width: 600px;
    color: white;
    margin-bottom: 2rem;
}

.h-slider-controls-container {
    position: absolute;
    bottom: 30px;
    left: 50%;
    transform: translateX(-50%);
    z-index: 10;
    display: flex;
    justify-content: space-between;
    align-items: center;
    width: 100%;
    max-width: 1200px;
    padding: 0 15px;
}

.h-slider-dots {
    display: flex;
    gap: 10px;
}

.h-dot {
    width: 12px;
    height: 12px;
    background-color: rgba(255,255,255,0.4);
    border-radius: 50%;
    cursor: pointer;
    transition: background-color 0.3s;
}

.h-dot.active {
    background-color: var(--pantone-red);
}

@media (max-width: 992px) {
    .h-slide-title {
        font-size: 2.5rem;
    }
}

@media (max-width: 576px) {
    .home-product-slideshow {
        height: 500px;
    }
    .h-slide-title {
        font-size: 2.2rem;
    }
}

/* Company Introduction */
.company-intro {
    padding: 4rem 0;
    background-color: white;
}

.intro-content {
    text-align: center;
    max-width: 1050px;
    margin: 0 auto;
}

.intro-content h2 {
    font-size: 2.5rem;
    color: #1f2937;
    margin-bottom: 1.5rem;
    font-weight: 600;
}

.intro-content p {
    font-size: 1.2rem;
    line-height: 1.8;
    color: #6b7280;
    text-wrap: pretty;
}

/* Section Titles */
.section-title {
    font-size: 2.5rem;
    text-align: center;
    margin-bottom: 3rem;
    color: #1f2937;
    font-weight: 600;
}

.gold-text {
    color: #d97706;
}

/* Key Values Section */
.key-values {
    padding: 4rem 0;
    background-color: #f9fafb;
}

.values-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2rem;
    margin-top: 2rem;
}

.value-card {
    background: white;
    padding: 2rem;
    border-radius: 16px;
    text-align: center;
    box-shadow: 0 4px 20px rgba(0,0,0,0.08);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.value-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 8px 30px rgba(0,0,0,0.12);
}

.value-icon {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, #dc2626, #f87171);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.5rem;
    font-size: 2rem;
}

.value-card h3 {
    font-size: 1.5rem;
    color: #1f2937;
    margin-bottom: 1rem;
    font-weight: 600;
}

.value-card p {
    color: #6b7280;
    line-height: 1.6;
}

/* Product Offerings */
.product-offerings {
    padding: 4rem 0;
    background: linear-gradient(135deg, #1f2937 0%, #111827 100%);
    color: white;
}

.offerings-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    margin: 2rem 0;
}

.offering-card {
    background: rgba(255,255,255,0.1);
    border-radius: 16px;
    overflow: hidden;
    transition: transform 0.3s ease;
    backdrop-filter: blur(10px);
}

.offering-card:hover {
    transform: scale(1.05);
}

.offering-image {
    height: 200px;
    overflow: hidden;
}

.offering-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.offering-content {
    padding: 1.5rem;
    text-align: center;
}

.offering-content h3 {
    font-size: 1.3rem;
    margin-bottom: 0.5rem;
    color: #d97706;
    font-weight: 600;
}

.offerings-tagline {
    text-align: center;
    font-size: 1.2rem;
    margin-top: 2rem;
    font-style: italic;
    color: #d1d5db;
}

/* Service Information */
.service-info {
    padding: 4rem 0;
    background-color: white;
}

.service-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
}

.service-item {
    text-align: center;
    padding: 1.5rem;
}

.service-item h3 {
    font-size: 1.3rem;
    color: #dc2626;
    margin-bottom: 0.5rem;
    font-weight: 600;
}

.service-item p {
    color: #6b7280;
}

/* Call to Action */
.cta-section {
    padding: 4rem 0;
    background: linear-gradient(135deg, #dc2626 0%, #b91c1c 100%);
    color: white;
    text-align: center;
}

.cta-content h2 {
    font-size: 2.5rem;
    margin-bottom: 1rem;
    font-weight: 600;
}

.cta-content p {
    font-size: 1.2rem;
    margin-bottom: 2rem;
    opacity: 0.9;
}

/* Footer Styles */
.site-footer {
    background-color: var(--pantone-brown);
    color: var(--pantone-white);
    padding: 3rem 0 1rem;
}

.footer-content {
    display: grid;
    grid-template-columns: 3.5fr 3.5fr 1fr 2fr;
    gap: 3rem;
    margin-bottom: 3rem;
    margin-top: 1rem;
}

@media (max-width: 992px) {
    .footer-content {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 576px) {
    .footer-content {
        grid-template-columns: 1fr;
    }
}

.footer-section h3 {
    font-size: 1.3rem;
    margin-bottom: 1.5rem;
    font-weight: 700;
}

/* Company Logo Section */
.site-branding {
    display: flex;
    flex-direction: column;
}

.footer-site-title {
    font-size: 2.6rem;
    font-weight: 800;
    margin: 0;
    letter-spacing: 2px;
    color: white;
}

.footer-site-tagline {
    font-size: 1rem;
    opacity: 1;
    margin: 0.5rem 0 1rem 0;
    color: white;
}

.footer-logo-divider {
    height: 3px;
    width: 80px;
    background: linear-gradient(to right, #ffffff 40%, #f59e0b 40%);
    margin-bottom: 1.5rem;
}

.footer-site-subtext {
    font-size: 0.95rem;
    opacity: 1;
    margin: 0;
    color: white;
}

/* Contact Info */
.contact-item {
    display: flex;
    align-items: flex-start;
    gap: 0.75rem;
    margin-bottom: 1rem;
}

.contact-icon {
    width: 20px;
    height: 20px;
    flex-shrink: 0;
    margin-top: 3px;
}

.contact-item a {
    color: white;
    text-decoration: none;
    font-size: 0.95rem;
}

.contact-item a:hover {
    text-decoration: underline;
}

.phone-numbers {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

/* Navigation Links */
.footer-menu {
    list-style: none;
    padding: 0;
    margin: 0;
}

.footer-menu li {
    margin-bottom: 0.8rem;
}

.footer-menu a {
    color: white;
    text-decoration: none;
    font-size: 0.95rem;
    transition: opacity 0.3s ease;
}

.footer-menu a:hover {
    opacity: 0.8;
}

/* Social Media */
.social-links {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.social-link {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    color: white;
    text-decoration: none;
    font-size: 0.95rem;
    transition: opacity 0.3s ease;
}

.social-link:hover {
    opacity: 0.8;
}

.social-icon {
    width: 20px;
    height: 20px;
    flex-shrink: 0;
}

/* Footer Bottom */
.footer-bottom {
    border-top: 1px solid rgba(255,255,255,0.2);
    padding-top: 1rem;
    text-align: center;
}

.footer-bottom p {
    margin: 0;
    opacity: 0.8;
    font-size: 0.9rem;
}

/* Responsive Styles */
@media (max-width: 768px) {
    .menu-toggle {
        display: flex;
    }
    
    .nav-menu {
        display: none;
    }
    
    .hero-content {
        grid-template-columns: 1fr;
        text-align: center;
    }
    
    .hero-title {
        font-size: 2.5rem;
    }
    
    .fullscreen-hero {
        min-height: calc(100vh - var(--navbar-height));
    }
    
    .fullscreen-hero .hero-title {
        font-size: 2.5rem;
    }
    
    .fullscreen-hero .hero-text,
    .fullscreen-hero .hero-description {
        font-size: 1.1rem;
    }
    
    .hero-buttons {
        justify-content: center;
        flex-wrap: wrap;
    }
    
    .intro-content h2 {
        font-size: 2rem;
    }
    
    .section-title {
        font-size: 2rem;
    }
    
    .values-grid {
        grid-template-columns: 1fr;
    }
    
    .offerings-grid {
        grid-template-columns: 1fr;
    }
    
    .service-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .footer-content {
        grid-template-columns: 1fr;
        text-align: center;
    }
    
    .logo-container {
        justify-content: center;
    }
    
    .social-links {
        align-items: center;
    }
}

@media (max-width: 480px) {
    .container {
        padding: 0 15px;
    }
    
    .hero-section {
        padding: 2rem 0;
    }
    
    .hero-title {
        font-size: 2rem;
    }
    
    .btn {
        padding: 0.75rem 1.5rem;
        font-size: 0.9rem;
    }
    
    .service-grid {
        grid-template-columns: 1fr;
    }
}

/* ================================
   PAGE-SPECIFIC STYLES
   ================================ */

/* Our Story Page Styles */
.page-header-section {
    background-color: #f9fafb;
    padding: 2rem 0;
    text-align: center;
}

.page-tab {
    display: inline-block;
    background-color: #dc2626;
    color: white;
    padding: 1rem 2rem;
    border-radius: 8px 8px 0 0;
    font-weight: 600;
    margin-bottom: 1rem;
}

.page-logo h1 {
    font-size: 2rem;
    color: #1f2937;
    font-weight: 700;
    margin: 0;
}

.our-story-hero {
    padding: 3rem 0;
    background-color: white;
}

.our-story-hero.fullscreen-hero {
    background-color: transparent;
    padding: 0;
}

.our-story-hero.fullscreen-hero .hero-title {
    color: #dc2626;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
}

.our-story-hero.fullscreen-hero .hero-text {
    color: #ffffff;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
    font-size: 1.2rem;
    line-height: 1.8;
}

.hero-image-container {
    margin-bottom: 2rem;
}

.hero-content {
    text-align: center;
    max-width: 900px;
    margin: 0 auto;
}

.hero-content .hero-title {
    font-size: 2.5rem;
    color: #dc2626;
    margin-bottom: 1.5rem;
    font-weight: 700;
}

.hero-content .hero-text {
    font-size: 1.2rem;
    line-height: 1.8;
    color: #4b5563;
}

.company-values-section {
    padding: 3rem 0;
    background-color: #f9fafb;
}

.values-content {
    max-width: 800px;
    margin: 0 auto;
    text-align: center;
}

.value-statement, .additional-statement {
    margin-bottom: 2rem;
}

.value-statement p, .additional-statement p {
    font-size: 1.1rem;
    line-height: 1.7;
    color: #4b5563;
}

.key-values-detailed {
    padding: 4rem 0;
    background-color: white;
}

.values-grid-detailed {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    margin-top: 2rem;
}

.value-card-detailed {
    background: #f9fafb;
    padding: 2rem;
    border-radius: 12px;
    text-align: center;
    border: 1px solid #e5e7eb;
}

.value-icon-detailed {
    width: 60px;
    height: 60px;
    background: #dc2626;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1rem;
    font-size: 1.5rem;
    color: white;
}

.service-info-table {
    padding: 3rem 0;
    background-color: #f9fafb;
}

.service-table-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 1.5rem;
}

.service-table-item {
    background: white;
    padding: 1.5rem;
    border-radius: 8px;
    text-align: center;
}

.service-table-item h4 {
    color: #dc2626;
    margin-bottom: 0.5rem;
    font-size: 1.1rem;
}

.product-offerings-detailed {
    padding: 4rem 0;
    background: linear-gradient(135deg, #1f2937 0%, #111827 100%);
    color: white;
}

.offerings-grid-detailed {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2rem;
    margin: 2rem 0;
}

.offering-card-detailed {
    background: rgba(255,255,255,0.1);
    border-radius: 12px;
    overflow: hidden;
    backdrop-filter: blur(10px);
}

.offering-image-detailed {
    height: 180px;
    overflow: hidden;
}

.offering-content-detailed {
    padding: 1.5rem;
    text-align: center;
}

.offering-content-detailed h3 {
    color: #d97706;
    margin-bottom: 0.5rem;
    font-size: 1.2rem;
}

.offerings-tagline-detailed {
    text-align: center;
    font-size: 1.1rem;
    margin-top: 2rem;
    font-style: italic;
    color: #d1d5db;
}

/* Recipe Page Styles */
.recipe-hero {
    padding: 3rem 0;
    background-color: white;
}

.recipe-hero.fullscreen-hero {
    background-color: transparent;
    padding: 0;
}

.recipe-hero .hero-title {
    font-size: 2.5rem;
    color: #dc2626;
    text-align: center;
    margin-bottom: 1.5rem;
    font-weight: 700;
}

.recipe-hero.fullscreen-hero .hero-title {
    color: #dc2626;
    font-size: 3.5rem;
}

.recipe-hero .hero-content {
    text-align: center;
    max-width: 900px;
    margin: 0 auto;
}

.recipe-hero .hero-text {
    font-size: 1.2rem;
    line-height: 1.8;
    color: #4b5563;
}

.recipe-hero.fullscreen-hero .hero-text {
    color: rgba(255, 255, 255, 0.95);
    font-size: 1.3rem;
}

.recipe-intro {
    padding: 3rem 0;
    background-color: white;
}

.intro-content-recipe {
    max-width: 800px;
    margin: 0 auto;
    text-align: center;
}

.intro-text {
    font-size: 1.2rem;
    line-height: 1.8;
    color: #4b5563;
}

.custom-service {
    padding: 2rem 0;
    background-color: #f9fafb;
}

.custom-service-content {
    text-align: center;
}

.service-text {
    font-size: 1.1rem;
    color: #6b7280;
    max-width: 600px;
    margin: 0 auto;
}

.why-austropro {
    padding: 3rem 0;
    background-color: white;
}

.austropro-values-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 1.5rem;
    margin-top: 2rem;
}

.austropro-value-item {
    background: #f9fafb;
    padding: 1.5rem;
    border-radius: 8px;
    text-align: center;
    border: 1px solid #e5e7eb;
}

.austropro-value-item h3 {
    color: #dc2626;
    font-size: 1.1rem;
    margin: 0;
}

.gourmet-primo-catering {
    padding: 4rem 0;
    background-color: #f9fafb;
}

.catering-features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    margin-top: 2rem;
}

.catering-feature {
    display: flex;
    background: white;
    padding: 1.5rem;
    border-radius: 12px;
    box-shadow: 0 2px 10px rgba(0,0,0,0.05);
}

.feature-icon {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    margin-right: 1rem;
    flex-shrink: 0;
}

.green-circle {
    background-color: #10b981;
    color: white;
}

.feature-content h3 {
    color: #1f2937;
    font-size: 1.1rem;
    margin-bottom: 0.25rem;
}

.feature-content h4 {
    color: #6b7280;
    font-size: 0.9rem;
    font-weight: 400;
    margin-bottom: 0.5rem;
}

.feature-content p {
    color: #4b5563;
    font-size: 0.9rem;
    line-height: 1.5;
}

/* Force overflow visible for sticky sidebar */
html, body, .site, .site-main, .products-page, .products-layout {
    overflow: visible !important;
}

/* Products Page Styles */
.products-page {
    padding: 0;
}

.products-layout {
    display: flex;
    min-height: calc(100vh - var(--navbar-height));
    position: relative;
}

.products-sidebar {
    width: 250px;
    background-color: #dc2626;
    color: white;
    flex-shrink: 0;
    position: -webkit-sticky;
    position: sticky;
    top: var(--navbar-height);
    align-self: flex-start;
    z-index: 10;
    height: calc(100vh - var(--navbar-height));
    overflow-y: auto;
}

.sidebar-content {
    padding: 2rem 0;
}

.product-categories {
    list-style: none;
    margin: 0;
    padding: 0;
}

.category-item {
    border-bottom: 1px solid rgba(255,255,255,0.1);
}

.category-item a {
    display: block;
    padding: 1rem 1.5rem;
    color: white;
    text-decoration: none;
    transition: background-color 0.3s ease;
}

.category-item:hover a,
.category-item.active a {
    background-color: rgba(255,255,255,0.1);
}

.products-main-content {
    flex: 1;
    background-color: white;
    padding: 2rem 0;
}

.products-category-title {
    font-size: 2rem;
    color: #1f2937;
    margin-bottom: 3.5rem;
    text-align: center;
}

.products-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
    column-gap: 2.5rem;
    row-gap: 3.5rem;
}

.product-card {
    background: white;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 4px 15px rgba(0,0,0,0.1);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    display: flex;
    flex-direction: column;
    height: 100%;
}

.product-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 8px 25px rgba(0,0,0,0.15);
}

.product-image {
    position: relative;
    height: 200px;
    background-color: #e58d19; /* Solid color based on mockup */
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
}

.product-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.product-badge {
    position: absolute;
    top: 15px;
    right: 15px;
    background-color: #dc2626; /* Red badge */
    color: var(--color-white, #ffffff);
    padding: 0.35rem 1rem;
    border-radius: 20px;
    font-size: 0.8rem;
    font-weight: 700;
}

.product-content {
    padding: 1.5rem 2rem;
    position: relative;
    display: flex;
    flex-direction: column;
    flex: 1 1 auto;
}

.product-name {
    font-size: 1.6rem; /* Noticeably larger like mockup */
    font-weight: 800; /* Bolder text */
    color: var(--color-dark-brown, #4a3424);
    margin-bottom: 0.5rem;
    line-height: 1.3;
}

.product-description {
    color: #6b7280; /* lighter gray */
    font-size: 0.95rem;
    margin-bottom: 0.25rem;
}

.product-number {
    color: #9ca3af;
    font-size: 0.85rem;
    margin: 0.5rem 0 0.2rem 0;
}

.product-size {
    color: #9ca3af;
    font-size: 0.85rem;
    margin-bottom: 1.25rem;
}

.product-footer-row {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-top: auto;
    padding-top: 1rem;
}

.product-specs {
    display: flex;
    gap: 0.6rem;
    align-items: center;
}

.dough-icon {
    width: 1.4rem;
    height: 1.4rem;
    object-fit: contain;
    display: block;
}

.product-icons-right {
    display: flex;
    gap: 0.5rem;
    align-items: center;
}

.right-badge-icon {
    height: 28px;
    width: auto;
    object-fit: contain;
}

.spec-badge {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 34px;
    height: 34px;
    background-color: #f3f4f6; /* light gray bg like mockup */
    border-radius: 8px;
    font-size: 1.1rem;
    color: var(--color-dark-brown, #4a3424);
}

.spec-badge.raw-dough {
    background-color: #f3f4f6;
}

.spec-badge.raw-dough .dough-icon {
    width: 2.4rem;
    height: 2.4rem;
    mix-blend-mode: multiply;
}

/* OEM Page Styles */
.oem-page {
    padding: 0;
}

.oem-hero {
    padding: 3rem 0;
    background-color: #f9fafb;
}

.oem-hero.fullscreen-hero {
    background-color: transparent;
    padding: 0;
}

.oem-hero-content {
    max-width: 1000px;
    margin: 0 auto;
}

.oem-hero .hero-content {
    margin-top: 2rem;
    text-align: center;
}

.oem-hero.fullscreen-hero .hero-content {
    margin-top: 0;
}

.oem-hero .hero-title {
    font-size: 2.5rem;
    color: #dc2626;
    margin-bottom: 1.5rem;
    font-weight: 700;
}

.oem-hero.fullscreen-hero .hero-title {
    color: #dc2626;
    font-size: 3.5rem;
}

.oem-hero .hero-text {
    font-size: 1.2rem;
    line-height: 1.8;
    color: #4b5563;
    max-width: 800px;
    margin: 0 auto;
}

.oem-hero.fullscreen-hero .hero-text {
    color: rgba(255, 255, 255, 0.95);
    font-size: 1.3rem;
}

.oem-content {
    padding: 3rem 0;
    background-color: white;
}

.oem-content-wrapper {
    max-width: 800px;
    margin: 0 auto;
    text-align: center;
}

.oem-main-text {
    font-size: 1.3rem;
    line-height: 1.8;
    color: #4b5563;
}

/* OEM Custom Service strip - sits at bottom of hero, transparent over hero BG */
.oem-custom-service-strip {
    position: absolute;
    left: 0;
    right: 0;
    bottom: 150px;
    z-index: 3;
    padding: 2rem 1.5rem;
    background-color: rgba(0, 0, 0, 0.45);
    opacity: 0;
    transform: translateY(40px);
    transition: opacity 0.9s ease-out, transform 0.9s ease-out;
}

.oem-custom-service-strip.is-visible {
    opacity: 1;
    transform: translateY(0);
}

.oem-custom-service-inner {
    max-width: 1100px;
    margin: 0 auto;
    text-align: center;
}

.oem-custom-service-text {
    color: #ffffff;
    font-size: 1.35rem;
    line-height: 1.7;
    font-weight: 500;
    margin: 0;
    text-shadow: 0 1px 4px rgba(0, 0, 0, 0.4);
}

.oem-custom-service-text u {
    text-decoration: underline;
    text-underline-offset: 3px;
}

@media (max-width: 768px) {
    .oem-custom-service-strip {
        padding: 1.5rem 1rem;
    }
    .oem-custom-service-text {
        font-size: 1rem;
        line-height: 1.6;
    }
    .oem-custom-service-text br {
        display: none;
    }
}

.oem-services {
    padding: 6rem 1rem;
    background-color: #f3f4f6;
    background-image: url('assets/images/marble-baking-bg.png');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    position: relative;
    z-index: 1;
}

.oem-services::before {
    content: '';
    position: absolute;
    top: 0; left: 0; right: 0; bottom: 0;
    background-color: rgba(255, 255, 255, 0.2); /* Slight tint to blend the marble */
    z-index: -1;
}

.oem-services .container {
    background-color: rgba(255, 255, 255, 0.95); /* A single large white container */
    padding: 4rem 3rem;
    border-radius: 12px;
    box-shadow: 0 10px 40px rgba(0,0,0,0.1);
    backdrop-filter: blur(5px);
    max-width: 1200px;
    margin: 0 auto;
}

.oem-services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: 3rem; /* Increase gap since cards have no boxes */
    margin-top: 3.5rem;
}

.oem-service-card {
    background: transparent; /* "เอากล่องๆออก" Remove the cards */
    padding: 0;
    border-radius: 0;
    text-align: center;
    box-shadow: none;
}

.service-icon {
    font-size: 3rem;
    margin-bottom: 1rem;
}

.oem-service-card h3 {
    color: #1f2937;
    margin-bottom: 1rem;
    font-size: 1.2rem;
}

.oem-service-card p {
    color: #6b7280;
    line-height: 1.6;
}

.oem-process {
    padding: 6rem 0;
    background-color: white;
}

.oem-process .section-title {
    font-size: 3.2rem;
    text-align: center;
    margin-bottom: 4rem;
    font-weight: 800;
    color: #1f2937;
    letter-spacing: -0.5px;
}

.process-steps {
    display: flex;
    flex-wrap: nowrap;
    justify-content: space-between;
    align-items: stretch;
    gap: 1.5rem;
    margin-top: 3.5rem;
    padding-bottom: 3.5rem;
    position: relative;
    max-width: 1200px;
    margin-left: auto;
    margin-right: auto;
}

.process-steps::after {
    content: "";
    position: absolute;
    bottom: 0;
    left: 8%;
    right: 8%;
    height: 5px;
    background-color: #d92d24;
    border-radius: 3px;
}

.process-step {
    display: flex;
    align-items: center;
    gap: 1.25rem;
    flex: 1;
    position: relative;
    padding-right: 48px;
    min-width: 0;
}

.process-step:nth-child(3) {
    flex: 1.25;
}

.process-step:not(:last-child)::after {
    content: url('data:image/svg+xml;utf8,<svg width="45" height="28" viewBox="0 0 50 30" fill="%2320495f" xmlns="http://www.w3.org/2000/svg"><path d="M 30 2 L 48 15 L 30 28 V 20 H 2 V 10 H 30 Z"/></svg>');
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    right: -8px; /* Slightly overhang to bridge the gap gracefully */
}

@media (max-width: 1024px) {
    .process-steps {
        flex-wrap: wrap; /* allow wrap on tablets */
    }
    .process-step {
        flex: 1 1 45%; /* Two per row */
        margin-bottom: 2rem;
        padding-right: 0;
    }
    .process-step:not(:last-child)::after {
        display: none;
    }
}

@media (max-width: 768px) {
    .process-step,
    .process-step:nth-child(3) {
        flex: 1 1 100%; /* One per row */
    }
    .process-steps::after {
        left: 0; right: 0;
    }
}

.step-number {
    width: 64px;
    height: 64px;
    background-color: #d92d24;
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.85rem;
    font-weight: 700;
    flex-shrink: 0;
    box-shadow: 0 6px 14px rgba(217, 45, 36, 0.3);
}

.step-content {
    padding-top: 0.2rem;
}

.step-content h3 {
    color: #1f2937;
    margin-bottom: 0.5rem;
    font-size: 1.5rem;
    font-weight: 700;
    white-space: nowrap;
}

.step-content p {
    color: #4b5563;
    line-height: 1.6;
    font-size: 1.1rem;
    margin: 0;
}

.oem-cta {
    padding: 4rem 0;
    background: linear-gradient(135deg, #dc2626 0%, #b91c1c 100%);
    color: white;
    text-align: center;
}

.oem-cta-content h2 {
    font-size: 2.5rem;
    margin-bottom: 1rem;
}

.oem-cta-content p {
    font-size: 1.2rem;
    margin-bottom: 2.5rem;
    opacity: 0.95;
    font-weight: 300;
}

.oem-cta-btn {
    display: inline-block;
    background-color: #ef4444; /* Brighter red to contrast against background */
    color: white;
    padding: 1.25rem 3.5rem;
    border-radius: 8px;
    font-size: 1.15rem;
    font-weight: 700;
    text-decoration: none;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.15);
    position: relative;
    z-index: 10;
}

.oem-cta-btn:hover {
    background-color: #f87171;
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.25);
    color: white;
}

/* Contact Page Styles */
.contact-page {
    padding: 0;
}

.contact-header {
    padding: calc(3rem + var(--navbar-height)) 0 3rem;
    background: linear-gradient(135deg, var(--pantone-red) 0%, #b91c1c 100%);
    color: white;
    text-align: center;
}

.contact-header-content .page-title {
    font-size: 3rem;
    margin-bottom: 1rem;
    font-weight: 700;
}

.page-subtitle {
    font-size: 1.2rem;
    opacity: 0.9;
}

.contact-info-section {
    padding: 4rem 0;
    background-color: #f9fafb;
}

.contact-info-grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 280px));
    gap: 1.5rem;
    justify-content: center;
}

@media (max-width: 1024px) {
    .contact-info-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 640px) {
    .contact-info-grid {
        grid-template-columns: 1fr;
    }
}

.contact-info-card {
    background: white;
    padding: 3rem 1.5rem;
    border-radius: 12px;
    text-align: center;
    box-shadow: 0 4px 20px rgba(0,0,0,0.04);
    border: none;
    transition: all 0.3s ease;
}

.contact-info-card:hover {
    box-shadow: 0 8px 30px rgba(0,0,0,0.06);
    transform: translateY(-5px);
}

.contact-page-icon {
    display: flex;
    justify-content: center;
    align-items: center;
    margin-bottom: 1.5rem;
    height: 52px;
}

.contact-info-card h3 {
    color: #334155;
    margin-bottom: 0.75rem;
    font-size: 1.15rem;
    font-weight: 600;
}

.contact-info-card p {
    font-size: 0.9rem;
    margin: 0;
    line-height: 1.6;
    color: #64748b;
}

.contact-info-card a {
    color: #ef4444;
    text-decoration: none;
    font-weight: 500;
    font-size: 0.95rem;
}

.contact-info-card a:hover {
    text-decoration: underline;
}



.contact-form-section {
    padding: 4rem 0;
    background-color: white;
}

.contact-form-wrapper {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: start;
}

.form-content h2 {
    color: #1f2937;
    margin-bottom: 1rem;
    font-size: 2rem;
}

.form-content p {
    color: #6b7280;
    margin-bottom: 2rem;
}

.contact-form {
    max-width: 100%;
}

.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1rem;
}

.form-group {
    margin-bottom: 1.5rem;
}

.form-group label {
    display: block;
    margin-bottom: 0.5rem;
    color: #374151;
    font-weight: 500;
}

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 0.75rem;
    border: 1px solid #d1d5db;
    border-radius: 6px;
    font-size: 1rem;
    transition: border-color 0.3s ease;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    border-color: #dc2626;
    box-shadow: 0 0 0 3px rgba(220, 38, 38, 0.1);
}

.contact-image {
    height: 100%;
    min-height: 480px;
}

.contact-image .placeholder-image {
    width: 100%;
    height: 100%;
    min-height: 480px;
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.business-hours-section {
    padding: 6rem 0;
    background-color: #fff;
    border-top: 2px solid #f9fafb;
}

.hours-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 4rem;
    max-width: 1000px;
    margin: 0 auto;
}

@media (max-width: 768px) {
    .hours-grid {
        grid-template-columns: 1fr;
        gap: 3rem;
    }
}

.hours-item {
    display: flex;
    justify-content: center;
    background: transparent;
    padding: 0;
    border-radius: 0;
    box-shadow: none;
    text-align: left;
}

.hours-item-inner {
    max-width: 320px;
    width: 100%;
}

.hours-icon {
    display: flex;
    justify-content: center;
    margin-bottom: 2rem;
}

.hours-item h3 {
    color: var(--pantone-red);
    margin-bottom: 1.5rem;
    font-size: 1.8rem;
    font-weight: 500;
}

.hours-item p {
    color: var(--pantone-black);
    margin-bottom: 0.75rem;
    font-size: 1.5rem;
    font-weight: 500;
}

.map-section {
    padding: 4rem 0;
    background-color: white;
}

.map-section h2 {
    text-align: center;
    color: #1f2937;
    margin-bottom: 2rem;
    font-size: 2rem;
}

/* Responsive Styles for New Pages */
@media (max-width: 768px) {
    .products-layout {
        flex-direction: column;
    }
    
    .products-sidebar {
        width: 100%;
        order: 2;
        position: static;
        overflow-y: visible;
    }
    
    .products-main-content {
        order: 1;
    }
    
    .sidebar-content {
        padding: 1rem 0;
    }
    
    .product-categories {
        display: flex;
        overflow-x: auto;
        white-space: nowrap;
    }
    
    .category-item {
        border-bottom: none;
        border-right: 1px solid rgba(255,255,255,0.1);
    }
    
    .category-item a {
        padding: 1rem;
    }
    
    .contact-form-wrapper {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .form-row {
        grid-template-columns: 1fr;
    }
    
    .values-grid-detailed {
        grid-template-columns: 1fr;
    }
    
    .catering-features-grid {
        grid-template-columns: 1fr;
    }
    
    .catering-feature {
        flex-direction: column;
        text-align: center;
    }
    
    .feature-icon {
        margin: 0 auto 1rem;
    }
    
    .process-steps {
        grid-template-columns: 1fr;
    }
    
    .hours-grid {
        grid-template-columns: 1fr;
    }
}

/* Custom Recipe Section: Wholewheat Toast */
.recipe-toast-section {
    position: relative;
    display: flex;
    min-height: 70vh;
    background-color: var(--pantone-white);
    overflow: hidden;
}

.toast-bg {
    position: absolute;
    top: 50%;
    left: 45%; 
    width: 200vw;
    height: 200vw;
    border-radius: 50%;
    transform: translateY(-50%);
    overflow: hidden;
    z-index: 1;
    box-shadow: -10px 0 0 var(--pantone-white), -11.5px 0 0 #bdaba3;
}

.toast-bg-img {
    position: absolute;
    top: 50%;
    left: 0;
    width: 60vw;
    height: 100vh;
    transform: translateY(-50%);
    object-fit: cover;
    object-position: right 30%;
}

.toast-left {
    position: relative;
    width: 45%; 
    z-index: 2;
    padding: 6rem 3rem 6rem max(20px, calc((100vw - 1200px) / 2 + 20px));
    display: flex;
    align-items: center;
    background-color: transparent;
}

.toast-content-box {
    max-width: 500px;
    padding-right: 2rem;
}

.toast-title {
    font-size: 3rem;
    font-weight: 500;
    color: #1a1a1a;
    margin-bottom: 0.2rem;
    letter-spacing: -0.5px;
    white-space: nowrap;
}

.toast-divider {
    height: 5px;
    width: 100%;
    max-width: 320px;
    background-color: #E26D3C; 
    border-radius: 8px 3px 8px 3px / 3px 8px 3px 8px;
    margin-top: 5px;
    margin-bottom: 1.5rem;
}

.toast-desc {
    font-size: 1.1rem;
    line-height: 1.6;
    color: #1a1a1a;
    font-weight: 400;
}

.toast-right-content {
    position: absolute;
    top: 0; 
    left: 46%; 
    right: 0; 
    bottom: 0;
    z-index: 2;
    pointer-events: none;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
}

.toast-overlay {
    margin-bottom: 0; 
}

.toast-overlay-title {
    font-size: clamp(3.5rem, 8vw, 8.5rem);
    font-weight: 800;
    color: #ffffff;
    text-shadow: 2px 2px 8px rgba(0,0,0,0.15);
    line-height: 1;
    letter-spacing: 0.12em;
    margin: 0;
    text-align: left;
}

.toast-watermark {
    position: absolute;
    bottom: 40px;
    left: 50%;
    transform: translateX(-50%);
    padding: 12px 30px;
    color: rgba(255, 255, 255, 0.95);
    text-align: center;
    border: 1px solid rgba(255, 255, 255, 0.5);
    background: transparent;
    backdrop-filter: blur(2px);
    pointer-events: auto;
}

.wm-title {
    font-family: serif;
    font-size: 1.3rem;
    font-weight: 400;
    letter-spacing: 2px;
    margin: 0 0 5px 0;
}

.wm-sub {
    font-size: 1rem;
    font-style: italic;
    opacity: 0.9;
    margin: 0;
    font-family: 'Brush Script MT', cursive, serif;
}

@media (max-width: 992px) {
    .recipe-toast-section {
        flex-direction: column;
        height: auto;
    }
    
    .toast-bg {
        position: relative;
        left: 0;
        top: 0;
        width: 100%;
        height: 500px;
        border-radius: 0;
        transform: none;
        box-shadow: none;
        order: 2;
    }
    
    .toast-bg-img {
        width: 100%;
        height: 100%;
        position: absolute;
        top: 0;
        left: 0;
        transform: none;
    }
    
    .toast-left {
        width: 100%;
        padding: 4rem 20px;
        order: 1;
    }
    
    .toast-content-box {
        max-width: 100%;
        padding-right: 0;
    }
    
    .toast-right-content {
        left: 0;
        top: auto;
        bottom: 0;
        height: 500px;
        order: 3;
    }
}

/* Custom Recipe Section: Croissants */
.recipe-croissants-section {
    padding: 8rem 0;
    background-color: var(--pantone-white);
}

.croissants-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 40px;
    display: flex;
    align-items: center;
    gap: 5rem;
}

.croissants-column {
    flex: 1;
}

.croissants-image-col {
    position: relative;
    max-width: 50%;
}

.croissants-img {
    width: 100%;
    height: auto;
    display: block;
    aspect-ratio: 1 / 1;
    object-fit: cover;
}

.croissants-img-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    pointer-events: none;
    color: #6d4b38;
}

.croissants-img-text {
    font-size: clamp(3rem, 5vw, 4.5rem);
    font-weight: 800;
    line-height: 1.1;
    letter-spacing: 1px;
    text-shadow: 2px 2px 8px rgba(255, 255, 255, 0.4);
}

.croissants-img-subtext {
    font-size: clamp(1.2rem, 2vw, 1.8rem);
    font-weight: 600;
    margin: 0.5rem 0;
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 15px;
    text-shadow: 1px 1px 4px rgba(255, 255, 255, 0.4);
}

.croissants-img-subtext::before,
.croissants-img-subtext::after {
    content: '';
    display: block;
    width: clamp(20px, 4vw, 50px);
    height: 2px;
    background-color: #6d4b38;
}

.croissants-watermark {
    margin-top: 1.5rem;
    padding: 10px 25px;
    text-align: center;
    border: 1px solid rgba(109, 75, 56, 0.4);
    background: rgba(255, 255, 255, 0.5);
    backdrop-filter: blur(2px);
    color: #6d4b38;
}

.croissants-watermark .cw-title {
    font-family: serif;
    font-size: 1.1rem;
    font-weight: 400;
    letter-spacing: 2px;
    margin: 0 0 5px 0;
}

.croissants-watermark .cw-sub {
    font-size: 0.9rem;
    font-style: italic;
    font-family: 'Brush Script MT', cursive, serif;
    margin: 0;
}

.croissants-title {
    font-size: clamp(3rem, 5vw, 4rem);
    font-weight: 500;
    color: #000;
    margin-bottom: 2rem;
    letter-spacing: -0.5px;
    line-height: 1.1;
}

.croissants-desc {
    font-size: 1.15rem;
    line-height: 1.6;
    color: #1a1a1a;
    font-weight: 400;
}

@media (max-width: 992px) {
    .croissants-container {
        flex-direction: column;
        gap: 3rem;
        padding: 0 20px;
    }
    
    .croissants-image-col {
        max-width: 100%;
        width: 100%;
    }
    
    .croissants-title {
        margin-bottom: 1.5rem;
    }
}

/* Custom Recipe Section: 4 Frames Products */
.recipe-products-grid-section {
    width: 100%;
}

.recipe-products-grid-section .products-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    grid-auto-rows: minmax(400px, 45vh);
    gap: 0;
}

.product-frame {
    position: relative;
    overflow: hidden;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-align: center;
    text-decoration: none;
    padding: 3rem;
    color: #fff;
    cursor: pointer;
}

.product-frame-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    z-index: 1;
    transition: transform 0.6s ease;
}

.product-frame:hover .product-frame-bg {
    transform: scale(1.05);
}

.product-frame-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.4);
    z-index: 2;
    transition: background-color 0.4s ease;
}

.product-frame:hover .product-frame-overlay {
    background-color: rgba(0, 0, 0, 0.55);
}

.product-frame-content {
    position: relative;
    z-index: 3;
    max-width: 80%;
}

.product-frame-title {
    font-size: clamp(2rem, 3.5vw, 3.2rem);
    font-weight: 700;
    line-height: 1.2;
    margin-bottom: 1.5rem;
    color: #fff;
    text-shadow: 2px 2px 10px rgba(0, 0, 0, 0.6);
}

.product-frame-link {
    font-size: 1.1rem;
    font-weight: 500;
    letter-spacing: 1px;
    display: inline-flex;
    align-items: center;
    color: #fff;
    border-bottom: 1px solid transparent;
    padding-bottom: 2px;
    transition: border-color 0.3s ease;
}

.product-frame:hover .product-frame-link {
    border-color: #fff;
}

@media (max-width: 992px) {
    .products-grid {
        grid-template-columns: 1fr;
        grid-auto-rows: 350px;
    }
}
/* ===== Product Offerings (NEW) ===== */
.po-section {
    position: relative;
    padding: 5rem 0;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    background-color: #2a1810;
    overflow: hidden;
}

.po-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg, rgba(0,0,0,0.55), rgba(0,0,0,0.65));
    z-index: 0;
}

.po-container {
    position: relative;
    z-index: 1;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 1rem;
}

.po-header {
    text-align: center;
    margin-bottom: 3rem;
    color: #fff;
}

.po-title {
    font-size: clamp(1.75rem, 3.5vw, 2.75rem);
    font-weight: 800;
    letter-spacing: 2px;
    color: #fff;
    margin: 0 0 0.5rem;
}

.po-title-accent {
    color: #f59e0b;
}

.po-subtitle {
    font-size: clamp(1rem, 1.5vw, 1.15rem);
    color: rgba(255,255,255,0.9);
    margin: 0;
}

.po-cards {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 230px));
    gap: 1.25rem;
    margin: 0 auto 2rem;
    justify-content: center;
}

.po-card {
    background: rgba(255, 250, 240, 0.95);
    border-radius: 14px;
    padding: 1.75rem 1.5rem;
    text-align: center;
    color: #3a2418;
    text-decoration: none;
    box-shadow: 0 10px 25px rgba(0,0,0,0.25);
    transition: transform 0.35s ease, box-shadow 0.35s ease, background-color 0.35s ease;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 1rem;
    animation: po-card-fade 0.6s ease backwards;
    position: relative;
    overflow: hidden;
}

.po-cards .po-card:nth-child(1) { animation-delay: 0.1s; }
.po-cards .po-card:nth-child(2) { animation-delay: 0.25s; }
.po-cards .po-card:nth-child(3) { animation-delay: 0.4s; }

@keyframes po-card-fade {
    from { opacity: 0; transform: translateY(20px); }
    to   { opacity: 1; transform: translateY(0); }
}

.po-card::before {
    content: "";
    position: absolute;
    inset: 0;
    border-radius: inherit;
    border: 2px solid transparent;
    transition: border-color 0.35s ease;
    pointer-events: none;
}

.po-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 18px 35px rgba(0,0,0,0.35);
    background: #fff;
}

.po-card:hover::before {
    border-color: #f59e0b;
}

.po-card-title {
    font-size: 1.25rem;
    font-weight: 800;
    color: #d97706;
    letter-spacing: 1px;
    margin: 0;
}

.po-card-icon {
    width: 100px;
    height: 64px;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: transform 0.4s ease;
}

.po-card-icon svg {
    width: 100%;
    height: 100%;
}

.po-card:hover .po-card-icon {
    transform: scale(1.08) rotate(-2deg);
}

.po-card-list {
    list-style: none;
    padding: 0;
    margin: 0;
    color: #4b3a2c;
    font-size: 0.95rem;
    line-height: 1.7;
}

.po-card-list li {
    list-style: none;
}

.po-card-btn {
    margin-top: auto;
    background: #d97706;
    color: #fff;
    padding: 0.55rem 1.5rem;
    border-radius: 6px;
    font-weight: 600;
    font-size: 0.9rem;
    transition: background-color 0.25s ease, transform 0.25s ease;
}

.po-card:hover .po-card-btn {
    background: #b45309;
    transform: translateY(-2px);
}

.po-footer-text {
    text-align: center;
    color: #fff;
    font-style: italic;
    font-size: 1rem;
    margin: 0;
}

@media (max-width: 768px) {
    .po-cards {
        grid-template-columns: 1fr;
    }
    .po-section { padding: 3rem 0; }
}

/* ===== Why Choose Us ===== */
.wcu-section {
    position: relative;
    padding: 5rem 0;
    overflow: hidden;
    isolation: isolate;
}

.wcu-bg {
    position: absolute;
    inset: -10%;
    z-index: -2;
    background-image: url('assets/images/AP 36-585.jpg');
    background-size: cover;
    background-position: center;
    filter: blur(2px) brightness(0.65);
    transform: scale(1.05);
    will-change: transform;
}

.wcu-overlay {
    position: absolute;
    inset: 0;
    z-index: -1;
    background: linear-gradient(180deg, rgba(40,20,10,0.55), rgba(40,20,10,0.7));
}

.wcu-container {
    position: relative;
    z-index: 1;
    max-width: 1100px;
    margin: 0 auto;
    padding: 0 1rem;
}

.wcu-title {
    text-align: center;
    color: #fff;
    font-size: clamp(1.5rem, 3vw, 2.25rem);
    font-weight: 800;
    letter-spacing: 3px;
    margin: 0 0 2.5rem;
}

.wcu-grid {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 200px));
    gap: 1.25rem;
    justify-content: center;
}

.wcu-card {
    background: rgba(255, 250, 240, 0.96);
    border-radius: 12px;
    padding: 1.5rem 1.25rem;
    text-align: center;
    box-shadow: 0 8px 20px rgba(0,0,0,0.25);
    transform: translateY(40px);
    opacity: 0;
    transition: transform 0.7s ease, opacity 0.7s ease, box-shadow 0.35s ease;
    perspective: 800px;
}

.wcu-card.is-visible {
    transform: translateY(0);
    opacity: 1;
}

.wcu-card:hover {
    transform: translateY(-8px) rotateX(4deg);
    box-shadow: 0 20px 35px rgba(0,0,0,0.4);
}

.wcu-card-title {
    color: #b45309;
    font-size: 1rem;
    font-weight: 800;
    letter-spacing: 1px;
    margin: 0 0 1rem;
}

.wcu-icon {
    width: 70px;
    height: 70px;
    margin: 0 auto 1rem;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: transform 0.4s ease;
}

.wcu-icon svg { width: 100%; height: 100%; }

.wcu-card:hover .wcu-icon {
    transform: scale(1.12) rotate(-4deg);
}

.wcu-desc {
    color: #4b3a2c;
    font-size: 0.95rem;
    line-height: 1.55;
    margin: 0;
}

@media (max-width: 900px) {
    .wcu-grid { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 480px) {
    .wcu-grid { grid-template-columns: 1fr; }
}

/* ===== Recipe Artisan Bread Section (mirrored toast layout) ===== */
.recipe-artisan-section {
    position: relative;
    display: flex;
    min-height: 70vh;
    background-color: var(--pantone-white);
    overflow: hidden;
}

/* Image circle anchored on the LEFT */
.artisan-bg {
    position: absolute;
    top: 50%;
    right: 45%;
    width: 200vw;
    height: 200vw;
    border-radius: 50%;
    transform: translateY(-50%);
    overflow: hidden;
    z-index: 1;
    box-shadow: 10px 0 0 var(--pantone-white), 11.5px 0 0 #bdaba3;
}

.artisan-bg-img {
    position: absolute;
    top: 50%;
    right: 0;
    width: 60vw;
    height: 100vh;
    transform: translateY(-50%);
    object-fit: cover;
    object-position: left 30%;
}

/* Text on the RIGHT */
.artisan-right {
    position: relative;
    width: 45%;
    margin-left: auto;
    z-index: 2;
    padding: 6rem max(20px, calc((100vw - 1200px) / 2 + 20px)) 6rem 3rem;
    display: flex;
    align-items: center;
    background-color: transparent;
}

.artisan-content-box {
    max-width: 500px;
    padding-left: 2rem;
}

.artisan-title {
    font-size: 3rem;
    font-weight: 500;
    color: #1a1a1a;
    margin-bottom: 0.2rem;
    letter-spacing: -0.5px;
    white-space: nowrap;
}

.artisan-divider {
    height: 5px;
    width: 100%;
    max-width: 320px;
    background-color: #E26D3C;
    border-radius: 8px 3px 8px 3px / 3px 8px 3px 8px;
    margin-top: 5px;
    margin-bottom: 1.5rem;
}

.artisan-desc {
    font-size: 1.1rem;
    line-height: 1.6;
    color: #1a1a1a;
    font-weight: 400;
}

/* Title overlay + watermark on the LEFT (over the image) */
.artisan-left-content {
    position: absolute;
    top: 0;
    left: 0;
    right: 46%;
    bottom: 0;
    z-index: 2;
    pointer-events: none;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
}

.artisan-overlay { margin-bottom: 0; }

.artisan-overlay-title {
    font-size: clamp(3.5rem, 8vw, 8.5rem);
    font-weight: 800;
    color: #ffffff;
    text-shadow: 2px 2px 8px rgba(0,0,0,0.15);
    line-height: 1;
    letter-spacing: 0.12em;
    margin: 0;
    text-align: right;
}

.artisan-watermark {
    position: absolute;
    bottom: 40px;
    left: 50%;
    transform: translateX(-50%);
    padding: 12px 30px;
    color: rgba(255, 255, 255, 0.95);
    text-align: center;
    border: 1px solid rgba(255, 255, 255, 0.5);
    background: transparent;
    backdrop-filter: blur(2px);
    pointer-events: auto;
}

@media (max-width: 992px) {
    .recipe-artisan-section {
        flex-direction: column;
        height: auto;
    }
    .artisan-bg {
        position: relative;
        right: 0;
        top: 0;
        width: 100%;
        height: 500px;
        border-radius: 0;
        transform: none;
        box-shadow: none;
        order: 1;
    }
    .artisan-bg-img {
        width: 100%;
        height: 100%;
        position: absolute;
        top: 0;
        left: 0;
        transform: none;
    }
    .artisan-right {
        width: 100%;
        margin-left: 0;
        padding: 4rem 20px;
        order: 2;
    }
    .artisan-content-box {
        max-width: 100%;
        padding-left: 0;
    }
    .artisan-left-content {
        left: 0;
        right: 0;
        top: 0;
        bottom: auto;
        height: 500px;
        order: 1;
    }
}
