:root {
    /* Pru's Creations - Teal, Purple & Blush Brand Palette */
    --pooh-red: #12D5C8;          /* Primary teal (buttons, header gradient) */
    --pooh-red-dark: #B45CFF;     /* Brand purple (hover, gradients) */
    --pooh-red-light: #7EEDE3;    /* Soft teal highlight */

    --honey-yellow: #FFB1C8;      /* Blush pink accent */
    --honey-gold: #E9D9FF;        /* Soft lavender accent */
    --honey-light: #F7ECFF;       /* Very light lavender background */
    --honey-cream: #FFF9F5;       /* Warm off‑white background */

    --warm-beige: #F7ECFF;        /* Pale lavender background */
    --soft-cream: #FFF9F5;        /* Main page background */
    --light-cream: #FDF7FF;       /* Lightest background */

    --text-primary: #3A2342;      /* Deep plum text */
    --text-secondary: #5E4B52;    /* Warm cocoa text */
    --text-light: #7C6A80;        /* Soft muted text */

    --bg-primary: #FFF9F5;
    --bg-secondary: #F7ECFF;
    --bg-tertiary: #E9D9FF;

    --success-color: #48A58C;
    --success-dark: #32806B;
    --danger-color: #E96A7A;

    --shadow-sm: 0 2px 8px rgba(23, 7, 35, 0.06);
    --shadow-md: 0 4px 16px rgba(23, 7, 35, 0.10);
    --shadow-lg: 0 8px 24px rgba(23, 7, 35, 0.14);

    --radius-sm: 8px;
    --radius-md: 12px;
    --radius-lg: 16px;
    --radius-xl: 20px;

    --transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Lato', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
    background: linear-gradient(135deg, var(--soft-cream) 0%, var(--honey-light) 50%, var(--warm-beige) 100%);
    color: var(--text-primary);
    line-height: 1.6;
    min-height: 100vh;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

h1, h2, h3, h4, h5, h6 {
    font-family: 'Playfair Display', Georgia, serif;
    font-weight: 600;
    line-height: 1.3;
}

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

/* Header */
.site-header {
    background: linear-gradient(135deg, var(--pooh-red) 0%, var(--pooh-red-dark) 100%);
    box-shadow: var(--shadow-md);
    position: sticky;
    top: 0;
    z-index: 100;
}

.header-content {
    padding: 20px 0;
}

.logo-section {
    display: flex;
    align-items: center;
    gap: 20px;
}

.logo {
    width: 70px;
    height: 70px;
    border-radius: 50%;
    background: radial-gradient(circle at top left, var(--honey-light), var(--honey-cream));
    box-shadow: var(--shadow-sm);
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 6px;
    overflow: hidden;
}

.logo img {
    width: 100%;
    height: auto;
    display: block;
}

.honey-pot {
    width: 30px;
    height: 35px;
    background: linear-gradient(180deg, var(--honey-yellow) 0%, var(--honey-gold) 100%);
    border-radius: 5px 5px 8px 8px;
    position: relative;
}

.honey-pot::before {
    content: '';
    position: absolute;
    top: -8px;
    left: 50%;
    transform: translateX(-50%);
    width: 20px;
    height: 12px;
    background: var(--honey-gold);
    border-radius: 3px 3px 0 0;
}

.brand h1 {
    font-size: 2em;
    color: var(--honey-cream);
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.3);
    margin: 0;
}

.tagline {
    font-size: 0.9em;
    color: var(--text-light);
    font-style: italic;
    margin: 0;
}

/* Hero Section */
.hero {
    padding: 60px 0;
    text-align: center;
}

.hero-content h2 {
    font-size: 2.5em;
    color: var(--pooh-red-dark);
    margin-bottom: 15px;
}

.hero-content p {
    font-size: 1.2em;
    color: var(--text-secondary);
    max-width: 700px;
    margin: 0 auto;
}

/* Main Content */
.main-content {
    padding: 40px 0 80px;
}

.section-header {
    text-align: center;
    margin-bottom: 40px;
}

.section-header h2 {
    font-size: 2em;
    color: var(--pooh-red-dark);
    margin-bottom: 10px;
}

.section-header p {
    font-size: 1.1em;
    color: var(--text-light);
}

/* Product Configurator */
.product-section {
    margin-bottom: 60px;
}

.configurator {
    display: grid;
    gap: 24px;
    margin-bottom: 40px;
}

.config-card {
    background: white;
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-sm);
    overflow: hidden;
    transition: var(--transition);
}

.config-card:hover {
    box-shadow: var(--shadow-md);
}

.card-header {
    background: linear-gradient(135deg, var(--honey-light) 0%, var(--honey-yellow) 100%);
    padding: 20px 24px;
    display: flex;
    align-items: center;
    gap: 15px;
    border-bottom: 3px solid var(--honey-gold);
}

.step-number {
    width: 36px;
    height: 36px;
    background: var(--pooh-red);
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: bold;
    font-size: 1.1em;
    box-shadow: var(--shadow-sm);
}

.card-header h3 {
    font-size: 1.3em;
    color: var(--pooh-red-dark);
    margin: 0;
}

.card-body {
    padding: 24px;
}

/* Form Elements */
.form-select {
    width: 100%;
    padding: 14px 16px;
    border: 2px solid var(--honey-yellow);
    border-radius: var(--radius-md);
    font-size: 1em;
    font-family: inherit;
    background: var(--bg-primary);
    color: var(--text-primary);
    cursor: pointer;
    transition: var(--transition);
    appearance: none;
    background-image: url("data:image/svg+xml,%3Csvg width='12' height='8' viewBox='0 0 12 8' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M1 1L6 6L11 1' stroke='%234A3728' stroke-width='2' stroke-linecap='round'/%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: right 16px center;
    padding-right: 44px;
}

.form-select:hover {
    border-color: var(--honey-gold);
}

.form-select:focus {
    outline: none;
    border-color: var(--pooh-red);
    box-shadow: 0 0 0 3px rgba(231, 76, 60, 0.1);
}

/* Shape Grid Selector */
.shape-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(140px, 1fr));
    gap: 16px;
    margin-top: 8px;
}

.shape-item {
    position: relative;
    border: 3px solid var(--honey-yellow);
    border-radius: var(--radius-md);
    overflow: hidden;
    cursor: pointer;
    transition: var(--transition);
    background: var(--bg-primary);
    aspect-ratio: 1;
    display: flex;
    flex-direction: column;
}

.shape-item:hover {
    border-color: var(--honey-gold);
    transform: translateY(-4px);
    box-shadow: var(--shadow-md);
}

.shape-item.selected {
    border-color: var(--pooh-red);
    box-shadow: 0 0 0 3px rgba(231, 76, 60, 0.2);
    transform: scale(1.02);
}

.shape-item img {
    width: 100%;
    height: calc(100% - 36px);
    object-fit: cover;
    object-position: center;
}

.shape-name {
    display: block;
    padding: 8px;
    text-align: center;
    font-size: 0.85em;
    font-weight: 600;
    color: var(--text-primary);
    background: var(--honey-cream);
    border-top: 2px solid var(--honey-yellow);
    height: 36px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.shape-item.selected .shape-name {
    background: var(--pooh-red);
    color: white;
    border-top-color: var(--pooh-red-dark);
}

/* Custom Round Section Styling */
.custom-round-section {
    background: linear-gradient(135deg, var(--honey-light) 0%, var(--honey-cream) 100%);
    border: 2px solid var(--honey-gold);
}

.custom-round-section .step-number {
    background: var(--pooh-red);
    font-size: 1.2em;
}

.custom-description {
    color: var(--text-secondary);
    margin-bottom: 16px;
    text-align: center;
    font-style: italic;
}

/* Mobile Responsive */
@media (max-width: 768px) {
    .shape-grid {
        grid-template-columns: repeat(auto-fill, minmax(110px, 1fr));
        gap: 12px;
    }
    
    .shape-name {
        font-size: 0.75em;
        padding: 6px;
    }
}

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


/* Custom Image Upload */
.custom-image-upload {
    display: none;
    margin-top: 20px;
}

.custom-image-upload.active {
    display: block;
}

.upload-area {
    border: 2px dashed var(--honey-yellow);
    border-radius: var(--radius-md);
    padding: 40px 20px;
    text-align: center;
    background: var(--honey-cream);
    cursor: pointer;
    transition: var(--transition);
    position: relative;
}

.upload-area:hover {
    border-color: var(--honey-gold);
    background: var(--honey-light);
}

.upload-icon {
    color: var(--honey-gold);
    margin-bottom: 12px;
}

.upload-text {
    font-weight: 500;
    color: var(--text-primary);
    margin-bottom: 8px;
}

.upload-hint {
    font-size: 0.9em;
    color: var(--text-light);
}

.file-input {
    position: absolute;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    opacity: 0;
    cursor: pointer;
}

.image-preview {
    margin-top: 16px;
    display: none;
}

.image-preview.active {
    display: block;
}

.preview-container {
    position: relative;
    display: inline-block;
    border-radius: var(--radius-md);
    overflow: hidden;
    box-shadow: var(--shadow-sm);
}

.preview-image {
    max-width: 200px;
    max-height: 200px;
    display: block;
    border-radius: var(--radius-md);
}

.remove-preview {
    position: absolute;
    top: 8px;
    right: 8px;
    background: var(--danger-color);
    color: white;
    border: none;
    border-radius: 50%;
    width: 32px;
    height: 32px;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    box-shadow: var(--shadow-sm);
    transition: var(--transition);
}

.remove-preview:hover {
    background: #c9302c;
    transform: scale(1.1);
}

/* Color Picker */
.color-picker-wrapper {
    display: flex;
    align-items: center;
    gap: 20px;
    padding: 20px;
    background: var(--bg-primary);
    border: 2px solid var(--honey-yellow);
    border-radius: var(--radius-md);
}

.color-input {
    width: 100px;
    height: 100px;
    border: 4px solid var(--honey-yellow);
    border-radius: 50%;
    cursor: pointer;
    transition: var(--transition);
}

.color-input:hover {
    transform: scale(1.05);
    box-shadow: var(--shadow-md);
    border-color: var(--pooh-red);
}

.color-info {
    flex: 1;
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.color-label {
    font-weight: 600;
    color: var(--text-secondary);
    font-size: 0.9em;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.color-name {
    font-size: 1.3em;
    font-weight: bold;
    color: var(--text-primary);
}

.color-hex {
    font-family: 'Courier New', monospace;
    color: var(--text-light);
    font-size: 0.95em;
}

/* Radio Group */
.radio-group {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 16px;
}

.radio-card {
    position: relative;
    cursor: pointer;
}

.radio-card input[type="radio"] {
    position: absolute;
    opacity: 0;
    cursor: pointer;
}

.radio-content {
    display: block;
    padding: 20px;
    background: var(--bg-primary);
    border: 2px solid var(--honey-yellow);
    border-radius: var(--radius-md);
    transition: var(--transition);
}

.radio-card:hover .radio-content {
    border-color: var(--honey-gold);
    background: var(--honey-cream);
}

.radio-card input[type="radio"]:checked ~ .radio-content {
    border-color: var(--pooh-red);
    background: var(--honey-light);
    box-shadow: var(--shadow-sm);
}

.radio-title {
    display: block;
    font-weight: 600;
    color: var(--text-primary);
    margin-bottom: 4px;
}

.radio-desc {
    display: block;
    font-size: 0.9em;
    color: var(--text-light);
}

/* Quantity Selector */
.quantity-selector {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0;
    max-width: 200px;
    margin: 0 auto;
}

.qty-btn {
    background: var(--honey-yellow);
    border: 2px solid var(--honey-gold);
    color: var(--text-primary);
    width: 50px;
    height: 50px;
    font-size: 1.5em;
    font-weight: bold;
    cursor: pointer;
    transition: var(--transition);
    display: flex;
    align-items: center;
    justify-content: center;
}

.qty-btn:first-child {
    border-radius: var(--radius-md) 0 0 var(--radius-md);
}

.qty-btn:last-child {
    border-radius: 0 var(--radius-md) var(--radius-md) 0;
}

.qty-btn:hover {
    background: var(--pooh-red);
    color: white;
    border-color: var(--pooh-red-dark);
}

.qty-btn:active {
    transform: scale(0.95);
}

.qty-input {
    width: 80px;
    height: 50px;
    text-align: center;
    font-size: 1.3em;
    font-weight: bold;
    border: 2px solid var(--honey-gold);
    border-left: none;
    border-right: none;
    background: white;
    color: var(--text-primary);
}

/* Buttons */
.btn {
    padding: 14px 32px;
    border: none;
    border-radius: var(--radius-md);
    font-size: 1em;
    font-weight: 600;
    cursor: pointer;
    transition: var(--transition);
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    text-decoration: none;
    font-family: inherit;
}

.btn-primary {
    background: linear-gradient(135deg, var(--pooh-red) 0%, var(--pooh-red-dark) 100%);
    color: white;
    box-shadow: var(--shadow-sm);
}

.btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: var(--shadow-md);
    background: linear-gradient(135deg, var(--pooh-red-dark) 0%, var(--pooh-red) 100%);
}

.btn-success {
    background: linear-gradient(135deg, var(--success-color) 0%, var(--success-dark) 100%);
    color: white;
    box-shadow: var(--shadow-sm);
}

.btn-success:hover {
    transform: translateY(-2px);
    box-shadow: var(--shadow-md);
}

.btn-outline {
    background: transparent;
    border: 2px solid var(--honey-yellow);
    color: var(--text-primary);
}

.btn-outline:hover {
    background: var(--honey-light);
    border-color: var(--honey-gold);
}

.btn-large {
    width: 100%;
    padding: 18px 32px;
    font-size: 1.1em;
}

.btn:active {
    transform: translateY(0);
}

.btn:disabled {
    opacity: 0.5;
    cursor: not-allowed;
    pointer-events: none;
}

/* Order Summary */
.order-summary {
    background: white;
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-md);
    overflow: hidden;
    margin-bottom: 40px;
}

.summary-header {
    background: linear-gradient(135deg, var(--honey-light) 0%, var(--honey-yellow) 100%);
    padding: 20px 24px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    border-bottom: 3px solid var(--honey-gold);
}

.summary-header h3 {
    font-size: 1.4em;
    color: var(--pooh-red-dark);
    margin: 0;
}

.item-count {
    background: white;
    padding: 6px 16px;
    border-radius: 20px;
    font-weight: 600;
    color: var(--pooh-red);
    font-size: 0.9em;
    box-shadow: var(--shadow-sm);
}

.order-items {
    padding: 24px;
    min-height: 150px;
}

.empty-state {
    text-align: center;
    padding: 40px 20px;
    color: var(--text-light);
}

.empty-state svg {
    color: var(--honey-yellow);
    margin-bottom: 16px;
}

.empty-state p {
    font-size: 1.1em;
}

.order-item {
    background: var(--honey-cream);
    padding: 20px;
    margin-bottom: 12px;
    border-radius: var(--radius-md);
    border-left: 4px solid var(--pooh-red);
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    gap: 16px;
    transition: var(--transition);
}

.order-item:hover {
    box-shadow: var(--shadow-sm);
}

.order-item:last-child {
    margin-bottom: 0;
}

.item-details {
    flex: 1;
}

.item-title {
    font-weight: 600;
    color: var(--text-primary);
    font-size: 1.1em;
    margin-bottom: 8px;
}

.item-specs {
    display: flex;
    flex-direction: column;
    gap: 4px;
    font-size: 0.95em;
    color: var(--text-secondary);
}

.item-spec {
    display: flex;
    align-items: center;
    gap: 8px;
}

.color-swatch {
    display: inline-block;
    width: 24px;
    height: 24px;
    border-radius: 50%;
    border: 2px solid rgba(0, 0, 0, 0.1);
    vertical-align: middle;
}

.remove-item-btn {
    background: var(--pooh-red);
    color: white;
    border: none;
    padding: 8px 16px;
    border-radius: var(--radius-sm);
    font-size: 0.9em;
    font-weight: 600;
    cursor: pointer;
    transition: var(--transition);
    white-space: nowrap;
}

.remove-item-btn:hover {
    background: var(--pooh-red-dark);
    transform: translateY(-1px);
}

/* Pricing Info */
.pricing-info {
    padding: 20px 24px;
    background: var(--honey-cream);
    border-top: 2px solid var(--honey-yellow);
}

.pricing-breakdown {
    margin-bottom: 16px;
}

.price-row {
    display: flex;
    justify-content: space-between;
    padding: 8px 0;
    color: var(--text-secondary);
}

.total-price {
    display: flex;
    justify-content: space-between;
    padding-top: 16px;
    border-top: 2px solid var(--honey-gold);
    font-size: 1.5em;
    font-weight: bold;
    color: var(--pooh-red-dark);
}

/* Customer Info Section */
.customer-info-section {
    background: white;
    padding: 40px;
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-md);
    margin-bottom: 40px;
}

.form-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 20px;
    margin-bottom: 24px;
}

.form-group {
    display: flex;
    flex-direction: column;
}

.form-group.full-width {
    grid-column: 1 / -1;
}

.form-label {
    font-weight: 600;
    color: var(--text-secondary);
    margin-bottom: 8px;
    font-size: 0.95em;
}

.form-input {
    width: 100%;
    padding: 14px 16px;
    border: 2px solid var(--honey-yellow);
    border-radius: var(--radius-md);
    font-size: 1em;
    font-family: inherit;
    background: var(--bg-primary);
    color: var(--text-primary);
    transition: var(--transition);
}

.form-input:hover {
    border-color: var(--honey-gold);
}

.form-input:focus {
    outline: none;
    border-color: var(--pooh-red);
    box-shadow: 0 0 0 3px rgba(231, 76, 60, 0.1);
}

.form-input::placeholder {
    color: var(--text-light);
    opacity: 0.6;
}

/* Confirmation */
.confirmation {
    display: none;
    background: white;
    padding: 60px 40px;
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-lg);
    text-align: center;
    max-width: 600px;
    margin: 0 auto;
}

.confirmation.active {
    display: block;
}

.confirmation-icon {
    width: 100px;
    height: 100px;
    background: linear-gradient(135deg, var(--success-color) 0%, var(--success-dark) 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 24px;
    box-shadow: var(--shadow-md);
}

.confirmation-icon svg {
    color: white;
}

.confirmation h2 {
    color: var(--success-color);
    font-size: 2em;
    margin-bottom: 16px;
}

.confirmation p {
    font-size: 1.1em;
    color: var(--text-secondary);
    margin-bottom: 32px;
    line-height: 1.8;
}

/* Pricing Section */
.pricing-section {
    margin: 60px 0;
}

.pricing-cards {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 24px;
    max-width: 900px;
    margin: 0 auto;
}

.price-card {
    background: white;
    padding: 32px 24px;
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-sm);
    text-align: center;
    transition: var(--transition);
    position: relative;
    border: 2px solid var(--honey-yellow);
}

.price-card:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-md);
}

.price-card.featured {
    border-color: var(--pooh-red);
    box-shadow: var(--shadow-md);
    background: linear-gradient(135deg, var(--honey-cream) 0%, white 100%);
}

.badge {
    position: absolute;
    top: -12px;
    left: 50%;
    transform: translateX(-50%);
    background: linear-gradient(135deg, var(--pooh-red) 0%, var(--pooh-red-dark) 100%);
    color: white;
    padding: 6px 20px;
    border-radius: 20px;
    font-size: 0.85em;
    font-weight: 600;
    box-shadow: var(--shadow-sm);
}

.price-amount {
    font-size: 3em;
    font-weight: bold;
    color: var(--pooh-red-dark);
    margin-bottom: 8px;
    font-family: 'Playfair Display', serif;
}

.price-label {
    font-size: 1.2em;
    font-weight: 600;
    color: var(--text-primary);
    margin-bottom: 12px;
}

.price-card p {
    color: var(--text-light);
    font-size: 0.95em;
}

/* Footer */
.site-footer {
    background: linear-gradient(135deg, var(--pooh-red) 0%, var(--pooh-red-dark) 100%);
    padding: 40px 0;
    margin-top: 60px;
    box-shadow: var(--shadow-md);
}

.footer-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 20px;
}

.footer-brand h3 {
    color: var(--honey-cream);
    margin-bottom: 8px;
}

.footer-brand p {
    color: var(--text-light);
    font-style: italic;
}

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

/* Responsive Design */
@media (max-width: 768px) {
    .container {
        padding: 0 16px;
    }
    
    .hero-content h2 {
        font-size: 2em;
    }
    
    .hero-content p {
        font-size: 1em;
    }
    
    .brand h1 {
        font-size: 1.5em;
    }
    
    .section-header h2 {
        font-size: 1.6em;
    }
    
    .card-header {
        padding: 16px 20px;
    }
    
    .card-header h3 {
        font-size: 1.1em;
    }
    
    .card-body {
        padding: 20px;
    }
    
    .color-picker-wrapper {
        flex-direction: column;
        text-align: center;
    }
    
    .radio-group {
        grid-template-columns: 1fr;
    }
    
    .order-item {
        flex-direction: column;
    }
    
    .remove-item-btn {
        align-self: flex-end;
    }
    
    .customer-info-section {
        padding: 24px;
    }
    
    .form-grid {
        grid-template-columns: 1fr;
    }
    
    .pricing-cards {
        grid-template-columns: 1fr;
    }
    
    .footer-content {
        flex-direction: column;
        text-align: center;
    }
    
    .confirmation {
        padding: 40px 24px;
    }
}

@media (max-width: 480px) {
    .logo {
        width: 60px;
        height: 60px;
    }
    
    .honey-pot {
        width: 25px;
        height: 30px;
    }
    
    .brand h1 {
        font-size: 1.3em;
    }
    
    .tagline {
        font-size: 0.8em;
    }
    
    .hero {
        padding: 40px 0;
    }
    
    .hero-content h2 {
        font-size: 1.6em;
    }
    
    .step-number {
        width: 32px;
        height: 32px;
        font-size: 1em;
    }
    
    .price-amount {
        font-size: 2.5em;
    }
}

/* Loading State */
.loading {
    opacity: 0.6;
    pointer-events: none;
}

/* Animations */
@keyframes fadeIn {
    from {
        opacity: 0;
        transform: translateY(20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.fade-in {
    animation: fadeIn 0.4s ease-out;
}

/* Print Styles */
@media print {
    .site-header,
    .hero,
    .configurator,
    .site-footer,
    .btn {
        display: none;
    }
    
    .order-summary,
    .customer-info-section {
        box-shadow: none;
        border: 1px solid #ccc;
    }
}
