* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

/* --- FUN, EXCITING, WHIMSICAL THEME --- */
:root {
  --pb-gold: #EAD7C2;
  --pb-brown: #8B5C2A;
  --pb-cream: #F5E9DA;
  --pb-light: #F5E9DA;
  --pb-dark: #5C3A18;
  --pb-peach: #EAD7C2;
  --pb-mint: #EAD7C2;
  --pb-sky: #EAD7C2;
  --pb-pink: #EAD7C2;
}

body {
    background: linear-gradient(135deg, var(--pb-cream) 60%, var(--pb-peach) 100%);
    color: var(--pb-dark);
    font-family: 'Roboto', 'Arial', sans-serif;
}

h1, h2, h3, h4, h5, h6 {
    font-family: 'Fredoka One', 'Baloo 2', cursive, sans-serif;
    text-shadow: 2px 4px 8px #FFD6A5, 0 1px 0 #fff;
    letter-spacing: 0.01em;
}

header {
    background: linear-gradient(90deg, var(--pb-peach) 60%, var(--pb-mint) 100%);
    border-bottom: 4px dotted var(--pb-gold);
}

.logo-container {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 2rem;
    max-width: 1200px;
    margin: 0 auto;
}



.logo {
    height: 200px;
    width: auto;
    object-fit: contain;
    border-radius: 10px;
    box-shadow: 0 4px 12px rgba(212, 160, 23, 0.3);
}

.logo-placeholder {
    width: 120px;
    height: 120px;
    background: linear-gradient(135deg, #DC143C, #4682B4);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 4rem;
    box-shadow: 0 4px 12px rgba(220, 20, 60, 0.3);
}



.logo-subtitle {
    font-size: 0.9rem;
    color: #333;
    text-align: center;
    font-weight: bold;
    margin-bottom: 0.5rem;
}

.logo-phone {
    font-size: 0.8rem;
    color: #666;
    text-align: center;
    font-weight: bold;
}

.brand-info {
    text-align: left;
}

.brand-info h1 {
    color: #DC143C;
    font-size: 3.2rem;
    font-family: 'Inter', 'Segoe UI', sans-serif;
    font-weight: 700;
    margin: 0;
    letter-spacing: -0.02em;
}

.brand-info h2 {
    color: #4682B4;
    font-size: 1.8rem;
    margin: 0.5rem 0;
    font-weight: 500;
    letter-spacing: 0.01em;
}

.contact {
    font-size: 1.5rem;
    color: #333;
    margin-top: 1rem;
    font-weight: bold;
}

nav {
    text-align: center;
    background-color: var(--pb-brown);
    padding: 1.2rem;
    margin-top: 1.5rem;
    border-radius: 8px;
}

nav a {
    color: white;
    margin: 0 1.5rem;
    text-decoration: none;
    font-size: 1.25rem;
    font-weight: 500;
    padding: 0.8rem 1.5rem;
    border-radius: 6px;
    transition: all 0.2s ease;
    letter-spacing: 0.01em;
}

nav a:hover {
    background-color: var(--pb-gold);
    transform: translateY(-1px);
}

nav a.active {
    background-color: var(--pb-gold);
    transform: translateY(-1px);
}

/* Hero Section */
.hero {
    background: linear-gradient(120deg, var(--pb-pink) 0%, var(--pb-mint) 100%);
    padding: 7rem 2rem;
    text-align: center;
    color: var(--pb-dark);
    position: relative;
    overflow: hidden;
}

.hero::before {
    content: '';
    position: absolute;
    top: 0; left: 0; right: 0; bottom: 0;
    background: url('data:image/svg+xml;utf8,<svg width="100" height="100" viewBox="0 0 100 100" fill="none" xmlns="http://www.w3.org/2000/svg"><circle cx="20" cy="20" r="8" fill="%23FFD700"/><circle cx="80" cy="80" r="10" fill="%23B5F7CC"/><circle cx="60" cy="30" r="6" fill="%23FFB3C6"/></svg>');
    opacity: 0.15;
    z-index: 0;
}

.hero-content {
    position: relative;
    z-index: 1;
}

.hero-content h1 {
    font-size: 4rem;
    margin-bottom: 1.5rem;
    text-shadow: 2px 4px 12px #FFD6A5, 0 1px 0 #fff;
}

.hero-content p {
    font-size: 1.5rem;
    color: var(--pb-brown);
}

.hero-buttons {
    display: flex;
    gap: 1rem;
    justify-content: center;
    flex-wrap: wrap;
}

.btn, .btn-primary, .btn-secondary, .btn-large {
    border-radius: 32px;
    font-family: 'Fredoka One', cursive, sans-serif;
    font-size: 1.1rem;
    font-weight: 700;
    background: linear-gradient(90deg, var(--pb-gold), var(--pb-pink));
    color: var(--pb-dark);
    box-shadow: 0 2px 8px rgba(255,214,165,0.18);
    transition: transform 0.2s, box-shadow 0.2s, background 0.2s;
    border: none;
}
.btn:hover, .btn-primary:hover, .btn-secondary:hover, .btn-large:hover {
    background: linear-gradient(90deg, var(--pb-mint), var(--pb-gold));
    color: var(--pb-brown);
    transform: scale(1.08) rotate(-2deg);
    box-shadow: 0 6px 24px rgba(255,179,198,0.18);
}

/* About Section */
.about {
    padding: 6rem 2rem;
    background-color: white;
}

.about-content {
    max-width: 1200px;
    margin: 0 auto;
    text-align: center;
}

.about h2 {
    color: #4682B4;
    font-size: 2.8rem;
    font-family: 'Inter', 'Segoe UI', sans-serif;
    font-weight: 700;
    margin-bottom: 2rem;
    letter-spacing: -0.01em;
}

.about p {
    font-size: 1.3rem;
    max-width: 900px;
    margin: 0 auto 3rem;
    color: #5A6C7D;
    line-height: 1.8;
    font-weight: 400;
}

.features {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
    margin-top: 3rem;
}

.feature {
    padding: 2.5rem;
    background-color: white;
    border-radius: 12px;
    border: 1px solid #E8E8E8;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.06);
    transition: all 0.2s ease;
}

.feature:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 16px rgba(0, 0, 0, 0.1);
}

.feature-icon {
    font-size: 2.2rem;
    display: block;
    margin-bottom: 1.5rem;
    color: #DC143C;
}

.feature h3 {
    color: #2C3E50;
    font-size: 1.5rem;
    margin-bottom: 1rem;
    font-family: 'Inter', 'Segoe UI', sans-serif;
    font-weight: 600;
    letter-spacing: -0.01em;
}

.feature p {
    color: #5A6C7D;
    font-size: 1.15rem;
    line-height: 1.6;
    font-weight: 400;
}

.about-story,
.about-mission {
    margin-top: 3rem;
    padding: 2rem;
    background-color: white;
    border-radius: 12px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
}

.about-story h3,
.about-mission h3 {
    color: #2C3E50;
    font-size: 1.8rem;
    margin-bottom: 1rem;
    font-weight: 700;
}

.about-story p,
.about-mission p {
    color: #666;
    font-size: 1.1rem;
    line-height: 1.6;
    margin-bottom: 1rem;
}

.about-story ul {
    list-style: none;
    padding: 0;
}

.about-story li {
    padding: 0.5rem 0;
    color: #666;
    position: relative;
    padding-left: 1.5rem;
}

.about-story li:before {
    content: "✓";
    color: #4682B4;
    font-weight: bold;
    position: absolute;
    left: 0;
}

main {
    max-width: 1200px;
    margin: 0 auto;
}

.products {
    padding: 6rem 2rem;
    background-color: var(--pb-cream);
}

.products h2 {
    color: var(--pb-brown);
    font-size: 2.8rem;
    text-align: center;
    margin-bottom: 3rem;
    font-family: 'Inter', 'Segoe UI', sans-serif;
    font-weight: 700;
    letter-spacing: -0.01em;
}

.products-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
}

.product-card {
    background-color: white;
    border-radius: 12px;
    padding: 2.5rem;
    box-shadow: 0 2px 8px rgba(212, 160, 23, 0.08);
    transition: all 0.2s ease;
    position: relative;
    overflow: hidden;
    border: 1px solid #E8E8E8;
}

.product-card:hover {
    transform: translateY(-3px);
    box-shadow: 0 4px 16px rgba(0, 0, 0, 0.1);
}

.product-icon {
    font-size: 3rem;
    margin-bottom: 1rem;
}

.product-card h3 {
    color: #2C3E50;
    font-size: 1.6rem;
    margin-bottom: 1.5rem;
    text-align: center;
    font-family: 'Inter', 'Segoe UI', sans-serif;
    font-weight: 600;
    letter-spacing: -0.01em;
}

.product-description {
    color: #5A6C7D;
    font-size: 1rem;
    margin-bottom: 1.5rem;
    line-height: 1.6;
    font-weight: 600;
}

.variant {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1rem 0;
    border-bottom: 1px solid #E8E8E8;
    font-size: 1rem;
    font-weight: 500;
}

.variant:last-child {
    border-bottom: none;
}

.variant span:first-child {
    font-weight: 700;
}

.variant span:last-child {
    color: #8B4513;
    font-weight: 600;
    font-size: 1.1rem;
}

.custom-orders {
    text-align: center;
    margin-top: 3rem;
    padding: 2rem;
    background-color: white;
    border-radius: 12px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.06);
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
    border: 1px solid #E8E8E8;
}

.custom-orders p {
    font-size: 1.25rem;
    font-weight: 700;
}

/* Testimonials Section */
.testimonials {
    padding: 6rem 2rem;
    background: linear-gradient(135deg, var(--pb-gold), var(--pb-brown));
    position: relative;
}

.testimonials::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.1);
    pointer-events: none;
}

.testimonials h2 {
    color: var(--pb-dark);
    font-size: 2.8rem;
    text-align: center;
    margin-bottom: 3rem;
    font-family: 'Inter', 'Segoe UI', sans-serif;
    font-weight: 700;
    letter-spacing: -0.01em;
    position: relative;
    z-index: 1;
}

.testimonials-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    max-width: 1200px;
    margin: 0 auto;
}

.testimonial {
    background-color: var(--pb-cream);
    padding: 2.5rem;
    border-radius: 12px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.06);
    border: 1px solid var(--pb-gold);
    text-align: center;
    position: relative;
    z-index: 1;
}

.testimonial p {
    font-size: 1.1rem;
    font-style: italic;
    margin-bottom: 1.5rem;
    color: var(--pb-dark);
    line-height: 1.6;
    font-weight: 400;
}

.testimonial-rating {
    font-size: 1.2rem;
    margin-bottom: 1rem;
}

.customer {
    color: var(--pb-pink);
    font-weight: 600;
    font-size: 1rem;
    font-family: 'Inter', 'Segoe UI', sans-serif;
}

.order-form {
    background-color: white;
    padding: 3rem 2rem;
    border-radius: 20px;
    box-shadow: 0 4px 12px rgba(70, 130, 180, 0.2);
    border: 2px solid #4682B4;
    max-width: 800px;
    margin: 4rem auto;
}

.order-form h2 {
    color: #4682B4;
    font-size: 2.5rem;
    text-align: center;
    margin-bottom: 2rem;
    font-family: 'Playfair Display', serif;
}

.order-form form {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1rem;
}

.form-group {
    display: flex;
    flex-direction: column;
}

.order-form label {
    font-size: 1.1rem;
    color: #333;
    margin-bottom: 0.5rem;
    font-weight: bold;
}

.order-form input,
.order-form textarea {
    padding: 1rem;
    border: 2px solid #ddd;
    border-radius: 8px;
    font-size: 1rem;
    transition: border-color 0.3s ease;
}

.order-form input:focus,
.order-form textarea:focus {
    outline: none;
    border-color: #4682B4;
}

.order-form .btn {
    padding: 1.1rem 2.2rem;
    border-radius: 10px;
    font-size: 1.15rem;
    font-weight: 800;
    letter-spacing: 0.3px;
    cursor: pointer;
    transition: transform 0.2s ease, box-shadow 0.2s ease, background 0.2s ease, color 0.2s ease, border-color 0.2s ease;
    margin-top: 1rem;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    height: 56px;
    white-space: nowrap;
    line-height: 1;
}

/* Emphasized primary submit button */
.order-form .btn-primary {
    background: linear-gradient(135deg, #5a3b1a, #3b230f) !important;
    color: #ffffff;
    border: 3px solid #3b230f;
    box-shadow: 0 8px 22px rgba(59, 35, 15, 0.35);
    text-transform: uppercase;
    letter-spacing: 0.5px;
    font-size: 1.15rem;
}

.order-form .btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 10px 26px rgba(46, 26, 10, 0.45);
    filter: saturate(1.1);
    background: linear-gradient(135deg, #4b2f14, #2e1a0a) !important;
}

/* Clear form as strong secondary */
.order-form .btn-secondary {
    background: linear-gradient(135deg, #5a3b1a, #3b230f) !important;
    color: #ffffff;
    border: 3px solid #3b230f;
    box-shadow: 0 8px 22px rgba(59, 35, 15, 0.35);
    font-size: 1.15rem;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.order-form .btn-secondary:hover {
    background: linear-gradient(135deg, #4b2f14, #2e1a0a) !important;
    transform: translateY(-2px);
    box-shadow: 0 10px 26px rgba(46, 26, 10, 0.45);
}

/* Add recognizable icons so change is obvious */
.order-form .btn-primary::before {
    content: '🛒 ';
}
.order-form .btn-secondary::before {
    content: '🧹 ';
}

.order-form .btn:focus-visible {
    outline: 3px solid rgba(70, 130, 180, 0.5);
    outline-offset: 2px;
}

.order-form .form-actions {
    display: flex;
    justify-content: center;
    align-items: stretch;
    gap: 1rem;
    flex-wrap: nowrap;
}

@media (max-width: 600px) {
    .order-form .form-actions {
        flex-direction: column;
    }
    .order-form .form-actions .btn {
        width: 100%;
    }
}

/* Order Call Section */
.order-call {
    padding: 4rem 2rem;
    background: linear-gradient(135deg, var(--pb-gold), var(--pb-brown));
    text-align: center;
    max-width: 1200px;
    margin: 0 auto;
}

.order-call h2 {
    color: var(--pb-dark);
    font-size: 2.5rem;
    margin-bottom: 3rem;
    font-family: 'Arial Black', sans-serif;
}

.order-content {
    display: grid;
    gap: 3rem;
    max-width: 800px;
    margin: 0 auto;
}

.order-phone {
    background-color: white;
    padding: 3rem 2rem;
    border-radius: 20px;
    box-shadow: 0 4px 12px rgba(70, 130, 180, 0.2);
    border: 3px solid #4682B4;
}

.phone-icon {
    font-size: 4rem;
    margin-bottom: 1rem;
}

.order-phone h3 {
    color: #4682B4;
    font-size: 2rem;
    margin-bottom: 1rem;
    font-family: 'Arial Black', sans-serif;
}

.phone-number {
    margin: 1.5rem 0;
}

.phone-number a {
    font-size: 2.5rem;
    font-weight: bold;
    color: #DC143C;
    text-decoration: none;
    transition: all 0.3s ease;
}

.phone-number a:hover {
    color: #4682B4;
    transform: scale(1.05);
}

.order-phone p {
    font-size: 1.2rem;
    color: #666;
    margin-top: 1rem;
}

.order-features {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
    margin: 2rem 0;
}

.feature-item {
    background-color: white;
    padding: 2rem;
    border-radius: 15px;
    box-shadow: 0 4px 12px rgba(70, 130, 180, 0.2);
    border: 2px solid #4682B4;
    transition: transform 0.3s ease;
}

.feature-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 6px 16px rgba(70, 130, 180, 0.3);
}

.feature-item .feature-icon {
    font-size: 3rem;
    display: block;
    margin-bottom: 1rem;
}

.feature-item h4 {
    color: #4682B4;
    font-size: 1.3rem;
    margin-bottom: 0.5rem;
    font-family: 'Arial Black', sans-serif;
}

.feature-item p {
    color: #666;
    font-size: 1rem;
}

.order-cta {
    background-color: white;
    padding: 3rem 2rem;
    border-radius: 20px;
    box-shadow: 0 4px 12px rgba(70, 130, 180, 0.2);
    border: 3px solid #4682B4;
}

.order-cta h3 {
    color: #4682B4;
    font-size: 2rem;
    margin-bottom: 1rem;
    font-family: 'Arial Black', sans-serif;
}

.order-cta p {
    font-size: 1.2rem;
    color: #666;
    margin-bottom: 2rem;
}

.btn-large {
    font-size: 1.4rem;
    padding: 1.5rem 3rem;
    border-radius: 50px;
    text-decoration: none;
    display: inline-block;
    margin: 1rem 0;
    transition: all 0.3s ease;
    background-color: #4682B4;
    color: white;
}

.btn-large:hover {
    background-color: #DC143C;
    transform: translateY(-3px);
    box-shadow: 0 4px 12px rgba(70, 130, 180, 0.3);
}

.order-note {
    margin-top: 2rem;
    padding: 1rem;
    background-color: var(--pb-light);
    border-radius: 10px;
    border: 1px solid #4682B4;
    font-size: 1.2rem;
}

.order-note p {
    margin: 0;
    font-size: 1rem;
    color: #4682B4;
}

/* Footer */
footer {
    background-color: #333;
    color: white;
    padding: 3rem 2rem 1rem;
    margin-top: 4rem;
}

.footer-content {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
    max-width: 1200px;
    margin: 0 auto;
    margin-bottom: 2rem;
}

.footer-section h3 {
    color: #4682B4;
    font-size: 1.3rem;
    margin-bottom: 1rem;
    font-family: 'Playfair Display', serif;
}

.footer-section p {
    margin-bottom: 0.5rem;
    color: #ccc;
}

.footer-bottom {
    text-align: center;
    padding-top: 2rem;
    border-top: 1px solid #555;
    color: #999;
}

/* Payment Calculator */
.payment-calculator {
    background-color: var(--pb-light);
    padding: 2rem;
    border-radius: 15px;
    border: 2px solid #4682B4;
    margin-bottom: 3rem;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

.payment-calculator h3 {
    color: #4682B4;
    font-size: 1.8rem;
    text-align: center;
    margin-bottom: 2rem;
    font-family: 'Arial Black', sans-serif;
}

.calculator-form {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.product-selector,
.quantity-selector {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

.product-selector label,
.quantity-selector label {
    font-weight: bold;
    color: #333;
}

.product-selector select,
.quantity-selector input {
    padding: 0.8rem;
    border: 2px solid #ddd;
    border-radius: 8px;
    font-size: 1rem;
    transition: border-color 0.3s ease;
}

.product-selector select:focus,
.quantity-selector input:focus {
    outline: none;
    border-color: #D4A017;
}

.total-display {
    background-color: white;
    padding: 1.5rem;
    border-radius: 10px;
    border: 2px solid #D4A017;
    text-align: center;
}

.total-display h4 {
    color: #D4A017;
    font-size: 1.5rem;
    margin: 0;
    font-family: 'Playfair Display', serif;
}

/* Modal Styles */
.modal {
    display: none;
    position: fixed;
    z-index: 1000;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.5);
}

.modal-content {
    background-color: white;
    margin: 5% auto;
    padding: 2rem;
    border-radius: 15px;
    border: 2px solid #D4A017;
    width: 90%;
    max-width: 500px;
    position: relative;
}

.close {
    color: #aaa;
    float: right;
    font-size: 28px;
    font-weight: bold;
    cursor: pointer;
    position: absolute;
    right: 1rem;
    top: 1rem;
}

.close:hover {
    color: #D4A017;
}

.modal-content h3 {
    color: #D4A017;
    font-size: 1.8rem;
    margin-bottom: 2rem;
    font-family: 'Playfair Display', serif;
    text-align: center;
}

.payment-method-selection h4 {
    color: #333;
    margin-bottom: 1rem;
    font-size: 1.2rem;
}

.payment-options {
    display: flex;
    flex-direction: column;
    gap: 1rem;
    margin-bottom: 2rem;
}

.payment-option {
    display: flex;
    align-items: center;
    gap: 1rem;
    padding: 1rem;
    background-color: #FFF8DC;
    border: 2px solid #D4A017;
    border-radius: 10px;
    cursor: pointer;
    transition: all 0.3s ease;
    font-size: 1rem;
    font-weight: bold;
}

.payment-option:hover {
    background-color: #D4A017;
    color: white;
    transform: translateY(-2px);
}

.payment-option span {
    font-size: 1.5rem;
}

.payment-summary {
    background-color: #FFF8DC;
    padding: 1.5rem;
    border-radius: 10px;
    border: 1px solid #D4A017;
}

.payment-summary h4 {
    color: #D4A017;
    margin-bottom: 1rem;
    font-family: 'Playfair Display', serif;
}

.payment-summary p {
    margin-bottom: 0.5rem;
    color: #666;
}

/* Payment Section */
.payment-section {
    padding: 4rem 2rem;
    background-color: var(--pb-cream);
    max-width: 1200px;
    margin: 0 auto;
}

.payment-section h2 {
    color: var(--pb-gold);
    font-size: 2.5rem;
    text-align: center;
    margin-bottom: 3rem;
    font-family: 'Playfair Display', serif;
}

.payment-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2rem;
    margin-bottom: 4rem;
}

.payment-card {
    background-color: var(--pb-light);
    border: 2px solid #D4A017;
    border-radius: 15px;
    padding: 2rem;
    text-align: center;
    box-shadow: 0 4px 12px rgba(212, 160, 23, 0.2);
    transition: transform 0.3s ease;
}

.payment-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 6px 16px rgba(212, 160, 23, 0.3);
}

.payment-icon {
    font-size: 3rem;
    margin-bottom: 1rem;
}

.payment-card h3 {
    color: #D4A017;
    font-size: 1.5rem;
    margin-bottom: 1rem;
    font-family: 'Playfair Display', serif;
}

.payment-card p {
    color: #666;
    margin-bottom: 1rem;
    line-height: 1.5;
}

.payment-card p strong {
    font-size: 1.35rem;
}

.payment-note {
    background-color: white;
    padding: 1rem;
    border-radius: 8px;
    border: 1px solid #D4A017;
    margin-top: 1rem;
    font-size: 1.2rem;
}

.payment-note strong {
    color: #D4A017;
}

.payment-details {
    background-color: white;
    padding: 1rem;
    border-radius: 8px;
    border: 1px solid #D4A017;
    margin-top: 1rem;
    text-align: left;
}

.payment-details p {
    margin-bottom: 0.5rem;
    font-size: 0.9rem;
}

.payment-details strong {
    font-size: 1.25rem;
}

.payment-instructions {
    background-color: var(--pb-light);
    padding: 2rem;
    border-radius: 15px;
    border: 2px solid #D4A017;
    margin-bottom: 3rem;
}

.payment-instructions h3 {
    color: #D4A017;
    font-size: 1.8rem;
    text-align: center;
    margin-bottom: 2rem;
    font-family: 'Playfair Display', serif;
}

.instructions-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 1.5rem;
}

.instruction {
    display: flex;
    align-items: center;
    gap: 1rem;
    padding: 1rem;
    background-color: white;
    border-radius: 10px;
    border: 1px solid #D4A017;
}

.step {
    background-color: var(--pb-gold);
    color: var(--pb-dark);
    width: 30px;
    height: 30px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: bold;
    font-size: 1.1rem;
    flex-shrink: 0;
}

.instruction p {
    margin: 0;
    color: #333;
    font-weight: 500;
}

.payment-policy {
    background-color: var(--pb-cream);
    padding: 2rem;
    border-radius: 15px;
    border: 2px solid #D4A017;
    box-shadow: 0 4px 12px rgba(212, 160, 23, 0.2);
}

.payment-policy h3 {
    color: #D4A017;
    font-size: 1.8rem;
    margin-bottom: 1.5rem;
    font-family: 'Playfair Display', serif;
}

.payment-policy ul {
    list-style: none;
    padding: 0;
}

.payment-policy li {
    padding: 0.8rem 0;
    border-bottom: 1px solid #eee;
    color: #666;
    position: relative;
    padding-left: 1.5rem;
}

.payment-policy li:before {
    content: "✓";
    color: #D4A017;
    font-weight: bold;
    position: absolute;
    left: 0;
}

.payment-policy li:last-child {
    border-bottom: none;
}

/* Hamburger Menu Styles */
.hamburger {
    display: none;
    flex-direction: column;
    cursor: pointer;
    padding: 0.5rem;
    background: none;
    border: none;
    z-index: 1001;
    position: relative;
}

.hamburger span {
    width: 25px;
    height: 3px;
    background-color: var(--pb-brown);
    margin: 3px 0;
    transition: 0.3s;
    border-radius: 2px;
}

.hamburger.active span:nth-child(1) {
    transform: rotate(-45deg) translate(-5px, 6px);
}

.hamburger.active span:nth-child(2) {
    opacity: 0;
}

.hamburger.active span:nth-child(3) {
    transform: rotate(45deg) translate(-5px, -6px);
}

.mobile-nav {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100vh;
    background: linear-gradient(135deg, var(--pb-peach) 60%, var(--pb-mint) 100%);
    z-index: 1000;
    padding-top: 80px;
    transform: translateX(-100%);
    transition: transform 0.3s ease-in-out;
}

.mobile-nav.active {
    transform: translateX(0);
}

.mobile-nav ul {
    list-style: none;
    padding: 0;
    margin: 0;
    text-align: center;
}

.mobile-nav li {
    margin: 1rem 0;
}

.mobile-nav a {
    display: block;
    color: var(--pb-dark);
    text-decoration: none;
    font-size: 1.5rem;
    font-weight: 600;
    padding: 1rem 2rem;
    margin: 0 1rem;
    border-radius: 8px;
    transition: all 0.3s ease;
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.2);
}

.mobile-nav a:hover,
.mobile-nav a.active {
    background: var(--pb-gold);
    color: var(--pb-brown);
    transform: scale(1.05);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
}

.mobile-nav-close {
    position: absolute;
    top: 20px;
    right: 20px;
    background: none;
    border: none;
    font-size: 2rem;
    color: var(--pb-dark);
    cursor: pointer;
    z-index: 1001;
}

/* Responsive Design */
@media (max-width: 768px) {
    .hamburger {
        display: flex;
    }

    nav {
        display: none;
    }

    .mobile-nav {
        display: block;
    }

    .logo-container {
        flex-direction: column;
        text-align: center;
    }

    .brand-info {
        text-align: center;
    }

    .logo {
        height: 150px;
    }

    .brand-info h1 {
        font-size: 2.5rem;
    }

    .brand-info h2 {
        font-size: 1.8rem;
    }

    .hero-content h1 {
        font-size: 2.5rem;
    }

    .hero-buttons {
        flex-direction: column;
        align-items: center;
    }

    .form-row {
        grid-template-columns: 1fr;
    }

    .features {
        grid-template-columns: 1fr;
    }

    .testimonials-grid {
        grid-template-columns: 1fr;
    }

    .footer-content {
        grid-template-columns: 1fr;
        text-align: center;
    }

    .payment-grid {
        grid-template-columns: 1fr;
    }

    .instructions-grid {
        grid-template-columns: 1fr;
    }

    .order-features {
        grid-template-columns: 1fr;
    }

    .phone-number a {
        font-size: 2rem;
    }

    .btn-large {
        font-size: 1.2rem;
        padding: 1.2rem 2rem;
    }
}

@media (max-width: 480px) {
    .hero {
        padding: 4rem 1rem;
    }

    .hero-content h1 {
        font-size: 2rem;
    }

    .hero-content p {
        font-size: 1.1rem;
    }

    .products-grid {
        grid-template-columns: 1fr;
    }

    .order-form {
        padding: 2rem 1rem;
    }
}

/* Enhanced Testimonials */
.testimonials {
    background: linear-gradient(135deg, var(--pb-gold), var(--pb-brown));
    padding: 5rem 2rem;
    color: var(--pb-dark);
    position: relative;
}

.testimonials::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.1);
    pointer-events: none;
}

.testimonials h2 {
    text-align: center;
    font-size: 2.8rem;
    font-weight: 700;
    margin-bottom: 3rem;
    position: relative;
    z-index: 1;
    letter-spacing: -0.02em;
}

.testimonials-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 2rem;
    max-width: 1200px;
    margin: 0 auto;
    position: relative;
    z-index: 1;
}

.testimonial {
    background: rgba(255, 255, 255, 0.1);
    padding: 2rem;
    border-radius: 12px;
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    transition: all 0.3s ease;
    position: relative;
}

.testimonial:hover {
    transform: translateY(-5px);
    background: rgba(255, 255, 255, 0.15);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.2);
}

.testimonial-content {
    margin-bottom: 1rem;
}

.testimonial p {
    font-size: 1.1rem;
    line-height: 1.6;
    margin-bottom: 1rem;
    font-style: italic;
}

.testimonial-rating {
    font-size: 1.2rem;
    margin-bottom: 1rem;
}

.customer {
    font-weight: 600;
    font-size: 1rem;
    opacity: 0.9;
    display: block;
    margin-top: 1rem;
}

/* Comments Section */
.comments-section {
    background-color: #FAFAFA;
    padding: 5rem 2rem;
    max-width: 1200px;
    margin: 0 auto;
}

.comments-section h2 {
    text-align: center;
    font-size: 2.8rem;
    font-weight: 700;
    margin-bottom: 1rem;
    color: #2C3E50;
    letter-spacing: -0.02em;
}

.comments-intro {
    text-align: center;
    font-size: 1.2rem;
    color: #666;
    margin-bottom: 3rem;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

.comment-form-container {
    background: white;
    padding: 3rem;
    border-radius: 12px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
    margin-bottom: 3rem;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}

.comment-form {
    display: grid;
    gap: 1.5rem;
}

.form-group {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

.form-group label {
    font-weight: 600;
    color: #2C3E50;
    font-size: 1rem;
}

.form-group input,
.form-group select,
.form-group textarea {
    padding: 1rem;
    border: 2px solid #E8E8E8;
    border-radius: 8px;
    font-size: 1rem;
    transition: all 0.2s ease;
    font-family: inherit;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    border-color: #4682B4;
    box-shadow: 0 0 0 3px rgba(70, 130, 180, 0.1);
}

.form-group textarea {
    resize: vertical;
    min-height: 120px;
}

.comment-form .btn {
    margin-top: 1rem;
    align-self: start;
}

.comments-display {
    max-width: 800px;
    margin: 0 auto;
}

.comments-display h3 {
    font-size: 2rem;
    font-weight: 700;
    margin-bottom: 2rem;
    color: #2C3E50;
    text-align: center;
}

.comments-list {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.comment-item {
    background: white;
    padding: 2rem;
    border-radius: 12px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
    border-left: 4px solid #4682B4;
    transition: all 0.2s ease;
}

.comment-item:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
}

.comment-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 1rem;
}

.comment-author {
    font-weight: 600;
    color: #2C3E50;
    font-size: 1.1rem;
}

.comment-date {
    color: #666;
    font-size: 0.9rem;
}

.comment-rating {
    font-size: 1.1rem;
    margin-bottom: 0.5rem;
}

.comment-product {
    color: #4682B4;
    font-weight: 500;
    margin-bottom: 1rem;
    font-size: 0.9rem;
}

.comment-text {
    color: #2C3E50;
    line-height: 1.6;
    font-size: 1rem;
}

/* Responsive Design for Comments */
@media (max-width: 768px) {
    .testimonials-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
    
    .testimonial {
        padding: 1.5rem;
    }
    
    .comments-section {
        padding: 3rem 1rem;
    }
    
    .comment-form-container {
        padding: 2rem;
    }
    
    .comment-item {
        padding: 1.5rem;
    }
    
    .comment-header {
        flex-direction: column;
        align-items: flex-start;
        gap: 0.5rem;
    }
}

@media (max-width: 480px) {
    .testimonials h2,
    .comments-section h2 {
        font-size: 2.2rem;
    }
    
    .comment-form-container {
        padding: 1.5rem;
    }
    
    .comment-item {
        padding: 1rem;
    }
}

/* Order Form Styles */
.order-form-section {
    background-color: var(--pb-cream);
    padding: 5rem 2rem;
    max-width: 1200px;
    margin: 0 auto;
}

.order-form-section h2 {
    text-align: center;
    font-size: 2.8rem;
    font-weight: 700;
    margin-bottom: 1rem;
    color: #2C3E50;
    letter-spacing: -0.02em;
}

.order-form-intro {
    text-align: center;
    font-size: 1.2rem;
    color: #666;
    margin-bottom: 3rem;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

.order-form-container {
    background: white;
    padding: 3rem;
    border-radius: 12px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
    max-width: 1000px;
    margin: 0 auto;
}

.order-form {
    display: grid;
    gap: 2rem;
}

.order-form .form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1.5rem;
}

.order-form .form-group {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

.order-form .form-group label {
    font-weight: 600;
    color: #2C3E50;
    font-size: 1rem;
}

.order-form .form-group input,
.order-form .form-group textarea {
    padding: 1rem;
    border: 2px solid #E8E8E8;
    border-radius: 8px;
    font-size: 1rem;
    transition: all 0.2s ease;
    font-family: inherit;
}

.order-form .form-group input:focus,
.order-form .form-group textarea:focus {
    outline: none;
    border-color: #4682B4;
    box-shadow: 0 0 0 3px rgba(70, 130, 180, 0.1);
}

.order-items-section {
    border: 2px solid var(--pb-gold);
    border-radius: 12px;
    padding: 2rem;
    background-color: var(--pb-light);
}

.order-items-section h3 {
    color: #2C3E50;
    font-size: 1.8rem;
    margin-bottom: 2rem;
    text-align: center;
    font-weight: 700;
}

.order-items-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(400px, 1fr));
    gap: 1.5rem;
}

.order-item {
    background: white;
    padding: 1.5rem;
    border-radius: 8px;
    border: 1px solid #E8E8E8;
    transition: all 0.2s ease;
}

.order-item:hover {
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
}

.item-header {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-bottom: 1rem;
    padding-bottom: 1rem;
    border-bottom: 1px solid #E8E8E8;
}

.item-icon {
    font-size: 2rem;
}

.item-header h4 {
    color: #2C3E50;
    font-size: 1.3rem;
    font-weight: 600;
    margin: 0;
}

.item-options {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.option-group {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

.option-group label {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-size: 1rem;
    color: #2C3E50;
    cursor: pointer;
    padding: 0.5rem;
    border-radius: 4px;
    transition: background-color 0.2s ease;
}

.option-group label:hover {
    background-color: #F8F9FA;
}

.option-group input[type="checkbox"] {
    width: 18px;
    height: 18px;
    accent-color: #4682B4;
}

.quantity-group {
    display: flex;
    align-items: center;
    gap: 1rem;
    padding: 0.5rem;
    background-color: #F8F9FA;
    border-radius: 6px;
}

.quantity-group label {
    font-weight: 600;
    color: #2C3E50;
    font-size: 0.9rem;
}

.qty-input {
    width: 80px;
    padding: 0.5rem;
    border: 1px solid #E8E8E8;
    border-radius: 4px;
    text-align: center;
    font-size: 1rem;
}

.order-summary {
    background-color: var(--pb-light);
    padding: 2rem;
    border-radius: 12px;
    border: 2px solid #4682B4;
}

.order-summary h3 {
    color: #2C3E50;
    font-size: 1.8rem;
    margin-bottom: 1.5rem;
    text-align: center;
    font-weight: 700;
}

.order-items-list {
    display: flex;
    flex-direction: column;
    gap: 1rem;
    margin-bottom: 2rem;
}

.order-item-summary {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1rem;
    background: white;
    border-radius: 8px;
    border: 1px solid #E8E8E8;
    font-size: 1rem;
    font-weight: 500;
}

.order-item-summary span:last-child {
    color: #DC143C;
    font-weight: 600;
}

.total-display {
    text-align: center;
    padding: 1.5rem;
    background: white;
    border-radius: 8px;
    border: 2px solid #DC143C;
}

.total-display h4 {
    color: #2C3E50;
    font-size: 1.5rem;
    font-weight: 700;
    margin: 0;
}

.form-actions {
    display: flex;
    gap: 1rem;
    justify-content: center;
    flex-wrap: wrap;
}

.form-actions .btn {
    min-width: 150px;
}

/* Responsive Design for Order Form */
@media (max-width: 768px) {
    .order-form-section {
        padding: 3rem 1rem;
    }
    
    .order-form-container {
        padding: 2rem;
    }
    
    .order-form .form-row {
        grid-template-columns: 1fr;
    }
    
    .order-items-grid {
        grid-template-columns: 1fr;
    }
    
    .item-options {
        gap: 0.8rem;
    }
    
    .quantity-group {
        flex-direction: column;
        align-items: flex-start;
        gap: 0.5rem;
    }
    
    .form-actions {
        flex-direction: column;
        align-items: center;
    }
}

@media (max-width: 480px) {
    .order-form-section h2 {
        font-size: 2.2rem;
    }
    
    .order-form-container {
        padding: 1.5rem;
    }
    
    .order-item {
        padding: 1rem;
    }
    
    .item-header {
        flex-direction: column;
        text-align: center;
        gap: 0.5rem;
    }
}

/* Make testimonial quotes and customer names white in testimonials section */
.testimonials .testimonial p,
.testimonials .customer {
    color: unset !important;
}

/* Back to Top Arrow Button - whimsical bounce */
#backToTop {
    background: var(--pb-pink);
    color: var(--pb-dark);
    border-radius: 50%;
    font-size: 2.2rem;
    border: 3px solid var(--pb-gold);
    animation: bounce 2s infinite;
    box-shadow: 0 4px 16px rgba(255,179,198,0.18);
}
#backToTop:hover {
    background: var(--pb-gold);
    color: var(--pb-brown);
    transform: scale(1.15) rotate(-8deg);
    box-shadow: 0 8px 32px rgba(255,214,165,0.18);
}
@keyframes bounce {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-12px); }
}

/* Sprinkle confetti on button click (optional JS effect) */
.confetti {
    position: absolute;
    pointer-events: none;
    z-index: 9999;
    width: 8px; height: 8px;
    border-radius: 50%;
    background: var(--pb-gold);
    animation: confetti-fall 1.2s linear forwards;
}
@keyframes confetti-fall {
    to { transform: translateY(120px) rotate(360deg); opacity: 0; }
}

/* Add more fun as needed! */
.payment-card .payment-icon {
    font-size: 2.7rem;
}

.payment-card h3 {
    font-size: 1.7rem;
}

.payment-card p strong {
    font-size: 1.35rem;
}

.highlighted-section {
    font-size: 1.25rem;
    font-weight: 700;
    color: var(--pb-dark);
}

.highlighted-list {
    font-size: 1.18rem;
    font-weight: 700;
    color: var(--pb-dark);
}

.custom-orders p {
    font-size: 1.25rem;
    font-weight: 700;
}

.comic-sans {
    font-family: 'Comic Sans MS', 'Comic Sans', cursive !important;
}