* {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
        }

        body {
            font-family: "Libre Baskerville", serif;
            background: linear-gradient(135deg, #eee1c7 0%, #969f7d 100%);
            min-height: 100vh;
            padding: 2rem 1rem;
            color: #2a3421;
        }

        .container {
            max-width: 1200px;
            margin: 0 auto;
            background: rgba(255, 255, 255, 0.9);
            border-radius: 12px;
            padding: 2rem;
            box-shadow: 0 8px 32px rgba(0, 0, 0, 0.1);
        }

        .header {
            text-align: center;
            margin-bottom: 2rem;
        }

        .header h1 {
            font-size: 2.5rem;
            color: #723a16;
            margin-bottom: 1rem;
        }

        .header p {
            font-size: 1.1rem;
            color: #969f7d;
            font-style: italic;
        }

        .flavor-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
            gap: 1.5rem;
            margin-bottom: 2rem;
        }

        .flavor-card {
            border: 2px solid transparent;
            border-radius: 12px;
            padding: 1.5rem;
            background: rgba(255, 255, 255, 0.8);
            transition: all 0.3s ease;
            cursor: pointer;
        }

        .flavor-image {
            width: 100%;
            height: 300px;
            background-size: cover;
            background-position: center;
            border-radius: 6px;
            margin-bottom: 1rem;
            transition: transform 0.3s ease;
            position: relative;
        }

        .flavor-image::after {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            bottom: 0;
            background: linear-gradient(45deg, rgba(238, 225, 199, 0.2), rgba(150, 159, 125, 0.1));
            border-radius: 6px;
            transition: opacity 0.3s ease;
        }

        .flavor-card:hover .flavor-image::after {
            opacity: 0.5;
        }

        .flavor-card:hover .flavor-image {
            transform: scale(1.05);
        }

        .flavor-card:hover {
            border-color: #969f7d;
            transform: translateY(-2px);
        }

        .flavor-card.selected {
            border-color: #723a16;
            background: rgba(255, 255, 255, 0.8);
        }

        .flavor-name {
            font-size: 1.3rem;
            font-weight: 700;
            color: #2a3421;
            margin-bottom: 0.5rem;
        }

        .flavor-description {
            font-size: 0.9rem;
            color: #723a16;
            margin-bottom: 1rem;
            font-style: italic;
        }

        .quantity-control {
            display: flex;
            align-items: center;
            gap: 1rem;
        }

        .quantity-control label {
            font-weight: 600;
            color: #2a3421;
        }

        .quantity-input {
            width: 80px;
            padding: 0.5rem;
            border: 1px solid #969f7d;
            border-radius: 4px;
            font-family: inherit;
            text-align: center;
            background: white;
        }

        .quantity-buttons {
            display: flex;
            gap: 0.5rem;
        }

        .qty-btn {
            width: 30px;
            height: 30px;
            border: 1px solid #969f7d;
            background: white;
            border-radius: 50%;
            cursor: pointer;
            display: flex;
            align-items: center;
            justify-content: center;
            transition: all 0.2s ease;
        }

        .qty-btn:hover {
            background: #969f7d;
            color: white;
        }

        .bottle-return {
            background: rgba(184, 110, 68, 0.1);
            padding: 1.5rem;
            border-radius: 8px;
            margin-bottom: 2rem;
            border: 1px solid #b86e44;
        }

        .checkbox-container {
            display: flex;
            align-items: center;
            gap: 0.75rem;
        }

        .checkbox-container input[type="checkbox"] {
            width: 18px;
            height: 18px;
            accent-color: #b86e44;
        }

        .checkbox-container label {
            font-weight: 600;
            color: #2a3421;
        }

        .order-summary {
            background: rgba(42, 52, 33, 0.05);
            padding: 1.5rem;
            border-radius: 8px;
            margin-bottom: 2rem;
            border: 1px solid #2a3421;

        }

        .summary-title {
            font-size: 1.3rem;
            font-weight: 700;
            color: #2a3421;
            margin-bottom: 1rem;
        }

        .summary-line {
            display: flex;
            justify-content: space-between;
            margin-bottom: 0.5rem;
            padding: 0.25rem 0;
        }

        .summary-line.total {
            border-top: 2px solid #2a3421;
            margin-top: 1rem;
            padding-top: 1rem;
            font-weight: 700;
            font-size: 1.1rem;
        }

        .delivery-fee-info {
            font-size: 0.9rem;
            color: #723a16;
            font-style: italic;
            margin-top: 0.5rem;
        }

        .delivery-section {
            background: rgba(114, 58, 22, 0.05);
            padding: 1.5rem;
            border-radius: 8px;
            margin-bottom: 2rem;
            border: 1px solid #723a16;
        }

        .delivery-section h3 {
            font-size: 1.4rem;
            color: #723a16;
            margin-bottom: 1rem;
        }

        .zip-form {
            display: flex;
            gap: 0.75rem;
            align-items: center;
            margin-bottom: 1rem;
        }

        .zip-input {
            flex: 1;
            max-width: 200px;
            padding: 0.75rem;
            border: 2px solid #723a16;
            border-radius: 4px;
            font-family: inherit;
            font-size: 1rem;
        }

        .zip-submit {
            padding: 0.75rem 1.5rem;
            background: #723a16;
            color: #eee1c7;
            border: none;
            border-radius: 4px;
            font-family: inherit;
            font-size: 1rem;
            cursor: pointer;
            transition: background 0.3s ease;
        }

        .zip-submit:hover {
            background: #b86e44;
        }

        .delivery-status {
            padding: 1rem;
            border-radius: 6px;
            margin-top: 1rem;
            font-weight: 600;
            display: none;
        }

        .delivery-status.valid {
            background: rgba(76, 175, 80, 0.1);
            color: #2e7d32;
            border: 1px solid #4caf50;
            display: block;
        }

        .delivery-status.invalid {
            background: rgba(244, 67, 54, 0.1);
            color: #c62828;
            border: 1px solid #f44336;
            display: block;
        }

        .delivery-status.waitlist {
            background: rgba(255, 193, 7, 0.1);
            color: #f57f17;
            border: 1px solid #ffc107;
            display: block;
        }

        .email-signup {
            margin-top: 1rem;
            padding: 1rem;
            background: rgba(255, 255, 255, 0.8);
            border-radius: 6px;
            border: 1px solid #969f7d;
        }

        .email-form {
            display: flex;
            gap: 0.75rem;
            align-items: center;
            margin-top: 1rem;
        }

        .email-input {
            flex: 1;
            padding: 0.75rem;
            border: 1px solid #969f7d;
            border-radius: 4px;
            font-family: inherit;
            font-size: 1rem;
        }

        .email-submit {
            padding: 0.75rem 1.5rem;
            background: #969f7d;
            color: white;
            border: none;
            border-radius: 4px;
            font-family: inherit;
            font-size: 1rem;
            cursor: pointer;
            transition: background 0.3s ease;
        }

        .email-submit:hover {
            background: #7a8068;
        }

        .order-button {
            width: 100%;
            padding: 1rem 2rem;
            background: #723a16;
            color: #eee1c7;
            border: none;
            border-radius: 8px;
            font-family: inherit;
            font-size: 1.1rem;
            font-weight: 600;
            cursor: pointer;
            transition: all 0.3s ease;
            text-transform: uppercase;
            letter-spacing: 1px;
        }

        .order-button:hover {
            background: #b86e44;
            transform: translateY(-2px);
        }

        .order-button:disabled {
            background: #969f7d;
            cursor: not-allowed;
            transform: none;
        }

        .checkout-message {
            margin-bottom: 1rem;
            padding: 1rem;
            border-radius: 6px;
            font-weight: 600;
            text-align: center;
        }

        .checkout-message.error {
            background: rgba(244, 67, 54, 0.1);
            color: #c62828;
            border: 1px solid #f44336;
        }

        .checkout-message.warning {
            background: rgba(255, 193, 7, 0.1);
            color: #f57f17;
            border: 1px solid #ffc107;
        }

        .order-summary-bar {
            position: fixed;
            top: calc(100vh - 60px);
            left: 0;
            right: 0;
            background: rgba(114, 58, 22, 0.95);
            color: #eee1c7;
            padding: 0.75rem 1rem;
            display: flex;
            align-items: center;
            justify-content: center;
            gap: 1rem;
            z-index: 1000;
            cursor: pointer;
            transition: all 0.3s ease;
            backdrop-filter: blur(10px);
            border-bottom: 2px solid #b86e44;
            opacity: 0;
            transform: translateY(-100%);
            height: 60px;
        }

        .order-summary-bar.show {
            opacity: 1;
            transform: translateY(0);
        }

        .order-summary-bar:hover {
            background: rgba(184, 110, 68, 0.95);
        }

        .summary-bar-spacer {
            height: 60px;
            opacity: 0;
            transition: opacity 0.3s ease;
        }

        .summary-bar-spacer.show {
            opacity: 1;
        }

        .bottles-visual {
            display: flex;
            gap: 0.25rem;
            align-items: center;
            flex-wrap: wrap;
            max-width: 200px;
        }

        .bottle-icon {
            width: 20px;
            height: 28px;
            background: linear-gradient(180deg, #eee1c7 0%, #969f7d 100%);
            border-radius: 3px 3px 6px 6px;
            position: relative;
            border: 1px solid #eee1c7;
            flex-shrink: 0;
        }

        .bottle-icon::before {
            content: '';
            position: absolute;
            top: -2px;
            left: 50%;
            transform: translateX(-50%);
            width: 6px;
            height: 3px;
            background: #eee1c7;
            border-radius: 2px 2px 0 0;
        }

        .summary-text {
            font-weight: 600;
            font-size: 1rem;
            flex-grow: 1;
        }

        .order-details-btn {
            background: rgba(238, 225, 199, 0.2);
            border: 1px solid #eee1c7;
            color: #eee1c7;
            padding: 0.4rem 0.8rem;
            border-radius: 4px;
            font-size: 0.9rem;
            font-weight: 600;
            cursor: pointer;
            transition: all 0.2s ease;
        }

        .order-details-btn:hover {
            background: rgba(238, 225, 199, 0.3);
        }

        .hashtag {
            text-align: center;
            font-size: 1.5rem;
            font-weight: 700;
            color: #723a16;
            margin-top: 2rem;
            font-style: italic;
        }
        
        .bottle-details {
            text-align: left;
            font-size: 0.8em;
            padding-bottom: 15px;
            color: #723a16;
        }
        .out-of-stock {
            text-align: center;
            font-size: 1.2em;
            padding-bottom: 15px;
            color: #723a16;
            font-style: italic;
        }
        
        /* 3-Column Layout for Pickup Info Section */
        .pickup-info-section {
            display: grid;
            grid-template-columns: 1fr 1fr 1fr;
            gap: 2rem;
            max-width: 1200px;
            margin: 0 auto;
            padding: 2rem;
        }

        .pickup-info-section h3 {
            color: #723a16;
            font-size: 1.3rem;
            margin-bottom: 1rem;
            font-weight: 600;
        }

        /* Style each content section */
        .pickup-details,
        .how-it-works,
        .why-preorder {
            margin-bottom: 2rem;
        }

        .pickup-details p {
            margin-bottom: 0.75rem;
            line-height: 1.6;
        }

        .step-item {
            margin-bottom: 0.75rem;
            line-height: 1.5;
            padding-left: 0.5rem;
        }

        .benefit-item {
            margin-bottom: 0.75rem;
            line-height: 1.5;
            padding-left: 0.5rem;
        }

        /* Mobile: Stack all columns vertically */
        @media (max-width: 768px) {
            .pickup-info-section {
                grid-template-columns: 1fr;
                gap: 1.5rem;
                padding: 1rem;
            }
        }
        
        #order-deadline-missed {
            color: #b86e44;
        }

        @media (max-width: 768px) {
            .container {
                padding: 1rem;
            }

            .header h1 {
                font-size: 2rem;
            }

            .flavor-grid {
                grid-template-columns: 1fr;
            }

            .zip-form, .email-form {
                flex-direction: column;
                align-items: stretch;
            }

            .zip-input, .email-input {
                max-width: none;
            }
        }