/**
 * LonexStore - Public Storefront Styles
 * Uses v1.9 design system variables from style.css
 */

/* =========================================
   LAYOUT
   ========================================= */

.store-page {
    min-height: calc(100vh - 200px);
    padding-top: 2rem;
    padding-bottom: 4rem;
}

.store-page--no-top-pad {
    padding-top: 0;
}

/* Hero */
.store-hero {
    background: linear-gradient(135deg, var(--accent) 0%, color-mix(in srgb, var(--accent) 60%, #000) 100%);
    padding: 3.5rem 0;
    margin-bottom: 3rem;
    text-align: center;
    color: #fff;
}

.store-hero h1 {
    font-family: var(--font-display);
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 0.5rem;
}

.store-hero p {
    opacity: 0.85;
    font-size: 1.1rem;
}

/* Breadcrumb */
.breadcrumb {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    margin-bottom: 1.5rem;
    font-size: 0.875rem;
}

.breadcrumb a {
    color: var(--accent);
    text-decoration: none;
}

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

.breadcrumb .separator {
    color: var(--text-muted);
    user-select: none;
}

.breadcrumb span:not(.separator) {
    color: var(--text-muted);
}

/* Section Headers */
.store-section {
    margin-bottom: 3rem;
}

.section-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 1.5rem;
}

.section-header h2 {
    font-family: var(--font-display);
    font-size: 1.5rem;
    font-weight: 600;
    margin: 0;
}


/* =========================================
   PRODUCT CARDS
   ========================================= */

.products-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(260px, 1fr));
    gap: 1.5rem;
}

.product-card {
    background: var(--bg-card);
    border: 1px solid var(--border);
    border-radius: var(--radius-lg);
    overflow: hidden;
    text-decoration: none;
    color: inherit;
    transition: transform 0.2s, border-color 0.2s, box-shadow 0.2s;
    display: flex;
    flex-direction: column;
}

.product-card:hover {
    transform: translateY(-4px);
    border-color: var(--border-light);
    box-shadow: 0 12px 32px rgba(0, 0, 0, 0.3);
}

.product-card.featured {
    border-color: var(--accent);
}

.product-card .product-image {
    aspect-ratio: 16 / 10;
    background: var(--bg-darker);
    position: relative;
    overflow: hidden;
}

.product-card .product-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s;
}

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

.product-card .no-image {
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--text-muted);
}

.product-card .sale-badge {
    position: absolute;
    top: 0.75rem;
    left: 0.75rem;
    background: var(--danger);
    color: #fff;
    padding: 0.25rem 0.75rem;
    border-radius: 20px;
    font-size: 0.75rem;
    font-weight: 600;
}

.product-card .type-badge {
    position: absolute;
    top: 0.75rem;
    right: 0.75rem;
    background: rgba(0, 0, 0, 0.6);
    backdrop-filter: blur(8px);
    color: #fff;
    padding: 0.25rem 0.75rem;
    border-radius: 20px;
    font-size: 0.7rem;
    text-transform: uppercase;
    letter-spacing: 0.03em;
}

.product-card .product-info {
    padding: 1.125rem;
    flex: 1;
    display: flex;
    flex-direction: column;
}

.product-card h3 {
    font-family: var(--font-display);
    font-size: 1rem;
    font-weight: 600;
    margin: 0 0 0.5rem;
    color: var(--text);
}

.product-card p {
    font-size: 0.85rem;
    color: var(--text-dim);
    margin: 0;
    flex: 1;
    line-height: 1.5;
}

.product-card .product-footer {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-top: 1rem;
    padding-top: 1rem;
    border-top: 1px solid var(--border);
}

.product-card .product-price {
    display: flex;
    align-items: baseline;
    gap: 0.5rem;
}

.product-card .price,
.product-card .price-sale {
    font-family: var(--font-display);
    font-size: 1.125rem;
    font-weight: 700;
    color: var(--text);
}

.product-card .price-sale {
    color: var(--success);
}

.product-card .price-original {
    font-size: 0.85rem;
    color: var(--text-muted);
    text-decoration: line-through;
}

.product-card .view-btn {
    font-size: 0.85rem;
    color: var(--accent);
    font-weight: 600;
}


/* =========================================
   CATEGORIES GRID
   ========================================= */

.categories-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(220px, 1fr));
    gap: 1rem;
}

.category-card {
    background: var(--bg-card);
    border: 1px solid var(--border);
    border-radius: var(--radius-lg);
    padding: 1.5rem;
    display: flex;
    align-items: center;
    gap: 1rem;
    text-decoration: none;
    color: inherit;
    transition: border-color 0.2s, background 0.2s;
}

.category-card:hover {
    border-color: var(--accent);
    background: var(--bg-card-hover);
}

.category-card .category-icon {
    width: 52px;
    height: 52px;
    background: var(--accent);
    border-radius: var(--radius);
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    flex-shrink: 0;
}

.category-card .category-info h3 {
    font-family: var(--font-display);
    font-size: 1rem;
    font-weight: 600;
    margin: 0 0 0.25rem;
    color: var(--text);
}

.category-card .category-count {
    font-size: 0.85rem;
    color: var(--text-muted);
}


/* =========================================
   PRODUCT DETAIL
   ========================================= */

.product-detail {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
    margin-bottom: 3rem;
}

.product-detail-image {
    position: relative;
    border-radius: var(--radius-lg);
    overflow: hidden;
    background: var(--bg-darker);
    aspect-ratio: 1;
}

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

.product-detail-image .no-image {
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--text-muted);
}

.product-detail-image .sale-badge {
    position: absolute;
    top: 1rem;
    left: 1rem;
    background: var(--danger);
    color: #fff;
    padding: 0.5rem 1rem;
    border-radius: 20px;
    font-weight: 600;
}

.product-detail-info .product-meta {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-bottom: 1rem;
}

.product-detail-info .type-badge {
    background: rgba(255, 255, 255, 0.06);
    border: 1px solid var(--border);
    padding: 0.375rem 0.75rem;
    border-radius: 20px;
    font-size: 0.75rem;
    text-transform: uppercase;
    font-weight: 600;
    color: var(--text-dim);
}

.product-detail-info .category-link {
    color: var(--accent);
    text-decoration: none;
    font-size: 0.875rem;
}

.product-detail-info h1 {
    font-family: var(--font-display);
    font-size: 2rem;
    font-weight: 700;
    margin: 0 0 1rem;
    color: var(--text);
}

.product-short-desc {
    font-size: 1.05rem;
    color: var(--text-dim);
    margin-bottom: 1.5rem;
    line-height: 1.6;
}

.product-price-box {
    display: flex;
    align-items: baseline;
    gap: 1rem;
    margin-bottom: 1.5rem;
}

.product-price-box .price,
.product-price-box .price-sale {
    font-family: var(--font-display);
    font-size: 2rem;
    font-weight: 700;
    color: var(--text);
}

.product-price-box .price-sale {
    color: var(--success);
}

.product-price-box .price-original {
    font-size: 1.25rem;
    color: var(--text-muted);
    text-decoration: line-through;
}

.product-price-box .discount-percent {
    background: rgba(245, 166, 35, 0.15);
    color: var(--warning);
    padding: 0.25rem 0.75rem;
    border-radius: 20px;
    font-size: 0.85rem;
    font-weight: 600;
}

.stock-status {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    margin-bottom: 1.5rem;
    font-size: 0.875rem;
}

.stock-status.in-stock { color: var(--success); }
.stock-status.out-of-stock { color: var(--danger); }

.product-actions {
    margin-bottom: 2rem;
}

.product-actions .btn {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
}

.whats-included {
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid var(--border);
    border-radius: var(--radius-lg);
    padding: 1.5rem;
}

.whats-included h3 {
    font-family: var(--font-display);
    font-size: 1rem;
    font-weight: 600;
    margin: 0 0 1rem;
    color: var(--text);
}

.deliverables-list {
    list-style: none;
    padding: 0;
    margin: 0;
}

.deliverables-list li {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    padding: 0.625rem 0;
    color: var(--text-dim);
    font-size: 0.9rem;
}

.deliverables-list li + li {
    border-top: 1px solid var(--border);
}

.deliverables-list li svg {
    color: var(--success);
    flex-shrink: 0;
}

.product-description {
    background: var(--bg-card);
    border: 1px solid var(--border);
    border-radius: var(--radius-lg);
    padding: 2rem;
    margin-bottom: 2rem;
}

.product-description h2 {
    font-family: var(--font-display);
    font-size: 1.25rem;
    margin: 0 0 1rem;
}

.product-description p {
    color: var(--text-dim);
    line-height: 1.7;
}


/* =========================================
   CATEGORY PAGE
   ========================================= */

.category-page-grid {
    display: grid;
    grid-template-columns: 250px 1fr;
    gap: 2rem;
}

.store-sidebar {
    position: sticky;
    top: calc(var(--nav-height, 64px) + 1.5rem);
}

.sidebar-section {
    background: var(--bg-card);
    border: 1px solid var(--border);
    border-radius: var(--radius-lg);
    padding: 1.25rem;
    margin-bottom: 1rem;
}

.sidebar-section h3 {
    font-family: var(--font-display);
    font-size: 0.9rem;
    font-weight: 600;
    margin: 0 0 1rem;
    color: var(--text);
}

.category-list {
    list-style: none;
    padding: 0;
    margin: 0;
}

.category-list li a {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0.5rem 0.75rem;
    margin: 0 -0.75rem;
    border-radius: var(--radius);
    color: var(--text-dim);
    text-decoration: none;
    font-size: 0.875rem;
    transition: all 0.15s;
}

.category-list li a:hover,
.category-list li a.active {
    background: var(--accent-dim);
    color: var(--accent);
}

.category-list .count {
    font-size: 0.75rem;
    color: var(--text-muted);
    background: rgba(255, 255, 255, 0.05);
    padding: 2px 8px;
    border-radius: 10px;
}


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

.cart-grid {
    display: grid;
    grid-template-columns: 1fr 380px;
    gap: 2rem;
    align-items: start;
}

.cart-items {
    background: var(--bg-card);
    border: 1px solid var(--border);
    border-radius: var(--radius-lg);
    overflow: hidden;
}

.cart-item {
    display: flex;
    align-items: center;
    gap: 1rem;
    padding: 1.25rem;
    border-bottom: 1px solid var(--border);
}

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

.cart-item .item-image {
    width: 72px;
    height: 72px;
    border-radius: var(--radius);
    overflow: hidden;
    flex-shrink: 0;
    background: var(--bg-darker);
}

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

.cart-item .item-details {
    flex: 1;
    min-width: 0;
}

.cart-item .item-details h4 {
    font-family: var(--font-display);
    font-size: 0.95rem;
    font-weight: 600;
    margin: 0 0 0.25rem;
    color: var(--text);
}

.cart-item .item-details p {
    font-size: 0.8rem;
    color: var(--text-muted);
    margin: 0;
}

.cart-item .item-price {
    font-family: var(--font-display);
    font-weight: 700;
    font-size: 1rem;
    text-align: right;
    white-space: nowrap;
    color: var(--text);
}

.cart-item .item-price .price-sale {
    color: var(--success);
}

.cart-item .item-price .price-original {
    font-size: 0.85rem;
    color: var(--text-muted);
    text-decoration: line-through;
    display: block;
    font-weight: 400;
}

.cart-item .remove-btn {
    background: none;
    border: none;
    color: var(--text-muted);
    cursor: pointer;
    padding: 0.5rem;
    border-radius: var(--radius);
    transition: color 0.2s, background 0.2s;
}

.cart-item .remove-btn:hover {
    color: var(--danger);
    background: rgba(255, 71, 87, 0.1);
}

.cart-actions {
    display: flex;
    gap: 1rem;
    padding: 1rem 1.25rem;
    border-top: 1px solid var(--border);
}

/* Cart Summary */
.cart-summary {
    background: var(--bg-card);
    border: 1px solid var(--border);
    border-radius: var(--radius-lg);
    padding: 1.5rem;
    position: sticky;
    top: calc(var(--nav-height, 64px) + 1.5rem);
}

.cart-summary h3 {
    font-family: var(--font-display);
    font-size: 1.125rem;
    font-weight: 600;
    margin: 0 0 1.5rem;
    color: var(--text);
}

.summary-rows {
    margin-bottom: 1rem;
}

.summary-row {
    display: flex;
    justify-content: space-between;
    padding: 0.5rem 0;
    color: var(--text-dim);
}

.summary-row.discount {
    color: var(--success);
}

.summary-total {
    display: flex;
    justify-content: space-between;
    padding: 1rem 0;
    border-top: 1px solid var(--border);
    font-family: var(--font-display);
    font-size: 1.25rem;
    font-weight: 700;
    color: var(--text);
}

/* Coupon */
.coupon-section {
    padding: 1rem 0;
    border-top: 1px solid var(--border);
    margin-bottom: 1rem;
}

.coupon-form {
    display: flex;
    gap: 0.5rem;
}

.coupon-form .form-control {
    flex: 1;
    text-transform: uppercase;
}

.coupon-applied {
    display: flex;
    justify-content: space-between;
    align-items: center;
    background: rgba(0, 217, 126, 0.1);
    border: 1px solid rgba(0, 217, 126, 0.2);
    color: var(--success);
    padding: 0.75rem 1rem;
    border-radius: var(--radius);
}

.coupon-applied svg {
    margin-right: 0.5rem;
}

.coupon-applied .remove-coupon {
    background: none;
    border: none;
    color: inherit;
    text-decoration: underline;
    cursor: pointer;
    font-size: 0.85rem;
}

.coupon-error {
    color: var(--danger);
    font-size: 0.85rem;
    margin: 0.5rem 0 0;
}

.payment-methods {
    text-align: center;
    margin-top: 1rem;
    color: var(--text-muted);
    font-size: 0.85rem;
}

.payment-icons {
    display: flex;
    justify-content: center;
    gap: 0.5rem;
    margin-top: 0.5rem;
}


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

.checkout-grid {
    display: grid;
    grid-template-columns: 1fr 400px;
    gap: 2rem;
    align-items: start;
}

.checkout-sidebar {
    position: sticky;
    top: calc(var(--nav-height, 64px) + 1.5rem);
}

.payment-method-option {
    background: var(--bg-card);
    border: 2px solid var(--border);
    border-radius: var(--radius-lg);
    padding: 1.25rem;
    cursor: pointer;
    transition: border-color 0.2s;
    display: flex;
    align-items: center;
    gap: 1rem;
}

.payment-method-option:hover {
    border-color: var(--border-light);
}

.payment-method-option.selected {
    border-color: var(--accent);
    background: var(--accent-dim);
}


/* =========================================
   ORDER PAGES
   ========================================= */

.order-detail-grid {
    display: grid;
    grid-template-columns: 1fr 340px;
    gap: 2rem;
    align-items: start;
}

.order-sidebar {
    position: sticky;
    top: calc(var(--nav-height, 64px) + 1.5rem);
}

.order-card {
    background: var(--bg-card);
    border: 1px solid var(--border);
    border-radius: var(--radius-lg);
    overflow: hidden;
    margin-bottom: 1.5rem;
}

.order-card-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1rem 1.25rem;
    border-bottom: 1px solid var(--border);
}

.order-card-header h3 {
    font-family: var(--font-display);
    font-size: 1rem;
    font-weight: 600;
    margin: 0;
}

.order-card-body {
    padding: 1.25rem;
}

.order-meta {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1rem;
}

.order-meta-item {
    display: flex;
    flex-direction: column;
    gap: 0.25rem;
}

.order-meta-item .label {
    font-size: 0.75rem;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    color: var(--text-muted);
}

.order-meta-item .value {
    font-weight: 600;
    color: var(--text);
}

.order-item {
    display: flex;
    align-items: center;
    gap: 1rem;
    padding: 1rem 1.25rem;
    border-bottom: 1px solid var(--border);
}

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

.order-item .item-image {
    width: 56px;
    height: 56px;
    border-radius: var(--radius);
    overflow: hidden;
    flex-shrink: 0;
    background: var(--bg-darker);
}

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

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

.order-item .item-details h4 {
    font-size: 0.9rem;
    font-weight: 600;
    margin: 0 0 0.125rem;
}

.order-item .item-details p {
    font-size: 0.8rem;
    color: var(--text-muted);
    margin: 0;
}

.order-item .item-price {
    font-family: var(--font-display);
    font-weight: 700;
    white-space: nowrap;
}

.delivery-item {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    padding: 0.75rem 1rem;
    background: rgba(255, 255, 255, 0.02);
    border: 1px solid var(--border);
    border-radius: var(--radius);
    margin-bottom: 0.5rem;
    font-size: 0.875rem;
}

.delivery-item svg { flex-shrink: 0; }

.order-banner {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    padding: 1rem 1.25rem;
    border-radius: var(--radius);
    margin-bottom: 1.5rem;
    font-size: 0.9rem;
}

.order-banner.success {
    background: rgba(0, 217, 126, 0.08);
    border: 1px solid rgba(0, 217, 126, 0.2);
    color: var(--success);
}

.order-banner.warning {
    background: rgba(245, 166, 35, 0.08);
    border: 1px solid rgba(245, 166, 35, 0.2);
    color: var(--warning);
}

.order-banner.danger {
    background: rgba(255, 71, 87, 0.08);
    border: 1px solid rgba(255, 71, 87, 0.2);
    color: var(--danger);
}


/* =========================================
   EMPTY STATE
   ========================================= */

.empty-state {
    text-align: center;
    padding: 4rem 2rem;
    color: var(--text-muted);
}

.empty-state svg {
    margin-bottom: 1.5rem;
    opacity: 0.4;
}

.empty-state h3 {
    font-family: var(--font-display);
    color: var(--text-dim);
    margin: 0 0 0.5rem;
}

.empty-state p {
    margin: 0 0 1.5rem;
}


/* =========================================
   PAGINATION
   ========================================= */

.pagination {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 1rem;
    margin-top: 2rem;
    padding-top: 2rem;
    border-top: 1px solid var(--border);
}

.page-info {
    color: var(--text-muted);
    font-size: 0.875rem;
}


/* =========================================
   BUTTONS
   ========================================= */

.btn-lg {
    padding: 0.875rem 1.75rem;
    font-size: 1rem;
}

.btn-block {
    display: block;
    width: 100%;
    text-align: center;
}

.btn-outline {
    background: transparent;
    border: 1px solid var(--border);
    color: var(--text);
}

.btn-outline:hover {
    background: var(--bg-card);
    border-color: var(--border-light);
}


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

.nav-cart {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    border-radius: var(--radius);
    color: var(--text);
    transition: background 0.2s, color 0.2s;
}

.nav-cart:hover {
    background: rgba(255, 255, 255, 0.05);
    color: var(--accent);
}

.cart-count {
    position: absolute;
    top: 0;
    right: 0;
    min-width: 18px;
    height: 18px;
    padding: 0 5px;
    background: var(--accent);
    color: #fff;
    font-size: 0.7rem;
    font-weight: 700;
    border-radius: 9px;
    display: flex;
    align-items: center;
    justify-content: center;
}


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

@media (max-width: 992px) {
    .product-detail {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    .product-detail-image {
        max-width: 500px;
        margin: 0 auto;
    }
    .category-page-grid {
        grid-template-columns: 1fr;
    }
    .store-sidebar {
        position: static;
    }
    .cart-grid {
        grid-template-columns: 1fr;
    }
    .cart-summary {
        position: static;
    }
    .checkout-grid {
        grid-template-columns: 1fr;
    }
    .checkout-sidebar {
        position: static;
    }
    .order-detail-grid {
        grid-template-columns: 1fr;
    }
    .order-sidebar {
        position: static;
    }
}

@media (max-width: 768px) {
    .store-hero {
        padding: 2rem 0;
    }
    .store-hero h1 {
        font-size: 1.75rem;
    }
    .store-hero p {
        font-size: 0.95rem;
    }
    .products-grid {
        grid-template-columns: repeat(auto-fill, minmax(200px, 1fr));
    }
    .product-detail-info h1 {
        font-size: 1.375rem;
    }
    .product-price-box .price,
    .product-price-box .price-sale {
        font-size: 1.5rem;
    }
    .cart-item {
        flex-wrap: wrap;
    }
    .cart-item .item-details {
        flex: 1 1 100%;
    }
    .cart-item .item-actions {
        width: 100%;
        display: flex;
        justify-content: space-between;
    }
    .store-sidebar {
        position: static;
        order: -1;
    }
    .sidebar-section {
        padding: 1rem;
    }
    .category-list {
        display: flex;
        flex-wrap: wrap;
        gap: 0.5rem;
    }
    .category-list li a {
        padding: 0.5rem 0.75rem;
        background: rgba(255, 255, 255, 0.04);
        border-radius: 20px;
        font-size: 0.8rem;
        white-space: nowrap;
        margin: 0;
    }
    .category-list .count {
        display: none;
    }
    .product-description {
        padding: 1.25rem;
    }
    .product-gallery,
    .product-detail-image {
        max-height: 300px;
    }
    .order-detail-grid {
        grid-template-columns: 1fr;
    }
    .order-meta {
        grid-template-columns: 1fr;
    }
    .order-card-header {
        flex-direction: column;
        gap: 0.5rem;
        align-items: flex-start;
    }
    .order-item {
        flex-wrap: wrap;
        gap: 0.75rem;
    }
    .order-item .item-image {
        width: 48px;
        height: 48px;
    }
    .order-item .item-price {
        width: 100%;
        text-align: right;
    }
    .delivery-item {
        flex-wrap: wrap;
    }
    .store-page .container {
        padding-left: 1rem;
        padding-right: 1rem;
    }
}

@media (max-width: 480px) {
    .products-grid {
        grid-template-columns: 1fr;
        gap: 1rem;
    }
    .section-header {
        flex-direction: column;
        align-items: flex-start;
        gap: 0.5rem;
    }
    .section-header h2 {
        font-size: 1.25rem;
    }
    .breadcrumb {
        font-size: 0.8rem;
        flex-wrap: wrap;
    }
    .order-banner {
        flex-direction: column;
        gap: 0.5rem;
        text-align: center;
    }
    .store-page .btn:not(.btn-sm):not(.btn-xs) {
        width: 100%;
        text-align: center;
    }
    .store-page .btn + .btn {
        margin-left: 0;
        margin-top: 0.5rem;
    }
    .coupon-form {
        flex-direction: column;
    }
    .coupon-form input,
    .coupon-form button {
        width: 100%;
    }
    .payment-methods {
        flex-direction: column;
    }
    .payment-method-option {
        width: 100%;
    }
    .store-page .container {
        padding-left: 0.75rem;
        padding-right: 0.75rem;
    }
}
