/* How to Order Section */
.order-info {
    padding: 100px 0;
    background-color: var(--bg-light);
    text-align: center;
}

.order-info h2 {
    font-size: 2.5rem;
    color: var(--primary-color);
    margin-bottom: 10px;
}

.order-subtitle {
    font-size: 1.1rem;
    color: var(--text-light);
    margin-bottom: 50px;
    font-weight: 300;
}

.order-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 30px;
    margin-bottom: 50px;
}

.order-card {
    background-color: var(--white);
    border-radius: 20px;
    padding: 40px 30px;
    box-shadow: 0 10px 40px var(--shadow);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.order-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 50px rgba(0, 0, 0, 0.12);
}

.order-icon {
    margin-bottom: 20px;
    color: var(--primary-color);
}

.order-icon svg {
    display: block;
    margin: 0 auto;
}

.order-card h3 {
    font-size: 1.3rem;
    color: var(--primary-color);
    margin-bottom: 10px;
    font-family: 'Playfair Display', serif;
}

.order-detail {
    font-size: 1.2rem;
    color: var(--text-dark);
    font-weight: 600;
    margin-bottom: 8px;
}

.order-note {
    font-size: 0.95rem;
    color: var(--text-medium);
    margin-bottom: 15px;
}

.order-hint {
    font-size: 0.85rem;
    color: var(--text-light);
    font-style: italic;
}

/* Order Methods Card */
.order-methods-card {
    padding: 40px 30px;
}

.order-methods {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
    margin-top: 25px;
    width: 100%;
    max-width: 600px;
}

.order-method {
    display: flex;
    align-items: center;
    gap: 16px;
    padding: 20px;
    border-radius: 16px;
    text-decoration: none;
    transition: all 0.3s ease;
    border: 2px solid transparent;
}

.whatsapp-method {
    background: linear-gradient(135deg, #faf5f5 0%, #f3e8e8 100%);
    border-color: var(--primary-light);
}

.whatsapp-method:hover {
    background: linear-gradient(135deg, #f3e8e8 0%, #ebd5d5 100%);
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(168, 138, 138, 0.25);
}

.instagram-method {
    background: linear-gradient(135deg, #faf5f5 0%, #f3e8e8 100%);
    border-color: var(--primary-light);
}

.instagram-method:hover {
    background: linear-gradient(135deg, #f3e8e8 0%, #ebd5d5 100%);
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(168, 138, 138, 0.25);
}

.method-icon {
    flex-shrink: 0;
    width: 48px;
    height: 48px;
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.whatsapp-method .method-icon {
    background: linear-gradient(135deg, var(--primary-color), var(--primary-dark));
    color: white;
}

.instagram-method .method-icon {
    background: linear-gradient(135deg, var(--primary-color), var(--primary-dark));
    color: white;
}

.method-icon svg {
    width: 24px;
    height: 24px;
    stroke-width: 2.5;
}

.method-info {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    text-align: left;
}

.method-name {
    font-family: 'Playfair Display', serif;
    font-size: 1.1rem;
    font-weight: 600;
    color: var(--text-dark);
    margin-bottom: 2px;
}

.method-detail {
    font-size: 0.95rem;
    color: var(--text-medium);
    font-weight: 500;
    margin-bottom: 2px;
}

.method-hint {
    font-size: 0.8rem;
    color: var(--text-light);
    font-style: italic;
}

/* WhatsApp Highlighting */
.highlight-whatsapp {
    color: var(--primary-color) !important;
    font-size: 1.4rem !important;
    background: linear-gradient(135deg, var(--primary-color), var(--primary-dark));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    font-weight: 700 !important;
    margin-bottom: 12px !important;
}

.highlight-preparation {
    background: linear-gradient(135deg, var(--primary-color), var(--primary-dark));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    font-weight: 600 !important;
    font-size: 1.1rem !important;
    margin-bottom: 15px !important;
}


/* Packaging Card */
.order-card-wide {
    grid-column: 1 / -1;
    display: flex;
    flex-direction: column;
    align-items: center;
    padding-top: 0;
    overflow: hidden;
}

.packaging-image {
    width: 100%;
    overflow: hidden;
    margin-bottom: 25px;
}

.packaging-image img {
    width: 100%;
    height: auto;
    display: block;
}


/* Adjust order-card-wide for carousel */
.order-card-wide {
    padding-top: 0;
}

.order-card-wide h3 {
    color: var(--primary-color);
    font-family: 'Playfair Display', serif;
    font-size: 1.3rem;
    margin-bottom: 10px;
}

.order-card-wide .order-detail {
    font-size: 1.1rem;
    color: var(--text-dark);
    font-weight: 600;
    margin-bottom: 8px;
}

.order-card-wide .order-note {
    font-size: 0.95rem;
    color: var(--text-medium);
    max-width: 400px;
    line-height: 1.6;
}

/* Day Indicators */
.day-indicators {
    display: flex;
    justify-content: center;
    gap: 8px;
    margin-top: 15px;
}

.day {
    width: 32px;
    height: 32px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.85rem;
    font-weight: 500;
    color: var(--text-light);
    background-color: var(--bg-cream);
    transition: all 0.3s ease;
}

.day.active {
    background-color: var(--primary-color);
    color: var(--white);
}

/* Order CTA */
.order-cta {
    background-color: var(--white);
    border-radius: 20px;
    padding: 40px;
    max-width: 500px;
    margin: 0 auto;
    box-shadow: 0 10px 40px var(--shadow);
}

.cta-text {
    font-size: 1.15rem;
    color: var(--text-dark);
    margin-bottom: 25px;
    font-weight: 400;
}

.btn-instagram {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 15px;
}

.btn-instagram svg {
    width: 24px;
    height: 24px;
}


/* Footer */
footer {
    padding: 60px 0;
    background-color: var(--bg-cream);
    text-align: center;
}

.footer-logo {
    width: 80px;
    height: auto;
    border-radius: 50%;
    margin-bottom: 20px;
    opacity: 0.8;
}

footer p {
    color: var(--text-light);
    font-size: 0.9rem;
}
