.weekly-stock-item-view {
    padding: 20px 0;
}

.back-button-container {
    margin-bottom: 40px;
}

/* Nav wrapper with floating chevron buttons */
.item-nav-wrapper {
    position: relative;
}

.nav-chevron {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    z-index: 10;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 44px;
    height: 44px;
    border-radius: 50%;
    background: #fff;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.18);
    color: #555;
    font-size: 18px;
    text-decoration: none;
    transition: background 0.15s, box-shadow 0.15s, color 0.15s;
}

.nav-chevron:hover,
.nav-chevron:focus,
.nav-chevron:active {
    background: #cc6c76;
    color: #fff;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.22);
    text-decoration: none;
}

.nav-chevron-prev {
    left: -26px;
}

.nav-chevron-next {
    right: -26px;
}

@media (max-width: 767px) {
    .nav-chevron-prev {
        left: -10px;
    }

    .nav-chevron-next {
        right: -10px;
    }

    .nav-chevron {
        width: 36px;
        height: 70px;
        border-radius: 6px;
        font-size: 20px;
    }
}

.item-container {
    background: #fff;
    border-radius: 8px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
    padding: 30px;
    margin-bottom: 30px;
}

/* Image Styles */
.item-image-container {
    background: #f8f9fa;
    border-radius: 8px;
    padding: 20px;
    text-align: center;
    margin-bottom: 20px;
}

.item-image {
    max-width: 100%;
    height: auto;
    border-radius: 4px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
}

.no-image {
    padding: 80px 20px;
    color: #999;
    text-align: center;
}

.no-image i {
    font-size: 64px;
    margin-bottom: 10px;
    display: block;
}

/* Details Styles */
.item-details {
    padding: 0 15px;
}

.item-brand {
    color: #333;
    font-size: 32px;
    font-weight: bold;
    background: #f8f9fa;
    padding: 20px 20px 0 20px;
    margin: 0px;
    /* margin-bottom: 25px;
    padding-bottom: 15px; */
}

.item-info-box {
    background: #f8f9fa;
    padding: 20px;
    margin-bottom: 25px;
    border-radius: 4px;
}

.item-info-box h4 {
    font-size: 18px;
    font-weight: bold;
    margin-top: 0;
    margin-bottom: 15px;
}

.item-description {
    color: #555;
    font-size: 16px;
    line-height: 1.6;
    margin: 0;
}

/* Date Range Styles */
.date-range {
    margin-top: 10px;
}

.date-item {
    display: flex;
    align-items: center;
    margin-bottom: 10px;
    font-size: 15px;
}

.date-label {
    font-weight: bold;
    color: #666;
    min-width: 80px;
    margin-right: 10px;
}

.date-value {
    color: #333;
    background: #fff;
    padding: 8px 15px;
    border-radius: 4px;
    border: 1px solid #ddd;
}

/* Alert Styles */
.alert {
    padding: 15px;
    border-radius: 4px;
    margin-bottom: 20px;
}

.alert i {
    margin-right: 8px;
}

.alert-info {
    background-color: #d9edf7;
    border: 1px solid #bce8f1;
}

.alert-warning {
    background-color: #fcf8e3;
    border: 1px solid #faebcc;
    color: #8a6d3b;
}

/* Reservation Form Styles */
.reservation-section {
    margin-top: 30px;
}

/* Honeypot field - completely hidden from users */
.honeypot-field {
    position: absolute !important;
    left: -5000px !important;
    width: 1px !important;
    height: 1px !important;
    opacity: 0 !important;
    pointer-events: none !important;
}

.reservation-form {
    background: #f0f8ff;
    border-radius: 8px;
    padding: 25px;
}

.reservation-form h3 {
    margin-top: 0;
    margin-bottom: 15px;
    font-size: 24px;
}

.reservation-form .description {
    color: #666;
    margin-bottom: 20px;
    font-style: italic;
}

.reservation-form .form-group {
    margin-bottom: 20px;
}

.reservation-form label {
    font-weight: bold;
    color: #333;
    margin-bottom: 8px;
    display: block;
}

.reservation-form input[type="text"],
.reservation-form input[type="email"] {
    width: 100%;
    padding: 10px;
    border: 1px solid #ddd;
    border-radius: 4px;
    font-size: 14px;
}

.reservation-form .checkbox {
    margin: 20px 0;
    padding: 15px;
    background: #fff;
    border-radius: 4px;
    border: 1px solid #ddd;
}

.reservation-form .checkbox label {
    font-weight: normal;
    margin-bottom: 0;
    cursor: pointer;
    display: flex;
    align-items: flex-start;
}

.reservation-form .checkbox input[type="checkbox"] {
    margin-right: 10px;
    margin-top: 3px;
}
