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

body {
    color: #111;
    font-family: 'Inter', sans-serif;
    background:
        linear-gradient(rgba(0,0,0,0.14), rgba(0,0,0,0.22)),
        url("https://images.unsplash.com/photo-1507525428034-b723cf961d3e?q=80&w=2070&auto=format&fit=crop");
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
}

.page-shell {
    width: 100%;
    min-height: 100vh;
}

/* ===== HERO ===== */

.hero-section {
    height: 52vh;
    position: relative;
    padding: 42px 72px;
    border-bottom: 1px solid rgba(255,255,255,0.14);
}

/* ===== NAV ===== */

.top-nav {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo {
    color: white;
    text-decoration: none;
    font-family: 'Cormorant Garamond', serif;
    font-size: 48px;
    font-weight: 400;
    letter-spacing: 1px;
}

.top-links {
    display: flex;
    gap: 52px;
    align-items: center;
}

.top-links a {
    position: relative;
    color: rgba(255,255,255,0.9);
    text-decoration: none;
    font-size: 12px;
    letter-spacing: 4px;
    transition: 0.25s;
}

.top-links a:hover {
    color: white;
}

.top-links a.active::after,
.top-links a:hover::after {
    content: "";
    position: absolute;
    left: 0;
    bottom: -8px;
    width: 100%;
    height: 1px;
    background: white;
}

/* ===== CART ICON ===== */

.cart {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
}

.cart svg {
    width: 22px;
    height: 22px;
    color: white;
    opacity: 0.92;
    transition: 0.25s ease;
}

.cart svg:hover {
    opacity: 1;
}

.cart-count {
    position: absolute;
    top: -8px;
    right: -10px;
    background: white;
    color: black;
    font-size: 10px;
    font-weight: 700;
    width: 18px;
    height: 18px;
    border-radius: 50%;
    display: none;
    align-items: center;
    justify-content: center;
}

/* ===== HERO CENTER ===== */

.hero-center {
    position: absolute;
    left: 50%;
    top: 54%;
    transform: translate(-50%, -50%);
    text-align: center;
    width: 900px;
    max-width: 90%;
}

.hero-center h1 {
    font-size: 64px;
    letter-spacing: 10px;
    line-height: 1.05;
    font-weight: 500;
    margin-bottom: 24px;
    color: white;
}

.hero-center p {
    max-width: 720px;
    margin: 0 auto 34px;
    font-size: 13px;
    line-height: 1.8;
    letter-spacing: 1.5px;
    text-transform: uppercase;
    color: rgba(255,255,255,0.88);
}

.outline-btn {
    display: inline-block;
    padding: 17px 42px;
    background: white;
    color: black;
    border: none;
    border-radius: 999px;
    letter-spacing: 4px;
    font-size: 11px;
    font-weight: 600;
    text-decoration: none;
    cursor: pointer;
    transition: 0.25s;
}

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

/* ===== ARROWS ===== */

.arrow {
    position: absolute;
    top: 53%;
    transform: translateY(-50%);
    background: transparent;
    border: none;
    color: rgba(255,255,255,0.55);
    font-size: 54px;
    font-weight: 100;
    cursor: pointer;
    transition: 0.25s;
}

.arrow:hover { color: white; }
.left-arrow { left: 72px; }
.right-arrow { right: 72px; }

/* ===== SLIDER ===== */

.slider-lines {
    position: absolute;
    bottom: 34px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    gap: 12px;
}

.slider-lines span {
    width: 34px;
    height: 2px;
    background: rgba(255,255,255,0.35);
}

.slider-lines .active { background: white; }

/* ===== STORE SECTION ===== */

.store-section {
    min-height: 48vh;
    display: grid;
    grid-template-columns: 260px 1fr;
}

/* ===== SIDE PANEL ===== */

.side-panel {
    position: relative;
    padding: 34px 36px 34px;
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
    background: transparent;
    transition: 0.35s ease;
}

.side-panel::before {
    content: "";
    position: absolute;
    inset: 34px 14px auto 14px;
    height: 430px;
    background: rgba(255,255,255,0);
    border: 1px solid rgba(255,255,255,0);
    backdrop-filter: blur(0px);
    opacity: 0;
    transition: 0.35s ease;
    z-index: 0;
}

.side-panel:hover::before {
    background: rgba(255,255,255,0.20);
    border: 1px solid rgba(255,255,255,0.24);
    backdrop-filter: blur(22px);
    opacity: 1;
    box-shadow: 0 24px 80px rgba(0,0,0,0.22);
}

.side-panel > * {
    position: relative;
    z-index: 1;
}

/* ===== SEARCH ===== */

.search-box {
    display: flex;
    align-items: center;
    gap: 12px;
    border-bottom: 1px solid rgba(255,255,255,0.18);
    padding-bottom: 15px;
    margin-top: 9px;
}

.search-box span {
    color: rgba(255,255,255,0.68);
    font-size: 20px;
}

.search-box input {
    background: transparent;
    border: none;
    outline: none;
    color: white;
    letter-spacing: 3px;
    font-size: 12px;
}

.search-box input::placeholder { color: rgba(255,255,255,0.55); }

/* ===== SIDE MENU ===== */

.side-menu {
    display: flex;
    flex-direction: column;
    gap: 22px;
    margin-top: 38px;
}

.side-menu a {
    text-decoration: none;
    color: rgba(255,255,255,0.62);
    letter-spacing: 4px;
    font-size: 13px;
    transition: 0.25s;
}

.side-panel:hover .side-menu a,
.side-panel:hover .newsletter p,
.side-panel:hover .newsletter span { color: white; }

.side-menu a:hover {
    color: white;
    transform: translateX(4px);
}

.side-menu a.active {
    color: white;
    font-weight: 700;
}

/* ===== NEWSLETTER ===== */

.newsletter { margin-top: 70px; }

.newsletter p {
    font-size: 11px;
    letter-spacing: 2px;
    margin-bottom: 10px;
    color: rgba(255,255,255,0.72);
}

.newsletter span {
    display: block;
    color: rgba(255,255,255,0.58);
    font-size: 13px;
    line-height: 1.5;
    margin-bottom: 16px;
}

.email-row {
    display: flex;
    height: 42px;
    border: 1px solid rgba(255,255,255,0.18);
    background: rgba(255,255,255,0.06);
    transition: 0.25s;
}

.side-panel:hover .email-row {
    border: 1px solid rgba(255,255,255,0.32);
    background: rgba(255,255,255,0.14);
}

.email-row input {
    flex: 1;
    background: transparent;
    border: none;
    outline: none;
    color: white;
    padding: 0 14px;
}

.email-row input::placeholder { color: rgba(255,255,255,0.65); }

/* ===== PRODUCTS ===== */

.product-showcase {
    padding: 34px 44px 42px;
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 32px;
}

.product-card {
    background: rgba(255,255,255,0.14);
    backdrop-filter: blur(14px);
    border: 1px solid rgba(255,255,255,0.18);
    min-height: 430px;
    display: flex;
    flex-direction: column;
    overflow: hidden;
    transition: 0.35s ease;
    box-shadow: 0 18px 40px rgba(0,0,0,0.16);
}

.product-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 28px 60px rgba(0,0,0,0.24);
}

.product-image-wrap {
    position: relative;
    width: 100%;
    height: 300px;
    overflow: hidden;
}

.product-image-wrap img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: 0.5s ease;
}

.product-card:hover .product-image-wrap img { transform: scale(1.06); }

.quick-view {
    position: absolute;
    left: 50%;
    bottom: 18px;
    transform: translateX(-50%) translateY(10px);
    opacity: 0;
    padding: 11px 20px;
    border-radius: 999px;
    background: rgba(255,255,255,0.88);
    color: #111;
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 2px;
    cursor: pointer;
    transition: 0.3s ease;
}

.product-card:hover .quick-view {
    opacity: 1;
    transform: translateX(-50%) translateY(0);
}

.product-info {
    flex: 1;
    padding: 24px 26px;
    display: flex;
    justify-content: space-between;
    align-items: flex-end;
}

.product-label {
    display: inline-block;
    margin-bottom: 10px;
    font-size: 10px;
    letter-spacing: 2px;
    font-weight: 700;
    color: rgba(255,255,255,0.62);
}

.product-info h2 {
    font-size: 15px;
    letter-spacing: 4px;
    font-weight: 700;
    margin-bottom: 8px;
    color: white;
}

.product-desc {
    color: rgba(255,255,255,0.68);
    font-size: 13px;
    letter-spacing: 0.5px;
    margin-bottom: 12px;
}

.price {
    color: rgba(255,255,255,0.9);
    letter-spacing: 2px;
    font-size: 13px;
}

/* ===== ADD TO CART BUTTON ===== */

.add-to-cart-btn {
    background: transparent;
    border: 1px solid rgba(255,255,255,0.35);
    color: rgba(255,255,255,0.85);
    padding: 10px 18px;
    font-size: 10px;
    letter-spacing: 3px;
    font-weight: 600;
    cursor: pointer;
    transition: 0.25s;
    white-space: nowrap;
    font-family: 'Inter', sans-serif;
}

.add-to-cart-btn:hover {
    background: white;
    color: black;
    border-color: white;
}

/* ===== QUICK VIEW MODAL ===== */

#quickViewModal {
    display: none;
    position: fixed;
    inset: 0;
    z-index: 1000;
}

#quickViewModal.active {
    display: flex;
    align-items: center;
    justify-content: center;
}

.qv-overlay {
    position: absolute;
    inset: 0;
    background: rgba(0,0,0,0.7);
    backdrop-filter: blur(4px);
}

.qv-content {
    position: relative;
    z-index: 1;
    display: grid;
    grid-template-columns: 1fr 1fr;
    width: 800px;
    max-width: 92vw;
    max-height: 90vh;
    background: rgba(15,15,15,0.96);
    border: 1px solid rgba(255,255,255,0.14);
    overflow: hidden;
}

.qv-close {
    position: absolute;
    top: 16px;
    right: 20px;
    background: transparent;
    border: none;
    color: rgba(255,255,255,0.7);
    font-size: 20px;
    cursor: pointer;
    z-index: 2;
    transition: 0.2s;
}

.qv-close:hover { color: white; }

.qv-image-wrap {
    height: 420px;
    overflow: hidden;
}

.qv-image-wrap img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.qv-details {
    padding: 48px 36px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    gap: 14px;
}

.qv-details h2 {
    color: white;
    font-size: 22px;
    letter-spacing: 4px;
    font-weight: 700;
}

.qv-details .product-desc {
    color: rgba(255,255,255,0.65);
    font-size: 14px;
}

.qv-details .price {
    color: white;
    font-size: 18px;
    letter-spacing: 2px;
}

.qv-add-btn {
    margin-top: 10px;
    padding: 16px;
    font-size: 11px;
    letter-spacing: 4px;
    width: 100%;
    text-align: center;
}

.qv-secure {
    color: rgba(255,255,255,0.45);
    font-size: 12px;
    letter-spacing: 1px;
}

.qv-secure i { margin-right: 6px; }

/* ===== SHOP PAGE ===== */

.shop-hero { height: 44vh; }

.shop-page-section {
    padding: 56px 72px 80px;
    background: rgba(255,255,255,0.08);
    backdrop-filter: blur(10px);
}

.shop-header {
    display: flex;
    align-items: flex-end;
    justify-content: space-between;
    gap: 40px;
    margin-bottom: 42px;
}

.section-kicker {
    display: inline-block;
    margin-bottom: 12px;
    color: rgba(255,255,255,0.7);
    font-size: 11px;
    letter-spacing: 3px;
    font-weight: 700;
}

.shop-header h2 {
    color: white;
    font-family: 'Cormorant Garamond', serif;
    font-size: 54px;
    font-weight: 400;
}

.shop-header p {
    max-width: 460px;
    color: rgba(255,255,255,0.72);
    font-size: 14px;
    line-height: 1.7;
}

.shop-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 32px;
}

/* ===== TRENDING PAGE ===== */

.trending-hero { height: 44vh; }

.trending-section { padding: 56px 72px 80px; }

.trending-header { margin-bottom: 42px; }

.trending-header h2 {
    color: white;
    font-family: 'Cormorant Garamond', serif;
    font-size: 54px;
    font-weight: 400;
}

.trending-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 28px;
}

.featured-product {
    position: relative;
    overflow: hidden;
    min-height: 420px;
    border: 1px solid rgba(255,255,255,0.16);
    background: rgba(255,255,255,0.08);
    backdrop-filter: blur(12px);
}

.featured-product.large {
    grid-column: span 2;
    min-height: 520px;
}

.featured-product img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: 0.5s ease;
}

.featured-product:hover img { transform: scale(1.05); }

.featured-overlay {
    position: absolute;
    left: 0;
    right: 0;
    bottom: 0;
    padding: 28px;
    background: linear-gradient(transparent, rgba(0,0,0,0.78));
}

.featured-overlay span {
    display: inline-block;
    margin-bottom: 10px;
    color: rgba(255,255,255,0.72);
    font-size: 10px;
    letter-spacing: 3px;
    font-weight: 700;
}

.featured-overlay h3 {
    color: white;
    font-size: 32px;
    font-weight: 600;
    margin-bottom: 10px;
}

.featured-overlay p {
    color: rgba(255,255,255,0.74);
    line-height: 1.6;
    max-width: 500px;
}

/* ===== CONTACT PAGE ===== */

.contact-hero { height: 40vh; }

.contact-section { padding: 60px 72px 90px; }

.contact-card {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    padding: 48px;
    background: rgba(255,255,255,0.08);
    border: 1px solid rgba(255,255,255,0.14);
    backdrop-filter: blur(14px);
}

.contact-left h2 {
    color: white;
    font-family: 'Cormorant Garamond', serif;
    font-size: 56px;
    font-weight: 400;
    margin-bottom: 18px;
}

.contact-left p {
    color: rgba(255,255,255,0.74);
    line-height: 1.8;
    max-width: 500px;
}

.contact-details {
    margin-top: 42px;
    display: flex;
    flex-direction: column;
    gap: 28px;
}

.contact-details span {
    display: block;
    margin-bottom: 8px;
    color: rgba(255,255,255,0.6);
    font-size: 11px;
    letter-spacing: 3px;
    font-weight: 700;
}

.contact-details p {
    color: white;
    font-size: 18px;
}

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

.contact-form input,
.contact-form textarea {
    width: 100%;
    padding: 18px 20px;
    border: 1px solid rgba(255,255,255,0.14);
    background: rgba(255,255,255,0.06);
    color: white;
    outline: none;
    font-family: 'Inter', sans-serif;
}

.contact-form textarea {
    min-height: 180px;
    resize: none;
}

.contact-form input::placeholder,
.contact-form textarea::placeholder { color: rgba(255,255,255,0.5); }

.contact-form button {
    height: 56px;
    border: none;
    background: white;
    color: black;
    font-size: 12px;
    letter-spacing: 4px;
    font-weight: 700;
    cursor: pointer;
    transition: 0.25s ease;
    font-family: 'Inter', sans-serif;
}

.contact-form button:hover { transform: translateY(-2px); }

/* ===== CHECKOUT PAGE ===== */

.checkout-page {
    padding: 60px 72px 80px;
    min-height: 60vh;
}

.checkout-container {
    max-width: 1100px;
    margin: 0 auto;
}

.checkout-title {
    font-size: 2rem;
    font-weight: 700;
    margin-bottom: 40px;
    color: white;
    letter-spacing: 6px;
}

.empty-cart-message {
    text-align: center;
    padding: 80px 20px;
    background: rgba(255,255,255,0.08);
    border: 1px solid rgba(255,255,255,0.14);
    backdrop-filter: blur(14px);
}

.empty-cart-message i {
    font-size: 4rem;
    color: rgba(255,255,255,0.4);
    margin-bottom: 20px;
}

.empty-cart-message h2 {
    font-size: 1.5rem;
    margin-bottom: 10px;
    color: white;
    letter-spacing: 3px;
}

.empty-cart-message p {
    color: rgba(255,255,255,0.6);
    margin-bottom: 30px;
}

.checkout-content {
    display: grid;
    grid-template-columns: 1fr 380px;
    gap: 40px;
    align-items: start;
}

.checkout-form-section {
    display: flex;
    flex-direction: column;
    gap: 24px;
}

.checkout-step {
    background: rgba(255,255,255,0.08);
    border: 1px solid rgba(255,255,255,0.14);
    backdrop-filter: blur(14px);
    padding: 30px;
}

.checkout-step h2 {
    font-size: 12px;
    font-weight: 700;
    letter-spacing: 4px;
    margin-bottom: 24px;
    display: flex;
    align-items: center;
    gap: 12px;
    color: white;
}

.step-number {
    width: 26px;
    height: 26px;
    background: white;
    color: black;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 11px;
    font-weight: 700;
}

.form-group { margin-bottom: 18px; }
.form-group:last-child { margin-bottom: 0; }

.form-group label {
    display: block;
    font-size: 10px;
    font-weight: 600;
    letter-spacing: 2px;
    margin-bottom: 8px;
    color: rgba(255,255,255,0.7);
}

.form-group input {
    width: 100%;
    padding: 14px 16px;
    border: 1px solid rgba(255,255,255,0.18);
    background: rgba(255,255,255,0.06);
    color: white;
    font-size: 14px;
    font-family: 'Inter', sans-serif;
    outline: none;
    transition: border-color 0.2s;
}

.form-group input:focus { border-color: rgba(255,255,255,0.5); }
.form-group input::placeholder { color: rgba(255,255,255,0.3); }

.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 16px;
}

.form-row .form-group { margin-bottom: 0; }

.shipping-options {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.shipping-option {
    display: flex;
    align-items: center;
    gap: 15px;
    padding: 16px;
    border: 1px solid rgba(255,255,255,0.14);
    cursor: pointer;
    transition: border-color 0.2s, background-color 0.2s;
}

.shipping-option:hover { border-color: rgba(255,255,255,0.4); }

.shipping-option input {
    width: 16px;
    height: 16px;
    accent-color: white;
}

.shipping-option:has(input:checked) {
    border-color: rgba(255,255,255,0.5);
    background-color: rgba(255,255,255,0.06);
}

.shipping-option-content {
    flex: 1;
    display: flex;
    flex-direction: column;
    gap: 2px;
}

.shipping-name {
    font-weight: 600;
    font-size: 13px;
    color: white;
    letter-spacing: 1px;
}

.shipping-time {
    font-size: 12px;
    color: rgba(255,255,255,0.5);
}

.shipping-price {
    font-weight: 600;
    color: white;
    font-size: 13px;
}

.payment-placeholder {
    text-align: center;
    padding: 40px;
    background: rgba(255,255,255,0.04);
    border: 1px dashed rgba(255,255,255,0.2);
}

.payment-placeholder i {
    font-size: 2rem;
    color: rgba(255,255,255,0.4);
    margin-bottom: 15px;
}

.payment-placeholder p {
    color: rgba(255,255,255,0.5);
    font-size: 13px;
    letter-spacing: 1px;
}

.order-summary {
    background: rgba(255,255,255,0.08);
    border: 1px solid rgba(255,255,255,0.14);
    backdrop-filter: blur(14px);
    padding: 30px;
    position: sticky;
    top: 30px;
}

.order-summary h2 {
    font-size: 12px;
    font-weight: 700;
    letter-spacing: 4px;
    margin-bottom: 24px;
    color: white;
}

.order-items {
    display: flex;
    flex-direction: column;
    gap: 16px;
    margin-bottom: 24px;
    max-height: 300px;
    overflow-y: auto;
}

.order-item {
    display: flex;
    gap: 14px;
    padding-bottom: 16px;
    padding-right: 28px;
    border-bottom: 1px solid rgba(255,255,255,0.08);
    position: relative;
}

.order-item:last-child {
    border-bottom: none;
    padding-bottom: 0;
}

.order-item-image {
    width: 56px;
    height: 56px;
    object-fit: cover;
    background: rgba(255,255,255,0.1);
    flex-shrink: 0;
}

.order-item-details { flex: 1; }

.order-item-name {
    font-weight: 600;
    font-size: 12px;
    letter-spacing: 2px;
    color: white;
    margin-bottom: 6px;
}

.order-item-quantity {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 4px;
}

.qty-btn {
    background: transparent;
    border: none;
    color: rgba(255,255,255,0.45);
    font-size: 18px;
    font-weight: 200;
    cursor: pointer;
    width: 20px;
    height: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: color 0.2s;
    font-family: 'Inter', sans-serif;
    padding: 0;
    line-height: 1;
}

.qty-btn:hover { color: white; }

.order-item-quantity span {
    color: rgba(255,255,255,0.85);
    font-size: 12px;
    font-weight: 500;
    letter-spacing: 2px;
    min-width: 16px;
    text-align: center;
}

.order-item-price {
    font-weight: 600;
    font-size: 12px;
    color: rgba(255,255,255,0.8);
}

.remove-item-btn {
    position: absolute;
    top: 0;
    right: 0;
    background: transparent;
    border: none;
    color: rgba(255,255,255,0.2);
    font-size: 11px;
    cursor: pointer;
    transition: color 0.2s;
    padding: 0;
    font-family: 'Inter', sans-serif;
    letter-spacing: 0;
}

.remove-item-btn:hover { color: rgba(255,255,255,0.6); }

.order-totals {
    border-top: 1px solid rgba(255,255,255,0.12);
    padding-top: 20px;
    display: flex;
    flex-direction: column;
    gap: 12px;
    margin-bottom: 24px;
}

.order-totals > div {
    display: flex;
    justify-content: space-between;
    font-size: 12px;
    color: rgba(255,255,255,0.7);
    letter-spacing: 1px;
}

.order-totals .total {
    font-size: 13px;
    font-weight: 700;
    color: white;
    padding-top: 12px;
    border-top: 1px solid rgba(255,255,255,0.12);
    letter-spacing: 2px;
}

.btn-checkout {
    width: 100%;
    padding: 18px;
    background: white;
    color: black;
    border: none;
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 4px;
    cursor: pointer;
    transition: 0.25s;
    font-family: 'Inter', sans-serif;
}

.btn-checkout:hover:not(:disabled) { transform: translateY(-2px); }

.btn-checkout:disabled {
    opacity: 0.35;
    cursor: not-allowed;
}

.secure-checkout {
    text-align: center;
    margin-top: 14px;
    font-size: 11px;
    color: rgba(255,255,255,0.4);
    letter-spacing: 1px;
}

.secure-checkout i { margin-right: 5px; }

/* ===== RESPONSIVE ===== */

@media (max-width: 1100px) {
    body { overflow: auto; }

    .hero-section {
        height: auto;
        min-height: 600px;
    }

    .top-links { display: none; }

    .hero-center h1 {
        font-size: 40px;
        letter-spacing: 6px;
    }

    .store-section { grid-template-columns: 1fr; }
    .side-panel { display: none; }
    .product-showcase { grid-template-columns: 1fr; }

    .shop-page-section { padding: 38px 24px 60px; }
    .shop-header { flex-direction: column; align-items: flex-start; }
    .shop-grid { grid-template-columns: 1fr; }

    .trending-section { padding: 38px 24px 60px; }
    .trending-grid { grid-template-columns: 1fr; }
    .featured-product.large { grid-column: span 1; }

    .contact-section { padding: 40px 24px 60px; }
    .contact-card { grid-template-columns: 1fr; padding: 28px; }
    .contact-left h2 { font-size: 42px; }

    .checkout-page { padding: 40px 24px 60px; }
    .checkout-content { grid-template-columns: 1fr; }
    .order-summary { position: static; }
}

@media (max-width: 700px) {
    .qv-content { grid-template-columns: 1fr; }
    .qv-image-wrap { height: 240px; }
    .qv-details { padding: 28px 24px; }
    .form-row { grid-template-columns: 1fr; }
}