.adventum-shop {
    max-width: 1120px;
    margin: 24px auto;
    padding: 0 16px;
    box-sizing: border-box;
}

.adventum-shop-title {
    margin: 0 0 16px;
    font-size: 30px;
    line-height: 1.2;
    color: #12203a;
}

.adventum-product-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 18px;
}

.adventum-product-card {
    border: 1px solid #d7deea;
    border-radius: 14px;
    overflow: hidden;
    background: #ffffff;
    box-shadow: 0 8px 24px rgba(17, 24, 39, 0.06);
}

.adventum-gallery-wrap {
    position: relative;
    background: linear-gradient(140deg, #ebf2ff, #f8fafc);
}

.adventum-gallery-track {
    display: flex;
    overflow-x: auto;
    scroll-snap-type: x mandatory;
    scrollbar-width: thin;
    scroll-behavior: smooth;
}

.adventum-gallery-item {
    min-width: 100%;
    height: 220px;
    scroll-snap-align: start;
    display: flex;
    align-items: center;
    justify-content: center;
}

.adventum-gallery-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.adventum-gallery-item.no-image {
    color: #5d6b85;
    font-weight: 600;
}

.adventum-gallery-nav {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    border: none;
    width: 34px;
    height: 34px;
    border-radius: 100%;
    background: rgba(18, 32, 58, 0.75);
    color: #fff;
    cursor: pointer;
    z-index: 3;
}

.adventum-gallery-nav.prev {
    left: 10px;
}

.adventum-gallery-nav.next {
    right: 10px;
}

.adventum-product-content {
    padding: 14px;
}

.adventum-product-content h3 {
    margin: 0 0 8px;
    color: #12203a;
}

.adventum-product-content p {
    margin: 0 0 10px;
    color: #4f5d78;
    font-size: 14px;
}

.adventum-price {
    font-size: 18px;
    font-weight: 700;
    color: #113f67;
    margin-bottom: 8px;
}

.adventum-quantity-label {
    font-size: 13px;
    margin-bottom: 12px;
    font-weight: 600;
    color: #1a2c4a;
}

.adventum-actions {
    display: flex;
    gap: 10px;
}

.adventum-add-btn,
.adventum-place-order,
.adventum-primary-btn,
.adventum-secondary-btn {
    border: none;
    border-radius: 10px;
    padding: 10px 14px;
    cursor: pointer;
    font-weight: 600;
}

.adventum-add-btn,
.adventum-place-order,
.adventum-primary-btn {
    background: #2b7f43;
    color: #fff;
}

.adventum-add-btn:hover,
.adventum-place-order:hover,
.adventum-primary-btn:hover {
    background: #1f6234;
}

.adventum-secondary-btn {
    background: #dae3f0;
    color: #1a2c4a;
}

.adventum-cart-box {
    margin-top: 18px;
    border: 1px solid #d7deea;
    border-radius: 14px;
    padding: 16px;
    background: #f8fbff;
}

.adventum-cart-box h3 {
    margin-top: 0;
}

.adventum-cart-list {
    margin: 0;
    padding: 0;
    list-style: none;
}

.adventum-cart-item {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 8px;
    padding-bottom: 8px;
    border-bottom: 1px solid #dce5f2;
}

.adventum-remove-item {
    border: 1px solid #c7d2e3;
    background: #fff;
    border-radius: 7px;
    padding: 4px 8px;
    cursor: pointer;
}

.adventum-cart-empty {
    color: #5f6b81;
}

.adventum-place-order {
    margin-top: 10px;
}

.adventum-order-form-wrap {
    border: 1px solid #d7deea;
    border-radius: 14px;
    padding: 18px;
    background: #ffffff;
}

.adventum-form-summary {
    margin-bottom: 14px;
    background: #f8fbff;
    border: 1px solid #d7deea;
    border-radius: 12px;
    padding: 12px;
}

.adventum-form-summary h4 {
    margin: 0 0 8px;
}

.adventum-form-summary ul {
    margin: 0;
    padding-left: 18px;
}

.adventum-order-form .form-row {
    display: flex;
    gap: 14px;
}

.adventum-order-form .form-group {
    margin-bottom: 14px;
}

.adventum-order-form .form-group.half {
    flex: 1;
}

.adventum-order-form label {
    display: block;
    margin-bottom: 6px;
    font-weight: 600;
    font-size: 14px;
}

.adventum-order-form input[type="text"],
.adventum-order-form input[type="email"] {
    width: 100%;
    border: 1px solid #c7d2e3;
    border-radius: 8px;
    padding: 11px;
    box-sizing: border-box;
}

.form-buttons {
    display: flex;
    gap: 10px;
}

.adventum-order-message {
    display: none;
    margin-top: 10px;
    border-radius: 8px;
    padding: 11px;
}

.adventum-order-message.success {
    background: #d7f2de;
    color: #155724;
    border: 1px solid #b7e1c2;
}

.adventum-order-message.error {
    background: #f9d8db;
    color: #82222a;
    border: 1px solid #f0b5bc;
}

@media (max-width: 768px) {
    .adventum-shop {
        padding: 0 12px;
    }

    .adventum-shop-title {
        font-size: 24px;
    }

    .adventum-gallery-item {
        height: 190px;
    }

    .adventum-order-form .form-row,
    .form-buttons,
    .adventum-actions {
        flex-direction: column;
    }

    .adventum-add-btn,
    .adventum-primary-btn,
    .adventum-secondary-btn,
    .adventum-place-order {
        width: 100%;
    }
}
