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

body {
    font-family: 'Inter', sans-serif;
    background: url('media/background.jpg') center/cover no-repeat fixed;
    color: #e8f5f5;
    overflow: hidden;
    height: 100vh;
    width: 100vw;
    position: relative;
}

body::before {
    content: '';
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.3);
    z-index: 0;
}
img, svg, video, iframe {
    max-width: 100%;
    height: auto;
}

.site-footer {
    position: fixed;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: 1200;
    background: rgba(10, 26, 26, 0.85);
    backdrop-filter: blur(14px);
    -webkit-backdrop-filter: blur(14px);
    border-top: 1px solid rgba(64, 224, 208, 0.25);
}

.site-footer-inner {
    width: min(1200px, 100%);
    margin: 0 auto;
    padding: 12px 18px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 16px;
}

.footer-links,
.footer-language {
    display: flex;
    align-items: center;
    gap: 12px;
}

.footer-links a {
    color: #8dd3c7;
    text-decoration: none;
    font-size: 0.95rem;
    transition: color 0.2s ease;
}

.footer-links a:hover {
    color: #40e0d0;
}

.footer-language span {
    color: #d4a574;
    font-size: 0.9rem;
}

.footer-language .lang-link {
    color: #d4a574;
    text-decoration: none;
    font-size: 0.9rem;
    font-weight: 600;
    letter-spacing: 0.04em;
    transition: color 0.2s ease, opacity 0.2s ease;
}

.footer-language .lang-link:hover {
    color: #f0c79d;
}

/* Language Selection Popup */
.language-popup {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.85);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    display: none;
    justify-content: center;
    align-items: center;
    z-index: 10000;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.language-popup.show {
    opacity: 1;
}

.language-popup-content {
    background: rgba(26, 51, 51, 0.95);
    backdrop-filter: blur(30px);
    -webkit-backdrop-filter: blur(30px);
    border: 2px solid rgba(64, 224, 208, 0.5);
    border-radius: 32px;
    padding: 60px 80px;
    text-align: center;
    box-shadow: 
        0 20px 60px rgba(0, 0, 0, 0.8),
        inset 0 1px 1px rgba(64, 224, 208, 0.3);
    transform: scale(0.9);
    transition: transform 0.3s ease;
    max-width: 600px;
    width: 90%;
}

.language-popup.show .language-popup-content {
    transform: scale(1);
}

.language-popup-content h2 {
    font-family: 'Anybody', sans-serif;
    font-size: 3rem;
    color: #40E0D0;
    margin-bottom: 15px;
    font-weight: 600;
    text-shadow: 0 4px 12px rgba(0, 0, 0, 0.5);
}

.language-popup-content p {
    font-size: 1.2rem;
    color: #8dd3c7;
    margin-bottom: 40px;
    font-weight: 300;
}

.language-buttons {
    display: flex;
    gap: 30px;
    justify-content: center;
    flex-wrap: wrap;
}

.language-btn {
    background: rgba(64, 224, 208, 0.15);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    border: 2px solid rgba(64, 224, 208, 0.4);
    border-radius: 20px;
    padding: 25px 45px;
    font-family: 'Inter', sans-serif;
    font-size: 1.3rem;
    color: #40E0D0;
    cursor: pointer;
    transition: all 0.3s ease;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 15px;
    min-width: 200px;
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.4);
}

.language-btn:hover {
    background: rgba(64, 224, 208, 0.3);
    border-color: #40E0D0;
    transform: translateY(-5px) scale(1.05);
    box-shadow: 
        0 12px 36px rgba(0, 0, 0, 0.6),
        0 0 30px rgba(64, 224, 208, 0.4);
}

.language-btn:active {
    transform: translateY(-2px) scale(1.02);
}

.language-btn .flag {
    font-size: 4rem;
    line-height: 1;
    filter: drop-shadow(0 4px 8px rgba(0, 0, 0, 0.3));
}

.language-btn span:last-child {
    font-weight: 500;
    letter-spacing: 1px;
}

/* Video Lightbox */
.video-lightbox {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.95);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    display: none;
    justify-content: center;
    align-items: center;
    z-index: 10001;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.video-lightbox.show {
    opacity: 1;
}

.video-lightbox-content {
    position: relative;
    width: 90%;
    max-width: 1200px;
    aspect-ratio: 16 / 9;
    background: rgba(26, 51, 51, 0.3);
    border: 2px solid rgba(64, 224, 208, 0.5);
    border-radius: 24px;
    overflow: hidden;
    box-shadow: 
        0 20px 60px rgba(0, 0, 0, 0.8),
        inset 0 1px 1px rgba(64, 224, 208, 0.3);
    transform: scale(0.9);
    transition: transform 0.3s ease;
}

.video-lightbox.show .video-lightbox-content {
    transform: scale(1);
}

.video-wrapper {
    width: 100%;
    height: 100%;
    position: relative;
}

.video-wrapper iframe {
    width: 100%;
    height: 100%;
    border: none;
    border-radius: 24px;
}

.lightbox-close {
    position: absolute;
    top: -50px;
    right: 0;
    background: rgba(64, 224, 208, 0.2);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    border: 2px solid rgba(64, 224, 208, 0.5);
    border-radius: 50%;
    width: 50px;
    height: 50px;
    font-size: 2rem;
    color: #40E0D0;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
    font-weight: 300;
    line-height: 1;
    padding: 0;
}

.lightbox-close:hover {
    background: rgba(64, 224, 208, 0.4);
    border-color: #40E0D0;
    transform: rotate(90deg) scale(1.1);
    box-shadow: 0 0 20px rgba(64, 224, 208, 0.6);
}

.lightbox-close:active {
    transform: rotate(90deg) scale(0.95);
}

/* Reserve Button */
.reserve-btn {
    margin-top: 20px;
    background: linear-gradient(135deg, rgba(64, 224, 208, 0.25), rgba(74, 124, 42, 0.25));
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    border: 2px solid rgba(64, 224, 208, 0.5);
    border-radius: 16px;
    padding: 15px 35px;
    font-size: 1.1rem;
    font-weight: 500;
    color: #40E0D0;
    cursor: pointer;
    transition: all 0.3s ease;
    text-transform: uppercase;
    letter-spacing: 1px;
    width: 100%;
    font-family: 'Inter', sans-serif;
}

.reserve-btn:hover {
    background: linear-gradient(135deg, rgba(64, 224, 208, 0.35), rgba(74, 124, 42, 0.35));
    border-color: #40E0D0;
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(64, 224, 208, 0.4);
}

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

/* Reserve Form Popup */
.reserve-popup {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.85);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    display: none;
    justify-content: center;
    align-items: center;
    z-index: 10002;
    opacity: 0;
    transition: opacity 0.3s ease;
    overflow-y: auto;
    padding: 20px;
}

.reserve-popup.show {
    opacity: 1;
}

.reserve-popup-content {
    position: relative;
    background: rgba(26, 51, 51, 0.95);
    backdrop-filter: blur(30px);
    -webkit-backdrop-filter: blur(30px);
    border: 2px solid rgba(64, 224, 208, 0.5);
    border-radius: 32px;
    padding: 50px 60px;
    box-shadow: 
        0 20px 60px rgba(0, 0, 0, 0.8),
        inset 0 1px 1px rgba(64, 224, 208, 0.3);
    transform: scale(0.9);
    transition: transform 0.3s ease;
    max-width: 600px;
    width: 100%;
    margin: auto;
}

.reserve-popup.show .reserve-popup-content {
    transform: scale(1);
}

.reserve-close {
    position: absolute;
    top: 20px;
    right: 20px;
    background: rgba(64, 224, 208, 0.2);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    border: 2px solid rgba(64, 224, 208, 0.5);
    border-radius: 50%;
    width: 45px;
    height: 45px;
    font-size: 1.8rem;
    color: #40E0D0;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
    font-weight: 300;
    line-height: 1;
    padding: 0;
}

.reserve-close:hover {
    background: rgba(64, 224, 208, 0.4);
    border-color: #40E0D0;
    transform: rotate(90deg) scale(1.1);
    box-shadow: 0 0 20px rgba(64, 224, 208, 0.6);
}

.reserve-close:active {
    transform: rotate(90deg) scale(0.95);
}

.reserve-popup-content h2 {
    font-family: 'Anybody', sans-serif;
    font-size: 2.5rem;
    color: #40E0D0;
    margin-bottom: 15px;
    font-weight: 600;
    text-shadow: 0 4px 12px rgba(0, 0, 0, 0.5);
    text-align: center;
}

.reserve-subtitle {
    font-size: 1.1rem;
    color: #8dd3c7;
    margin-bottom: 35px;
    font-weight: 300;
    text-align: center;
}

.form-group {
    margin-bottom: 25px;
}

.form-group label {
    display: block;
    font-size: 1rem;
    color: #40E0D0;
    margin-bottom: 8px;
    font-weight: 500;
}

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 14px 18px;
    background: rgba(0, 0, 0, 0.3);
    border: 2px solid rgba(64, 224, 208, 0.3);
    border-radius: 12px;
    color: #e8f5f5;
    font-size: 1rem;
    font-family: 'Inter', sans-serif;
    transition: all 0.3s ease;
    box-sizing: border-box;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    border-color: #40E0D0;
    background: rgba(0, 0, 0, 0.4);
    box-shadow: 0 0 15px rgba(64, 224, 208, 0.3);
}

.form-group input::placeholder,
.form-group textarea::placeholder {
    color: rgba(232, 245, 245, 0.5);
}

.form-group select {
    appearance: none;
    -webkit-appearance: none;
}

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

.reserve-submit-btn {
    width: 100%;
    padding: 16px 35px;
    background: linear-gradient(135deg, rgba(64, 224, 208, 0.25), rgba(74, 124, 42, 0.25));
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    border: 2px solid rgba(64, 224, 208, 0.5);
    border-radius: 16px;
    font-size: 1.15rem;
    font-weight: 600;
    color: #40E0D0;
    cursor: pointer;
    transition: all 0.3s ease;
    text-transform: uppercase;
    letter-spacing: 1px;
    font-family: 'Inter', sans-serif;
    margin-top: 10px;
}

.reserve-submit-btn:hover:not(:disabled) {
    background: linear-gradient(135deg, rgba(64, 224, 208, 0.35), rgba(74, 124, 42, 0.35));
    border-color: #40E0D0;
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(64, 224, 208, 0.4);
}

.reserve-submit-btn:active:not(:disabled) {
    transform: translateY(0);
}

.reserve-submit-btn:disabled {
    opacity: 0.6;
    cursor: not-allowed;
}

.reserve-message {
    margin-top: 20px;
    padding: 15px;
    border-radius: 12px;
    text-align: center;
    font-size: 1rem;
    font-weight: 500;
    display: none;
}

.reserve-message.success {
    display: block;
    background: rgba(74, 124, 42, 0.3);
    border: 2px solid rgba(74, 124, 42, 0.6);
    color: #9acd32;
}

.reserve-message.error {
    display: block;
    background: rgba(220, 20, 60, 0.3);
    border: 2px solid rgba(220, 20, 60, 0.6);
    color: #ff6b6b;
}

.reserve-message.warning {
    display: block;
    background: rgba(255, 184, 77, 0.2);
    border: 2px solid rgba(255, 184, 77, 0.6);
    color: #ffd38f;
}

.order-confirmation-popup {
    position: fixed;
    inset: 0;
    display: none;
    align-items: center;
    justify-content: center;
    padding: 24px;
    background: rgba(3, 12, 15, 0.78);
    backdrop-filter: blur(18px);
    -webkit-backdrop-filter: blur(18px);
    z-index: 2200;
    opacity: 0;
    transition: opacity 0.32s ease;
}

.order-confirmation-popup.show {
    opacity: 1;
}

.order-confirmation-dialog {
    position: relative;
    width: min(92vw, 560px);
    padding: 34px 30px 30px;
    border-radius: 28px;
    border: 1px solid rgba(120, 224, 209, 0.26);
    background:
        radial-gradient(circle at top, rgba(64, 224, 208, 0.18), transparent 42%),
        linear-gradient(180deg, rgba(15, 33, 37, 0.98), rgba(8, 20, 24, 0.98));
    box-shadow: 0 32px 90px rgba(0, 0, 0, 0.42);
    color: #eaf7f4;
    text-align: center;
    transform: translateY(26px) scale(0.96);
    transition: transform 0.32s ease, opacity 0.32s ease;
    overflow: hidden;
}

.order-confirmation-popup.show .order-confirmation-dialog {
    transform: translateY(0) scale(1);
}

.order-confirmation-dialog::before {
    content: '';
    position: absolute;
    inset: -35% auto auto -8%;
    width: 200px;
    height: 200px;
    background: radial-gradient(circle, rgba(208, 165, 116, 0.24), transparent 70%);
    pointer-events: none;
}

.order-confirmation-close {
    position: absolute;
    top: 14px;
    right: 14px;
    width: 40px;
    height: 40px;
    border: 0;
    border-radius: 999px;
    background: rgba(255, 255, 255, 0.08);
    color: #dff7f3;
    font-size: 1.55rem;
    line-height: 1;
    cursor: pointer;
    transition: background 0.2s ease, transform 0.2s ease;
}

.order-confirmation-close:hover {
    background: rgba(255, 255, 255, 0.14);
    transform: scale(1.04);
}

.order-confirmation-hero {
    position: relative;
    width: 152px;
    height: 152px;
    margin: 4px auto 18px;
    display: grid;
    place-items: center;
}

.order-confirmation-ring {
    position: absolute;
    inset: 0;
    border-radius: 50%;
    border: 1px solid rgba(120, 224, 209, 0.22);
}

.order-confirmation-ring-one {
    animation: orderConfirmationPulse 2.8s ease-out infinite;
}

.order-confirmation-ring-two {
    inset: 12px;
    border-color: rgba(208, 165, 116, 0.22);
    animation: orderConfirmationPulse 2.8s ease-out 0.65s infinite;
}

.order-confirmation-core {
    position: relative;
    width: 98px;
    height: 98px;
    border-radius: 50%;
    display: grid;
    place-items: center;
    background:
        linear-gradient(180deg, rgba(64, 224, 208, 0.26), rgba(64, 224, 208, 0.06)),
        radial-gradient(circle at 30% 30%, rgba(255, 255, 255, 0.24), transparent 40%),
        rgba(6, 26, 28, 0.96);
    border: 1px solid rgba(120, 224, 209, 0.45);
    box-shadow:
        0 0 0 14px rgba(64, 224, 208, 0.05),
        0 12px 40px rgba(0, 0, 0, 0.32);
    animation: orderConfirmationFloat 3.4s ease-in-out infinite;
}

.order-confirmation-check {
    width: 50px;
    height: 50px;
}

.order-confirmation-check path {
    fill: none;
    stroke: #dff7f3;
    stroke-width: 5;
    stroke-linecap: round;
    stroke-linejoin: round;
    stroke-dasharray: 48;
    stroke-dashoffset: 48;
    animation: orderConfirmationDraw 0.72s ease 0.25s forwards;
}

.order-confirmation-eyebrow {
    margin: 0 0 10px;
    text-transform: uppercase;
    letter-spacing: 0.18em;
    font-size: 0.76rem;
    font-weight: 700;
    color: #8dd3c7;
}

.order-confirmation-dialog h2 {
    margin: 0;
    font-size: clamp(1.8rem, 4vw, 2.4rem);
    line-height: 1.08;
    color: #f2fbf8;
}

.order-confirmation-message {
    margin: 16px auto 0;
    max-width: 42ch;
    color: #cfe9e5;
    line-height: 1.65;
    font-size: 1rem;
}

.order-confirmation-reference {
    display: inline-flex;
    flex-direction: column;
    gap: 6px;
    margin: 20px auto 0;
    padding: 12px 16px;
    min-width: min(100%, 260px);
    border: 1px solid rgba(120, 224, 209, 0.2);
    border-radius: 16px;
    background: rgba(255, 255, 255, 0.04);
    color: #9ed8d0;
    font-size: 0.88rem;
}

.order-confirmation-reference strong {
    font-size: 1.02rem;
    letter-spacing: 0.06em;
    color: #f7fffd;
    word-break: break-word;
}

.order-confirmation-hint {
    margin: 18px auto 0;
    max-width: 38ch;
    color: #9ec9c3;
    font-size: 0.92rem;
    line-height: 1.55;
}

.order-confirmation-action {
    margin-top: 24px;
    min-width: 180px;
}

@keyframes orderConfirmationDraw {
    to {
        stroke-dashoffset: 0;
    }
}

@keyframes orderConfirmationPulse {
    0% {
        transform: scale(0.84);
        opacity: 0;
    }

    30% {
        opacity: 0.42;
    }

    100% {
        transform: scale(1.16);
        opacity: 0;
    }
}

@keyframes orderConfirmationFloat {
    0%,
    100% {
        transform: translateY(0);
    }

    50% {
        transform: translateY(-5px);
    }
}

.order-popup-content {
    max-width: 980px;
}

.order-form {
    display: flex;
    flex-direction: column;
    gap: 18px;
}

.order-steps {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 10px;
}

.order-step-pill {
    padding: 10px 14px;
    border-radius: 12px;
    border: 1px solid rgba(64, 224, 208, 0.35);
    color: #8dd3c7;
    background: rgba(0, 0, 0, 0.2);
    text-align: center;
    font-size: 0.92rem;
    font-weight: 600;
}

.order-step-pill.active {
    color: #40e0d0;
    border-color: rgba(64, 224, 208, 0.7);
    background: rgba(64, 224, 208, 0.15);
}

.order-step {
    display: none;
}

.order-step.active {
    display: block;
}

.order-products-grid {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 14px;
}

.order-product-card {
    border: 1px solid rgba(64, 224, 208, 0.3);
    border-radius: 16px;
    padding: 14px;
    background: rgba(0, 0, 0, 0.18);
}

.order-master-preview {
    margin-bottom: 12px;
}

.order-master-preview-image {
    display: block;
    width: 100%;
    height: auto;
    object-fit: contain;
}

.order-product-media {
    width: 100%;
    aspect-ratio: 1 / 1;
    margin-bottom: 12px;
}

.order-product-header {
    display: grid;
    grid-template-columns: 96px 1fr;
    gap: 12px;
    margin-bottom: 10px;
    align-items: center;
}

.order-product-header h3 {
    margin: 0;
    color: #40e0d0;
    font-size: 1.06rem;
}

.order-product-header p {
    margin: 4px 0 0;
    color: #9ed8d0;
    font-size: 0.88rem;
}

.order-product-image-wrap {
    width: 96px;
    height: 96px;
    border-radius: 12px;
    overflow: hidden;
    border: 1px solid rgba(64, 224, 208, 0.25);
    background: rgba(11, 22, 22, 0.75);
}

.order-product-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.order-satellite-image {
    object-fit: contain;
    transform: scale(var(--order-product-scale, 1));
    transform-origin: center center;
}

.order-product-media .order-product-image-wrap {
    width: 100%;
    height: 100%;
}

.order-product-media .order-product-image {
    object-fit: cover;
}

.order-product-media .order-satellite-image {
    object-fit: contain;
}

.order-product-header-stacked {
    grid-template-columns: 1fr;
    gap: 0;
}

.order-variant-row {
    display: grid;
    grid-template-columns: 1fr 86px;
    gap: 12px;
    align-items: center;
    padding: 8px 0;
    border-top: 1px dashed rgba(64, 224, 208, 0.2);
}

.order-variant-row:first-of-type {
    border-top: none;
}

.order-color-picker {
    margin-top: 12px;
    padding-top: 12px;
    border-top: 1px dashed rgba(64, 224, 208, 0.18);
}

.order-color-picker-head {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 10px;
    margin-bottom: 10px;
}

.order-color-picker-title {
    color: #d8f0ed;
    font-size: 0.88rem;
    font-weight: 600;
}

.order-color-picker-value {
    color: #8dd3c7;
    font-size: 0.82rem;
}

.order-color-preview {
    width: 100%;
    height: 130px;
    margin-bottom: 10px;
    border-radius: 12px;
    overflow: hidden;
    border: 1px solid rgba(64, 224, 208, 0.24);
    background: rgba(11, 22, 22, 0.75);
}

.order-color-preview img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.order-master-preview + .order-product-header {
    grid-template-columns: 1fr;
}

.order-color-selector {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
}

.order-color-circle {
    width: 32px;
    height: 32px;
    padding: 0;
    border: 2px solid rgba(64, 224, 208, 0.22);
    border-radius: 999px;
    background: rgba(0, 0, 0, 0.2);
    cursor: pointer;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    transition: transform 0.2s ease, border-color 0.2s ease, box-shadow 0.2s ease;
}

.order-color-circle:hover {
    transform: translateY(-1px);
    border-color: rgba(64, 224, 208, 0.52);
}

.order-color-circle.active {
    border-color: #40e0d0;
    box-shadow: 0 0 14px rgba(64, 224, 208, 0.24);
}

.order-color-dot {
    width: 20px;
    height: 20px;
    border-radius: 999px;
    border: 1px solid rgba(255, 255, 255, 0.18);
    box-shadow: inset 0 1px 2px rgba(255, 255, 255, 0.12);
}

.order-variant-label {
    color: #d8f0ed;
    font-size: 0.94rem;
    font-weight: 600;
}

.order-price-text {
    color: #dff7f3;
    font-size: 1.05rem;
    font-weight: 800;
    line-height: 1.2;
    margin-top: 4px;
}

.order-qty {
    width: 86px;
    padding: 10px 12px;
    border-radius: 10px;
    border: 2px solid rgba(64, 224, 208, 0.3);
    background: rgba(0, 0, 0, 0.3);
    color: #e8f5f5;
    font-size: 0.98rem;
}

.order-qty:focus {
    outline: none;
    border-color: #40e0d0;
    box-shadow: 0 0 14px rgba(64, 224, 208, 0.25);
}

.order-summary-card {
    margin-top: 14px;
    border: 1px solid rgba(64, 224, 208, 0.35);
    border-radius: 16px;
    padding: 16px;
    background: rgba(0, 0, 0, 0.18);
}

.order-summary-row {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 10px;
    color: #dff7f3;
    font-size: 1.08rem;
    font-weight: 700;
}

.order-summary-row strong {
    color: #40e0d0;
    font-size: 1.8rem;
    font-weight: 900;
    letter-spacing: -0.02em;
    text-shadow: 0 0 16px rgba(64, 224, 208, 0.16);
}

.order-summary-note {
    margin-top: 8px;
    margin-bottom: 14px;
    color: #8dd3c7;
    font-size: 0.85rem;
}

.order-checkout-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 14px;
}

.order-checkout-grid .full-row {
    grid-column: 1 / -1;
}

.order-legal-disclaimer {
    margin-top: 18px;
    padding: 18px 20px;
    border-radius: 16px;
    border: 1px solid rgba(141, 211, 199, 0.26);
    background: rgba(0, 0, 0, 0.2);
}

.order-legal-disclaimer h4 {
    margin: 0 0 10px;
    color: #dff7f3;
    font-size: 0.98rem;
    font-weight: 800;
    letter-spacing: 0.04em;
    text-transform: uppercase;
}

.order-legal-disclaimer p {
    margin: 0;
    color: #b9d9d4;
    font-size: 0.9rem;
    line-height: 1.6;
}

.order-legal-disclaimer p + p {
    margin-top: 10px;
}

.order-checkbox-label {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    color: #dff7f3;
    font-size: 0.95rem;
}

.order-actions-row {
    display: flex;
    gap: 12px;
    justify-content: flex-end;
}

.order-secondary-btn {
    padding: 16px 28px;
    background: rgba(0, 0, 0, 0.28);
    border: 2px solid rgba(141, 211, 199, 0.45);
    border-radius: 14px;
    color: #d7ece8;
    font-size: 1rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.2s ease;
}

.order-secondary-btn:hover {
    border-color: rgba(141, 211, 199, 0.8);
    background: rgba(141, 211, 199, 0.12);
}

/* Floating Leaves Animation - Behind Grid */
.leaves-back {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
    z-index: 1;
    overflow: hidden;
}

/* Floating Leaves - In Front (Minimal) */
.leaves-front {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
    z-index: 100;
    overflow: hidden;
}

.leaf {
    position: absolute;
    width: 60px;
    height: 60px;
    object-fit: contain;
    animation: float-leaf linear infinite;
    opacity: 0;
    filter: drop-shadow(0 2px 4px rgba(0, 0, 0, 0.3));
}

.leaf-1 {
    left: 10%;
    animation-duration: 15s;
    animation-delay: 0s;
}

.leaf-2 {
    left: 30%;
    animation-duration: 18s;
    animation-delay: 3s;
    width: 35px;
    height: 35px;
}

.leaf-3 {
    left: 50%;
    animation-duration: 20s;
    animation-delay: 6s;
    width: 45px;
    height: 45px;
}

.leaf-4 {
    left: 70%;
    animation-duration: 16s;
    animation-delay: 2s;
}

.leaf-5 {
    left: 85%;
    animation-duration: 19s;
    animation-delay: 8s;
    width: 38px;
    height: 38px;
}

.leaf-6 {
    left: 20%;
    animation-duration: 17s;
    animation-delay: 5s;
    width: 42px;
    height: 42px;
}

/* Front Leaves - Minimal and Subtle */
.leaf-front-1 {
    left: 15%;
    animation-duration: 22s;
    animation-delay: 4s;
    width: 50px;
    height: 50px;
    opacity: 0 !important;
}

.leaf-front-2 {
    left: 75%;
    animation-duration: 25s;
    animation-delay: 10s;
    width: 45px;
    height: 45px;
    opacity: 0 !important;
}

@keyframes float-leaf-front {
    0% {
        top: -10%;
        opacity: 0;
        transform: translateX(0) rotate(0deg);
    }
    10% {
        opacity: 0.3;
    }
    90% {
        opacity: 0.3;
    }
    100% {
        top: 110%;
        opacity: 0;
        transform: translateX(80px) rotate(360deg);
    }
}

.leaves-front .leaf {
    animation-name: float-leaf-front;
}

@keyframes float-leaf {
    0% {
        top: -10%;
        opacity: 0;
        transform: translateX(0) rotate(0deg);
    }
    10% {
        opacity: 0.7;
    }
    90% {
        opacity: 0.7;
    }
    100% {
        top: 110%;
        opacity: 0;
        transform: translateX(100px) rotate(360deg);
    }
}

/* Grid Container */
.grid-container {
    position: relative;
    z-index: 2;
    display: grid;
    grid-template-columns: repeat(19, 1fr);
    grid-template-rows: repeat(9, 1fr);
    gap: 20px;
    padding: 20px 20px 92px;
    height: 100vh;
    width: 100vw;
}

/* Glassmorphism Effect */
.glass-box {
    background: rgba(26, 51, 51, 0.25);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border: 1px solid rgba(64, 224, 208, 0.3);
    border-radius: 24px;
    padding: 30px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    position: relative;
    overflow: hidden;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    box-shadow: 
        0 8px 32px 0 rgba(0, 0, 0, 0.5),
        inset 0 1px 1px 0 rgba(64, 224, 208, 0.15);
}

.glass-box::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(64, 224, 208, 0.15), transparent);
    transition: left 0.5s;
}

.glass-box:hover::before {
    left: 100%;
}

.glass-box:hover {
    background: rgba(26, 51, 51, 0.35);
    border: 1px solid rgba(64, 224, 208, 0.5);
    transform: translateY(-5px);
    box-shadow: 
        0 12px 48px 0 rgba(0, 0, 0, 0.6),
        inset 0 1px 1px 0 rgba(64, 224, 208, 0.25);
}

/* Box Layouts */
/* Logo - Top Center (Floating Badge - No Glass Box) */
.box-logo {
    grid-column: 5 / 16;
    grid-row: 1 / 7;
    background: none;
    backdrop-filter: none;
    -webkit-backdrop-filter: none;
    border: none;
    box-shadow: none;
    padding: 0;
    overflow: visible;
    z-index: 10;
    display: flex;
    align-items: center;
    justify-content: center;
    pointer-events: none;
}

.box-logo::before {
    display: none;
}

.box-logo:hover {
    background: none;
    border: none;
    transform: none;
    box-shadow: none;
}

/* Text/Mission Box - Top Left (includes contact) */
.box-mission {
    grid-column: 1 / 9;
    grid-row: 1 / 6;
}

/* Gallery - Top Right */
.box-gallery {
    grid-column: 12 / 20;
    grid-row: 1 / 6;
    display: flex;
    flex-direction: column;
    padding-bottom: 20px;
}

/* Gallery bottom controls wrapper */
.box-gallery > div:last-child {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 20px;
    margin-top: 15px;
}

/* Color Options - Bottom Left */
.box-colors {
    grid-column: 1 / 5;
    grid-row: 6 / 10;
}

/* Video - Bottom Center (Large) */
.box-video {
    grid-column: 5 / 16;
    grid-row: 6 / 10;
}

/* Artisan/Luis - Bottom Right */
.box-artisan {
    grid-column: 16 / 20;
    grid-row: 6 / 10;
}

/* Contact - Merged into Mission Box */
.box-contact {
    grid-column: 1 / 5;
    grid-row: 1 / 6;
    display: none;
}

/* Logo Styling - Floating Badge */
.logo-image {
    width: auto;
    max-width: 90%;
    height: 90%;
    object-fit: contain;
    filter: drop-shadow(0 8px 24px rgba(0, 0, 0, 0.7)) drop-shadow(0 0 40px rgba(64, 224, 208, 0.3));
    transition: transform 0.3s ease, filter 0.3s ease;
    margin-top: 10px;
}

.box-logo:hover .logo-image {
    transform: scale(1.05);
    filter: drop-shadow(0 12px 32px rgba(0, 0, 0, 0.8)) drop-shadow(0 0 50px rgba(64, 224, 208, 0.5));
}

/* Tagline Styling */
.tagline {
    font-family: 'Anybody', sans-serif;
    font-size: 2.5rem;
    font-weight: 600;
    color: #40E0D0;
    text-align: center;
    line-height: 1.2;
    margin-bottom: 15px;
    text-shadow: 0 2px 10px rgba(0, 0, 0, 0.5);
}

.subtitle {
    font-size: 0.95rem;
    color: #8dd3c7;
    text-align: center;
    font-weight: 300;
    letter-spacing: 1px;
}

/* Video Box */
.video-container {
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.video-placeholder {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 20px;
    cursor: pointer;
    transition: transform 0.3s ease;
}

.video-placeholder:hover {
    transform: scale(1.1);
}

.video-placeholder svg circle {
    stroke: #40E0D0;
}

.video-placeholder svg path {
    fill: #40E0D0;
}

.video-placeholder svg {
    filter: drop-shadow(0 4px 12px rgba(64, 224, 208, 0.5));
}

.video-label {
    font-family: 'Anybody', sans-serif;
    font-size: 1.8rem;
    color: #40E0D0;
    font-weight: 500;
    text-shadow: 0 2px 8px rgba(0, 0, 0, 0.5);
}

.video-preview {
    position: absolute;
    z-index: -1;
    width: 100%;
    height: 100%;
    object-fit: cover;
    filter: blur(20px);
    border-radius: 16px;
    transition: transform 0.5s ease;
}

.box-video:hover .video-preview {
    transform: scale(1.05);
}

/* Mission Box */
.icon-leaf {
    font-size: 3rem;
    margin-bottom: 15px;
    filter: drop-shadow(0 4px 8px rgba(0, 0, 0, 0.3));
}

.box-mission h3 {
    font-family: 'Anybody', sans-serif;
    font-size: 2rem;
    color: #40E0D0;
    text-align: center;
    margin-bottom: 20px;
    line-height: 1.3;
}

.box-mission p {
    font-size: 1rem;
    color: #8dd3c7;
    text-align: center;
    line-height: 1.8;
    font-weight: 300;
    margin-bottom: 20px;
}

.box-mission blockquote {
    font-family: 'Anybody', sans-serif;
    font-size: 1.3rem;
    font-style: italic;
    color: #40E0D0;
    text-align: center;
    line-height: 1.5;
    margin-top: 20px;
    padding-top: 20px;
    border-top: 1px solid rgba(64, 224, 208, 0.3);
}

.mission-contact {
    margin-top: 25px;
    padding-top: 20px;
    border-top: 1px solid rgba(64, 224, 208, 0.3);
}

.mission-contact h4 {
    font-family: 'Anybody', sans-serif;
    font-size: 1.4rem;
    color: #40E0D0;
    margin-bottom: 12px;
    text-align: center;
}

.mission-contact p {
    font-size: 0.9rem;
    color: #8dd3c7;
    text-align: center;
    margin-bottom: 8px;
}

/* Gallery Box - Slider */
.gallery-slider {
    width: 100%;
    flex: 1;
    position: relative;
    border-radius: 16px;
    overflow: hidden;
}

.gallery-slides {
    width: 100%;
    height: 100%;
    position: relative;
}

.gallery-slide {
    position: absolute;
    width: 100%;
    height: 100%;
    opacity: 0;
    transition: opacity 0.6s ease-in-out;
    display: flex;
    align-items: center;
    justify-content: center;
}

.gallery-slide.active {
    opacity: 1;
}

.gallery-slide img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 16px;
}

/* Gallery arrows - now positioned horizontally */
.gallery-arrow {
    position: static;
    background: rgba(64, 224, 208, 0.3);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(64, 224, 208, 0.5);
    color: #40E0D0;
    font-size: 1.5rem;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    cursor: pointer;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.gallery-arrow:hover {
    background: rgba(64, 224, 208, 0.5);
    transform: scale(1.1);
}

.gallery-indicators {
    display: flex;
    gap: 8px;
    justify-content: center;
    align-items: center;
    margin-bottom: 5px;
}

.indicator {
    width: 10px;
    height: 10px;
    border-radius: 50%;
    background: rgba(64, 224, 208, 0.3);
    border: 1px solid rgba(64, 224, 208, 0.5);
    cursor: pointer;
    transition: all 0.3s ease;
}

.indicator.active {
    background: #40E0D0;
    width: 30px;
    border-radius: 5px;
}

.indicator:hover {
    background: rgba(64, 224, 208, 0.6);
}

.gallery-label {
    font-family: 'Anybody', sans-serif;
    font-size: 1.2rem;
    color: #40E0D0;
    text-align: center;
    font-weight: 500;
    margin: 0;
}

/* Gardener Box */
.box-artisan {
    padding: 0;
    overflow: hidden;
    position: relative;
}

.artisan-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 16px;
    transition: transform 0.5s ease;
}

.box-artisan:hover .artisan-image {
    transform: scale(1.05);
}

.artisan-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    background: linear-gradient(to top, rgba(0, 0, 0, 0.8), transparent);
    padding: 25px;
}

.artisan-overlay h3 {
    font-family: 'Anybody', sans-serif;
    font-size: 1.6rem;
    color: #40E0D0;
    margin-bottom: 5px;
}

.artisan-overlay p {
    font-size: 1rem;
    color: #CD7F32;
    font-weight: 400;
}

/* Color Options Box - Square with Preview */
.box-colors {
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    padding: 25px;
}

.box-colors h4 {
    font-family: 'Anybody', sans-serif;
    font-size: 1.6rem;
    color: #40E0D0;
    margin-bottom: 15px;
    text-align: center;
}

.color-preview {
    flex: 1;
    width: 100%;
    border-radius: 16px;
    overflow: hidden;
    margin-bottom: 20px;
    display: flex;
    justify-content: center;
    align-items: center;
}

.color-preview img {
    width: auto;
    height: 100%;
    object-fit: cover;
}

.color-selector {
    display: flex;
    justify-content: center;
    gap: 15px;
    padding: 10px 0;
}

.color-circle {
    cursor: pointer;
    transition: all 0.3s ease;
    padding: 5px;
    border-radius: 50%;
    border: 3px solid transparent;
}

.color-circle:hover {
    transform: scale(1.15);
    border-color: rgba(64, 224, 208, 0.5);
}

.color-circle.active {
    border-color: #40E0D0;
    box-shadow: 0 0 15px rgba(64, 224, 208, 0.6);
}

.color-dot {
    width: 30px;
    height: 30px;
    border-radius: 50%;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.3);
    transition: all 0.3s ease;
}

.color-circle:hover .color-dot {
    box-shadow: 0 6px 20px rgba(64, 224, 208, 0.4);
}

/* Contact Box */
.box-contact h4 {
    font-family: 'Anybody', sans-serif;
    font-size: 1.6rem;
    color: #40E0D0;
    margin-bottom: 20px;
    text-align: center;
}

.contact-info {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.contact-info p {
    font-size: 0.95rem;
    color: #8dd3c7;
    text-align: center;
    font-weight: 400;
    letter-spacing: 0.5px;
}

/* Responsive Design */
@media (max-width: 1400px) {
    .grid-container {
        gap: 15px;
        padding: 15px 15px 90px;
    }
    
    .glass-box {
        padding: 20px;
    }
    
    .tagline {
        font-size: 2rem;
    }
}

/* Tablet Layout */
@media (max-width: 1024px) {
    .grid-container {
        grid-template-columns: repeat(12, 1fr);
        grid-template-rows: auto;
        gap: 15px;
        padding: 15px 15px 88px;
        height: auto;
        min-height: 100vh;
    }
    
    body {
        overflow-y: auto;
        overflow-x: hidden;
        height: auto;
    }
    
    .box-logo {
        grid-column: 1 / 13;
        grid-row: 1;
        height: 200px;
    }
    
    .logo-image {
        height: 80%;
    }
    
    .box-mission {
        grid-column: 1 / 13;
        grid-row: 2;
        min-height: 300px;
    }
    
    .box-video {
        grid-column: 1 / 13;
        grid-row: 3;
        min-height: 300px;
    }
    
    .box-gallery {
        grid-column: 1 / 13;
        grid-row: 4;
        min-height: 400px;
    }
    
    .box-colors {
        grid-column: 1 / 7;
        grid-row: 5;
        min-height: 350px;
    }
    
    .box-artisan {
        grid-column: 7 / 13;
        grid-row: 5;
        min-height: 350px;
    }
    
    .box-contact {
        display: none;
    }
}

/* Mobile Layout */
@media (max-width: 768px) {
    * {
        max-width: 100%;
        box-sizing: border-box;
    }
    
    html {
        overflow-x: hidden;
        width: 100%;
    }
    
    body {
        overflow-y: auto;
        overflow-x: hidden;
        height: auto;
        width: 100%;
        max-width: 100vw;
        position: relative;
    }
    
    .grid-container {
        grid-template-columns: 1fr;
        grid-template-rows: auto;
        gap: 20px;
        padding: 15px 15px 110px;
        height: auto;
        min-height: 100vh;
        width: 100%;
        max-width: 100%;
        overflow-x: hidden;
    }

    .site-footer-inner {
        flex-direction: column;
        align-items: stretch;
        gap: 10px;
        padding: 10px 14px;
    }

    .footer-links,
    .footer-language {
        justify-content: center;
        flex-wrap: wrap;
    }

    .footer-links a,
    .footer-language span,
    .footer-language .lang-link {
        font-size: 0.88rem;
    }
    
    .glass-box {
        padding: 20px;
        border-radius: 20px;
        width: 100%;
        max-width: 100%;
        box-sizing: border-box;
        overflow: hidden;
    }
    
    img, svg, video, iframe {
        max-width: 100%;
        height: auto;
    }
    
    /* Logo - Large and Overlapping */
    .box-logo {
        grid-column: 1;
        grid-row: 1;
        height: 280px;
        margin-bottom: -40px;
        z-index: 50;
        position: relative;
        overflow: visible;
    }
    
    .logo-image {
        height: 100%;
        width: auto;
        max-width: 95%;
        filter: drop-shadow(0 12px 40px rgba(0, 0, 0, 0.9)) 
                drop-shadow(0 0 60px rgba(64, 224, 208, 0.5));
        transform: scale(1.1);
    }
    
    /* Mission Box */
    .box-mission {
        grid-column: 1;
        grid-row: 2;
        min-height: auto;
        padding: 25px 20px;
    }
    
    .box-mission h3 {
        font-size: 1.6rem;
        margin-bottom: 15px;
    }
    
    .box-mission p {
        font-size: 0.95rem;
        line-height: 1.6;
    }
    
    .mission-contact h4 {
        font-size: 1.2rem;
    }
    
    .mission-contact p {
        font-size: 0.85rem;
    }
    
    /* Video Box */
    .box-video {
        grid-column: 1;
        grid-row: 4;
        min-height: 250px;
        padding: 40px 20px;
    }
    
    .video-placeholder svg {
        width: 60px;
        height: 60px;
    }
    
    .video-label {
        font-size: 1.4rem;
    }
    
    /* Gallery */
    .box-gallery {
        grid-column: 1;
        grid-row: 3;
        min-height: 350px;
        padding: 20px;
    }
    
    .gallery-controls {
        margin-top: 12px;
        gap: 15px;
    }
    
    .gallery-arrow {
        width: 35px;
        height: 35px;
        font-size: 1.3rem;
    }
    
    .gallery-label {
        font-size: 1rem;
    }
    
    /* Colors - Compact */
    .box-colors {
        grid-column: 1;
        grid-row: 5;
        min-height: 250px;
        padding: 15px;
        display: flex;
        flex-direction: column;
        justify-content: center;
    }
    
    .box-colors h4 {
        font-size: 1.2rem;
        margin-bottom: 8px;
    }
    
    .color-preview {
        flex: 0 1 auto;
        height: 80px;
        margin-bottom: 12px;
    }
    
    .color-selector {
        gap: 10px;
        padding: 5px 0;
    }
    
    .color-dot {
        width: 22px;
        height: 22px;
    }
    
    .color-circle {
        padding: 3px;
    }
    
    /* Artisan */
    .box-artisan {
        grid-column: 1;
        grid-row: 6;
        min-height: 300px;
    }
    
    .artisan-overlay h3 {
        font-size: 1.4rem;
    }
    
    .artisan-overlay p {
        font-size: 0.9rem;
    }
    
    /* Language Popup */
    .language-popup-content {
        padding: 40px 30px;
        width: 95%;
    }
    
    .language-popup-content h2 {
        font-size: 2rem;
    }
    
    .language-popup-content p {
        font-size: 1rem;
        margin-bottom: 30px;
    }
    
    .language-buttons {
        flex-direction: column;
        gap: 20px;
        width: 100%;
    }
    
    .language-btn {
        width: 100%;
        min-width: auto;
        padding: 20px 30px;
        font-size: 1.1rem;
    }
    
    /* Video Lightbox */
    .video-lightbox-content {
        width: 95%;
        max-width: 100%;
    }
    
    .lightbox-close {
        top: -45px;
        width: 45px;
        height: 45px;
        font-size: 1.8rem;
    }
    
    .video-wrapper iframe {
        border-radius: 16px;
    }
}

/* Small Mobile */
@media (max-width: 480px) {
    body {
        width: 100vw;
        max-width: 100%;
    }
    
    .grid-container {
        gap: 15px;
        padding: 10px 10px 108px;
        width: 100%;
        max-width: 100vw;
    }
    
    .glass-box {
        padding: 15px;
        border-radius: 16px;
        width: 100%;
        max-width: 100%;
    }
    
    .box-logo {
        height: 220px;
        margin-bottom: -35px;
    }
    
    .logo-image {
        max-width: 90%;
    }
    
    .box-mission h3 {
        font-size: 1.4rem;
    }
    
    .box-mission p {
        font-size: 0.9rem;
    }
    
    .box-video {
        min-height: 200px;
        padding: 30px 15px;
    }
    
    .video-placeholder svg {
        width: 50px;
        height: 50px;
    }
    
    .video-label {
        font-size: 1.2rem;
    }
    
    .box-gallery {
        min-height: 300px;
    }
    
    .gallery-arrow {
        width: 30px;
        height: 30px;
        font-size: 1.2rem;
    }
    
    .box-colors {
        min-height: 160px;
        padding: 12px;
    }
    
    .box-colors h4 {
        font-size: 1.1rem;
        margin-bottom: 6px;
    }
    
    .color-preview {
        height: 200px;
        margin-bottom: 10px;
    }
    
    .color-dot {
        width: 20px;
        height: 20px;
    }
    
    .color-selector {
        gap: 8px;
    }
    
    .language-popup-content {
        padding: 30px 20px;
    }
    
    .language-popup-content h2 {
        font-size: 1.6rem;
    }
    
    .language-btn {
        padding: 18px 25px;
        font-size: 1rem;
    }
    
    .reserve-btn {
        padding: 12px 24px;
        font-size: 0.95rem;
    }
    
    .reserve-popup-content {
        padding: 30px 25px;
        max-width: 90%;
    }

    .order-popup-content {
        max-width: 96%;
    }

    .order-confirmation-popup {
        padding: 16px;
    }

    .order-confirmation-dialog {
        width: 100%;
        padding: 28px 20px 22px;
        border-radius: 24px;
    }

    .order-confirmation-hero {
        width: 128px;
        height: 128px;
        margin-bottom: 14px;
    }

    .order-confirmation-core {
        width: 84px;
        height: 84px;
    }

    .order-confirmation-message,
    .order-confirmation-hint {
        max-width: none;
    }
    
    .reserve-popup-content h2 {
        font-size: 1.6rem;
    }
    
    .reserve-subtitle {
        font-size: 0.9rem;
    }
    
    .form-group label {
        font-size: 0.9rem;
    }
    
    .form-group input,
    .form-group select,
    .form-group textarea {
        font-size: 0.95rem;
        padding: 12px;
    }
    
    .reserve-submit-btn {
        padding: 14px 28px;
        font-size: 1rem;
    }

    .order-products-grid {
        grid-template-columns: 1fr;
    }

    .order-product-header {
        grid-template-columns: 80px 1fr;
    }

    .order-product-image-wrap {
        width: 80px;
        height: 80px;
    }

    .order-checkout-grid {
        grid-template-columns: 1fr;
    }

    .order-actions-row {
        flex-direction: column;
    }

    .order-secondary-btn,
    .order-actions-row .reserve-submit-btn {
        width: 100%;
    }
}
