* {
    box-sizing: border-box;
}

:root {
    --rc-primary: #4fd8ff;
    --rc-secondary: #58c98a;
    --rc-dark: #08131f;
    --rc-surface: rgba(255, 255, 255, 0.86);
    --rc-surface-strong: rgba(255, 255, 255, 0.95);
    --rc-border: rgba(110, 148, 176, 0.20);
    --rc-text: #12202b;
    --rc-muted: #5e7285;
    --rc-shadow: 0 24px 60px rgba(8, 19, 31, 0.10);
}

body {
    margin: 0;
    font-family: "Segoe UI", Tahoma, Geneva, Verdana, sans-serif;
    color: var(--rc-text);
    line-height: 1.6;
}

body.auth-page,
body.commerce-page {
    background:
        radial-gradient(circle at top left, rgba(79, 216, 255, 0.20), transparent 34%),
        radial-gradient(circle at top right, rgba(88, 201, 138, 0.16), transparent 30%),
        radial-gradient(circle at bottom left, rgba(79, 216, 255, 0.08), transparent 32%),
        linear-gradient(180deg, #eef6fb 0%, #f6fbff 52%, #edf4fb 100%);
}

body.auth-page {
    min-height: 100vh;
}

body.auth-page main {
    flex: 1;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 44px 20px 56px;
    position: relative;
    overflow: hidden;
}

body.auth-page main::before {
    content: "";
    position: absolute;
    inset: 0;
    background:
        linear-gradient(135deg, rgba(8, 19, 31, 0.72), rgba(17, 35, 50, 0.48)),
        radial-gradient(circle at 20% 20%, rgba(79, 216, 255, 0.16), transparent 28%),
        radial-gradient(circle at 80% 80%, rgba(88, 201, 138, 0.16), transparent 28%);
    pointer-events: none;
}

body.auth-page .auth-shell {
    position: relative;
    z-index: 1;
    width: min(1220px, 100%);
    display: grid;
    grid-template-columns: 1.08fr 0.92fr;
    gap: 28px;
    align-items: stretch;
}

body.auth-page .auth-intro,
body.auth-page .auth-container {
    border-radius: 28px;
    border: 1px solid var(--rc-border);
    box-shadow: var(--rc-shadow);
    backdrop-filter: blur(18px);
}

body.auth-page .auth-intro {
    padding: clamp(28px, 4vw, 48px);
    color: #ffffff;
    background:
        linear-gradient(155deg, rgba(8, 19, 31, 0.96), rgba(17, 35, 50, 0.80)),
        radial-gradient(circle at 0% 0%, rgba(79, 216, 255, 0.14), transparent 32%),
        radial-gradient(circle at 100% 100%, rgba(88, 201, 138, 0.14), transparent 32%);
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    gap: 28px;
}

.auth-kicker {
    display: inline-flex;
    align-self: flex-start;
    padding: 9px 14px;
    border-radius: 999px;
    background: rgba(255, 255, 255, 0.08);
    border: 1px solid rgba(207, 227, 239, 0.18);
    color: rgba(255, 255, 255, 0.92);
    font-size: 12px;
    font-weight: 800;
    letter-spacing: 0.18em;
    text-transform: uppercase;
}

.auth-intro h1 {
    margin: 18px 0 16px;
    font-size: clamp(34px, 4.6vw, 62px);
    line-height: 0.98;
    letter-spacing: -0.04em;
    max-width: 10ch;
}

.auth-intro p {
    margin: 0;
    max-width: 560px;
    font-size: 18px;
    color: rgba(255, 255, 255, 0.76);
}

.auth-points {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 12px;
}

.auth-point {
    padding: 18px 18px 16px;
    border-radius: 20px;
    background: rgba(255, 255, 255, 0.08);
    border: 1px solid rgba(255, 255, 255, 0.12);
}

.auth-point strong,
.auth-point span {
    display: block;
}

.auth-point strong {
    margin-bottom: 6px;
    font-size: 14px;
    color: #ffffff;
}

.auth-point span {
    font-size: 13px;
    color: rgba(255, 255, 255, 0.70);
}

body.auth-page .auth-container {
    padding: clamp(28px, 4vw, 44px);
    background: var(--rc-surface-strong);
    justify-self: end;
    width: 100%;
    max-width: 560px;
}

body.auth-page.register-page .auth-container {
    max-width: 720px;
}

body.auth-page.register-page .auth-shell {
    grid-template-columns: minmax(0, 720px);
    justify-content: center;
}

body.auth-page.register-page .auth-intro {
    display: none;
}

.auth-logo {
    font-size: 30px;
    font-weight: 900;
    letter-spacing: 0.14em;
    color: transparent;
    background: linear-gradient(135deg, #ffffff 0%, #7ee9ff 45%, #4fd8ff 100%);
    -webkit-background-clip: text;
    background-clip: text;
    margin-bottom: 18px;
    text-transform: uppercase;
}

.auth-container h2 {
    margin: 0 0 24px;
    font-size: 32px;
    line-height: 1.05;
    letter-spacing: -0.03em;
    color: var(--rc-dark);
}

.auth-container form {
    display: grid;
    gap: 14px;
}

.auth-container input,
.auth-container select,
.auth-container textarea {
    width: 100%;
    padding: 14px 16px;
    border-radius: 18px;
    border: 1px solid rgba(110, 148, 176, 0.24);
    background: rgba(247, 250, 253, 0.96);
    color: var(--rc-text);
    font: inherit;
    transition: border-color 0.22s ease, box-shadow 0.22s ease, transform 0.22s ease, background 0.22s ease;
}

.auth-container input::placeholder,
.auth-container textarea::placeholder {
    color: rgba(94, 114, 133, 0.72);
}

.auth-container input:focus,
.auth-container select:focus,
.auth-container textarea:focus {
    outline: none;
    border-color: rgba(79, 216, 255, 0.72);
    box-shadow: 0 0 0 4px rgba(79, 216, 255, 0.12);
    background: #ffffff;
}

.auth-container .form-group {
    margin-bottom: 0;
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.auth-container .form-group label {
    font-size: 13px;
    font-weight: 800;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    color: var(--rc-dark);
}

.auth-container .password-requirements {
    background: rgba(79, 216, 255, 0.06);
    border: 1px solid rgba(79, 216, 255, 0.15);
    padding: 16px;
    border-radius: 20px;
    margin-top: 6px;
}

.auth-container .requirement {
    display: flex;
    align-items: center;
    gap: 10px;
    margin: 8px 0;
    color: var(--rc-muted);
    font-size: 13px;
}

.auth-container .requirement.met {
    color: #1f7d59;
    font-weight: 700;
}

.auth-container .requirement.unmet {
    color: #b14646;
}

.auth-container .requirement-icon {
    width: 18px;
    height: 18px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-size: 14px;
    border-radius: 50%;
}

.auth-container .phone-optional {
    color: var(--rc-muted);
}

.auth-container .btn {
    width: 100%;
    padding: 14px 18px;
    border-radius: 999px;
    border: 1px solid transparent;
    text-decoration: none;
    font: inherit;
    font-weight: 700;
    cursor: pointer;
    transition: transform 0.2s ease, box-shadow 0.2s ease, background 0.2s ease, border-color 0.2s ease, color 0.2s ease;
}

.auth-container .btn.primary {
    background: linear-gradient(135deg, var(--rc-primary), var(--rc-secondary));
    color: #ffffff;
    box-shadow: 0 16px 34px rgba(79, 216, 255, 0.22);
}

.auth-container .btn.primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 20px 40px rgba(79, 216, 255, 0.26);
}

.auth-container .btn:not(.primary) {
    background: rgba(8, 19, 31, 0.04);
    color: var(--rc-dark);
    border-color: rgba(110, 148, 176, 0.20);
}

.auth-container .btn:not(.primary):hover {
    background: rgba(79, 216, 255, 0.10);
    border-color: rgba(79, 216, 255, 0.30);
    transform: translateY(-2px);
}

.auth-actions {
    display: flex;
    gap: 12px;
    margin-top: 18px;
}

.auth-actions .btn {
    flex: 1;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
}

.auth-text {
    margin-top: 22px;
    color: var(--rc-muted);
    font-size: 14px;
    text-align: center;
}

.auth-text a {
    color: var(--rc-dark);
    font-weight: 800;
    text-decoration: none;
}

.auth-text a:hover {
    text-decoration: underline;
}

.auth-visual {
    width: 100%;
    border-radius: 24px;
    overflow: hidden;
    border: 1px solid rgba(255, 255, 255, 0.10);
    background:
        radial-gradient(circle at top left, rgba(79, 216, 255, 0.16), transparent 35%),
        linear-gradient(160deg, rgba(8, 19, 31, 0.92), rgba(16, 32, 48, 0.88));
    box-shadow: 0 18px 36px rgba(0, 0, 0, 0.22);
}

.auth-visual img {
    display: block;
    width: 100%;
    height: 100%;
    object-fit: cover;
}

body.register-page .auth-intro {
    gap: 20px;
}

body.register-page .auth-visual {
    aspect-ratio: 16 / 10;
    margin-top: auto;
}

.error,
.error-list,
.success-message {
    border-radius: 20px;
    padding: 15px 18px;
    margin-bottom: 18px;
    font-size: 14px;
}

.error {
    background: rgba(225, 83, 83, 0.10);
    border: 1px solid rgba(225, 83, 83, 0.28);
    color: #9d2f2f;
}

.error-list {
    background: rgba(225, 83, 83, 0.10);
    border: 1px solid rgba(225, 83, 83, 0.28);
    color: #9d2f2f;
}

.error-list ul {
    margin: 10px 0 0;
    padding-left: 20px;
}

.success-message {
    background: rgba(88, 201, 138, 0.12);
    border: 1px solid rgba(88, 201, 138, 0.30);
    color: #1f7d59;
}

body.commerce-page {
    min-height: 100vh;
}

body.commerce-page header.header {
    background: rgba(8, 19, 31, 0.78);
    backdrop-filter: blur(18px);
    border-bottom: 1px solid rgba(207, 227, 239, 0.18);
    box-shadow: 0 18px 40px rgba(8, 19, 31, 0.12);
}

body.commerce-page .logo {
    color: transparent;
    background: linear-gradient(135deg, #ffffff 0%, #8ae8ff 45%, #4fd8ff 100%);
    -webkit-background-clip: text;
    background-clip: text;
}

body.commerce-page nav.nav a {
    color: rgba(255, 255, 255, 0.78);
}

body.commerce-page nav.nav a:hover {
    color: #ffffff;
}

body.commerce-page nav.nav a::after {
    background: linear-gradient(90deg, var(--rc-primary), var(--rc-secondary));
}

body.commerce-page .cart,
body.commerce-page .btn,
body.commerce-page .btn.small {
    color: #ffffff;
    background: rgba(255, 255, 255, 0.06);
    border: 1px solid rgba(207, 227, 239, 0.18);
}

body.commerce-page .cart:hover,
body.commerce-page .btn:hover,
body.commerce-page .btn.small:hover {
    background: rgba(79, 216, 255, 0.16);
    border-color: rgba(79, 216, 255, 0.34);
}

body.commerce-page .btn.primary,
body.commerce-page .btn-primary {
    background: linear-gradient(135deg, var(--rc-primary), var(--rc-secondary));
    border-color: transparent;
    color: #ffffff;
    box-shadow: 0 16px 34px rgba(79, 216, 255, 0.18);
}

body.commerce-page .btn.primary:hover,
body.commerce-page .btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 20px 40px rgba(79, 216, 255, 0.24);
}

body.commerce-page .btn-secondary {
    background: rgba(255, 255, 255, 0.75);
    color: var(--rc-dark);
    border: 1px solid rgba(110, 148, 176, 0.26);
}

body.commerce-page .btn-secondary:hover {
    background: rgba(79, 216, 255, 0.10);
    border-color: rgba(79, 216, 255, 0.30);
}

body.commerce-page main {
    display: block;
}

.cart-container,
.checkout-container {
    width: min(1420px, calc(100% - 40px));
    margin: 0 auto;
    padding: 36px 0 56px;
}

.cart-header,
.checkout-container > h1 {
    margin-bottom: 28px;
}

.cart-header h1,
.checkout-container > h1 {
    margin: 0;
    font-size: clamp(34px, 4.2vw, 56px);
    line-height: 0.98;
    letter-spacing: -0.04em;
    color: var(--rc-dark);
}

.cart-items-count {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    margin-top: 12px;
    padding: 9px 14px;
    border-radius: 999px;
    background: rgba(79, 216, 255, 0.10);
    border: 1px solid rgba(79, 216, 255, 0.18);
    color: var(--rc-muted);
    font-size: 14px;
}

.cart-content,
.checkout-content {
    display: grid;
    grid-template-columns: minmax(0, 1fr) 380px;
    gap: 26px;
    align-items: start;
}

.cart-main,
.checkout-main {
    min-width: 0;
}

.empty-cart,
.cart-items,
.checkout-main,
.order-summary,
.recommended,
.order-review {
    background: var(--rc-surface);
    border: 1px solid var(--rc-border);
    border-radius: 28px;
    box-shadow: var(--rc-shadow);
    backdrop-filter: blur(18px);
}

.empty-cart {
    text-align: center;
    padding: 72px 24px;
}

.empty-icon {
    width: 108px;
    height: 108px;
    margin: 0 auto 20px;
    border-radius: 50%;
    background: linear-gradient(135deg, rgba(79, 216, 255, 0.16), rgba(88, 201, 138, 0.12));
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 48px;
}

.empty-cart h2 {
    margin: 0 0 8px;
    font-size: 28px;
    color: var(--rc-dark);
}

.empty-cart p {
    margin: 0 0 26px;
    color: var(--rc-muted);
}

.cart-items {
    overflow: hidden;
}

.cart-item {
    display: grid;
    grid-template-columns: 120px minmax(0, 1fr) 110px 120px 44px;
    gap: 18px;
    align-items: center;
    padding: 22px;
    border-bottom: 1px solid rgba(110, 148, 176, 0.16);
    transition: background 0.22s ease, transform 0.22s ease;
}

.cart-item:hover {
    background: rgba(79, 216, 255, 0.05);
}

.cart-item:last-child {
    border-bottom: none;
}

.item-image {
    width: 120px;
    aspect-ratio: 1 / 1;
    border-radius: 22px;
    overflow: hidden;
    background:
        radial-gradient(circle at top left, rgba(79, 216, 255, 0.18), transparent 35%),
        linear-gradient(160deg, rgba(8, 19, 31, 0.92), rgba(16, 32, 48, 0.94));
    display: flex;
    align-items: center;
    justify-content: center;
}

.item-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.no-image {
    color: rgba(255, 255, 255, 0.68);
    font-size: 12px;
    text-align: center;
    padding: 12px;
}

.item-info {
    display: flex;
    flex-direction: column;
    gap: 8px;
    min-width: 0;
}

.item-name {
    color: var(--rc-dark);
    text-decoration: none;
    font-size: 16px;
    font-weight: 800;
    line-height: 1.2;
}

.item-name:hover {
    color: var(--rc-primary);
}

.item-price {
    font-size: 18px;
    font-weight: 800;
    color: var(--rc-dark);
}

.item-stock {
    font-size: 13px;
}

.in-stock {
    color: #1f7d59;
}

.out-of-stock {
    color: #a33f3f;
}

.item-quantity {
    display: flex;
    align-items: center;
    justify-content: flex-start;
}

.qty-input {
    width: 72px;
    padding: 10px 12px;
    border: 1px solid rgba(110, 148, 176, 0.24);
    border-radius: 14px;
    background: rgba(247, 250, 253, 0.96);
    color: var(--rc-text);
    text-align: center;
    font-size: 14px;
}

.btn-update,
.btn-remove,
.btn-apply {
    border: none;
    border-radius: 999px;
    font: inherit;
    font-weight: 700;
    cursor: pointer;
    transition: transform 0.2s ease, background 0.2s ease, box-shadow 0.2s ease, border-color 0.2s ease, color 0.2s ease;
}

.btn-update {
    padding: 10px 14px;
    background: linear-gradient(135deg, var(--rc-primary), var(--rc-secondary));
    color: #ffffff;
    box-shadow: 0 10px 24px rgba(79, 216, 255, 0.18);
}

.btn-update:hover {
    transform: translateY(-2px);
}

.item-total {
    text-align: right;
    font-size: 18px;
    font-weight: 800;
    color: var(--rc-dark);
}

.btn-remove {
    width: 40px;
    height: 40px;
    background: rgba(225, 83, 83, 0.10);
    color: #a63c3c;
    border: 1px solid rgba(225, 83, 83, 0.20);
}

.btn-remove:hover {
    transform: translateY(-2px);
    background: rgba(225, 83, 83, 0.16);
}

.cart-sidebar,
.checkout-sidebar {
    position: relative;
}

.order-summary,
.order-review {
    position: sticky;
    top: calc(var(--header-offset, 0px) + 24px);
    padding: 24px;
}

.order-summary h2,
.order-review h2 {
    margin: 0 0 18px;
    font-size: 22px;
    color: var(--rc-dark);
}

.summary-row,
.total-row {
    display: flex;
    justify-content: space-between;
    gap: 16px;
    padding: 12px 0;
    border-bottom: 1px solid rgba(110, 148, 176, 0.16);
    font-size: 14px;
}

.summary-row:last-of-type,
.total-row:last-of-type {
    border-bottom: none;
}

.summary-row strong,
.total-row strong {
    color: var(--rc-dark);
}

.summary-row.total,
.total-row.final {
    margin: 14px -24px -24px;
    padding: 16px 24px;
    background: linear-gradient(135deg, rgba(79, 216, 255, 0.10), rgba(88, 201, 138, 0.10));
    border-top: 1px solid rgba(110, 148, 176, 0.16);
    border-radius: 0 0 28px 28px;
    font-size: 16px;
    font-weight: 800;
}

.total-price {
    color: var(--rc-secondary);
    font-size: 22px;
}

.promo-code {
    display: grid;
    grid-template-columns: 1fr auto;
    gap: 10px;
    margin: 18px 0 20px;
}

.promo-input {
    padding: 12px 14px;
    border-radius: 14px;
    border: 1px solid rgba(110, 148, 176, 0.24);
    background: rgba(247, 250, 253, 0.96);
    color: var(--rc-text);
}

.btn-apply {
    padding: 12px 16px;
    background: rgba(8, 19, 31, 0.05);
    color: var(--rc-dark);
    border: 1px solid rgba(110, 148, 176, 0.22);
}

.btn-apply:hover {
    background: rgba(79, 216, 255, 0.10);
    border-color: rgba(79, 216, 255, 0.28);
}

.btn-checkout,
.btn-continue {
    width: 100%;
    margin-bottom: 10px;
}

.recommended {
    margin-top: 18px;
    padding: 20px;
}

.recommended h3 {
    margin: 0 0 14px;
    font-size: 18px;
    color: var(--rc-dark);
}

.recommended-items {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.checkout-main {
    padding: 30px;
}

.form-section {
    margin-bottom: 34px;
    padding-bottom: 34px;
    border-bottom: 1px solid rgba(110, 148, 176, 0.16);
}

.form-section:last-of-type {
    margin-bottom: 0;
    padding-bottom: 0;
    border-bottom: none;
}

.form-section h2 {
    margin: 0 0 18px;
    font-size: 20px;
    color: var(--rc-dark);
}

.form-row {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 18px;
}

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

.form-group label {
    font-weight: 800;
    font-size: 13px;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    color: var(--rc-dark);
}

.form-group input,
.form-group textarea {
    padding: 14px 16px;
    border: 1px solid rgba(110, 148, 176, 0.24);
    border-radius: 18px;
    background: rgba(247, 250, 253, 0.96);
    color: var(--rc-text);
    font: inherit;
    transition: border-color 0.22s ease, box-shadow 0.22s ease, background 0.22s ease;
}

.form-group input:focus,
.form-group textarea:focus {
    outline: none;
    border-color: rgba(79, 216, 255, 0.72);
    box-shadow: 0 0 0 4px rgba(79, 216, 255, 0.12);
    background: #ffffff;
}

.form-group input:disabled {
    background: rgba(233, 240, 245, 0.90);
    color: var(--rc-muted);
}

.form-group textarea {
    resize: vertical;
    min-height: 120px;
}

.delivery-options,
.payment-options {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.delivery-option,
.payment-option {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 16px 18px;
    border-radius: 20px;
    border: 1px solid rgba(110, 148, 176, 0.22);
    background: rgba(255, 255, 255, 0.70);
    cursor: pointer;
    transition: transform 0.2s ease, border-color 0.2s ease, background 0.2s ease, box-shadow 0.2s ease;
}

.delivery-option:hover,
.payment-option:hover {
    transform: translateY(-1px);
    border-color: rgba(79, 216, 255, 0.28);
    background: rgba(79, 216, 255, 0.06);
    box-shadow: 0 12px 28px rgba(8, 19, 31, 0.05);
}

.delivery-option:has(input:checked),
.payment-option:has(input:checked) {
    border-color: rgba(79, 216, 255, 0.46);
    background: rgba(79, 216, 255, 0.08);
}

.delivery-option input,
.payment-option input {
    margin: 0;
    accent-color: var(--rc-primary);
}

.option-title {
    flex: 1;
    font-weight: 700;
    color: var(--rc-dark);
}

.option-price {
    font-weight: 800;
    color: var(--rc-secondary);
}

.payment-option span {
    font-weight: 700;
}

.btn-submit {
    width: 100%;
    margin-top: 18px;
    padding: 14px 18px;
    font-size: 16px;
}

.review-items {
    max-height: 320px;
    overflow: auto;
    margin-bottom: 18px;
    padding-bottom: 18px;
    border-bottom: 1px solid rgba(110, 148, 176, 0.16);
}

.review-item {
    display: flex;
    justify-content: space-between;
    gap: 16px;
    margin-bottom: 12px;
    font-size: 13px;
}

.review-item .item-name {
    color: var(--rc-muted);
    font-weight: 600;
}

.review-item .item-price {
    font-weight: 800;
    color: var(--rc-dark);
    white-space: nowrap;
}

@media (max-width: 1080px) {
    body.auth-page .auth-shell,
    .cart-content,
    .checkout-content {
        grid-template-columns: 1fr;
    }

    body.auth-page .auth-container,
    body.auth-page.register-page .auth-container {
        max-width: 100%;
        justify-self: stretch;
    }

    .order-summary,
    .order-review {
        position: static;
    }
}

@media (max-width: 820px) {
    body.auth-page main {
        padding: 24px 16px 40px;
    }

    .auth-intro h1 {
        max-width: none;
    }

    .auth-points {
        grid-template-columns: 1fr;
    }

    .cart-container,
    .checkout-container {
        width: min(100%, calc(100% - 24px));
        padding-top: 24px;
    }

    .cart-item {
        grid-template-columns: 96px minmax(0, 1fr);
        gap: 14px;
    }

    .item-quantity,
    .item-total,
    .cart-item > form:last-child {
        grid-column: 1 / -1;
    }

    .summary-row.total,
    .total-row.final {
        margin-left: -24px;
        margin-right: -24px;
    }

    .form-row {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 560px) {
    body.auth-page .auth-container,
    body.auth-page .auth-intro,
    .checkout-main,
    .order-summary,
    .order-review,
    .empty-cart,
    .recommended {
        border-radius: 22px;
    }

    .auth-logo {
        font-size: 24px;
    }

    .auth-container h2,
    .cart-header h1,
    .checkout-container > h1 {
        font-size: 30px;
    }

    .promo-code {
        grid-template-columns: 1fr;
    }

    .cart-item {
        grid-template-columns: 1fr;
    }

    .item-image {
        width: 100%;
    }
}
