/* ========================================
   CSS Mobile-First - Mercado Livre
   Replicação exata das prints mobile
   ======================================== */

/* Reset */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

:root {
    --ml-yellow: #fff159;
    --ml-blue: #3483fa;
    --ml-blue-dark: #2968c8;
    --ml-green: #00a650;
    --ml-black: #000;
    --ml-gray-dark: #333;
    --ml-gray: #666;
    --ml-gray-light: #999;
    --ml-gray-lighter: #e6e6e6;
    --ml-gray-lightest: #f5f5f5;
    --ml-white: #fff;
    --font-family: "Proxima Nova", -apple-system, Roboto, Arial, sans-serif;
}

@font-face {
    font-family: "Proxima Nova";
    src: url("../fonts/proximanova-regular.woff2") format("woff2");
    font-weight: 400;
    font-style: normal;
    font-display: swap;
}

@font-face {
    font-family: "Proxima Nova";
    src: url("../fonts/proximanova-semibold.woff2") format("woff2");
    font-weight: 600;
    font-style: normal;
    font-display: swap;
}

body {
    font-family: var(--font-family);
    font-size: 14px;
    line-height: 1.5;
    color: var(--ml-gray-dark);
    background-color: var(--ml-white);
    -webkit-font-smoothing: antialiased;
}

img {
    max-width: 100%;
    height: auto;
    display: block;
}

a {
    text-decoration: none;
    color: inherit;
}

button {
    font-family: inherit;
    border: none;
    background: none;
    cursor: pointer;
}

/* ========================================
   HEADER MOBILE
   ======================================== */
.header-mobile {
    background-color: #fff159;
    box-shadow: 0 1px 0 0 #d4c643;
    position: sticky;
    top: 0;
    z-index: 1000;
}

.header-top {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 8px 12px;
}

.header-left {
    display: flex;
    align-items: center;
    gap: 12px;
}

.menu-btn {
    padding: 4px;
    color: var(--ml-gray-dark);
}

.menu-btn .icon {
    width: 20px;
    height: 20px;
}

.logo-link {
    display: block;
}

.logo-img {
    height: 28px;
    width: auto;
}

.header-right {
    display: flex;
    gap: 16px;
    align-items: center;
}

.header-icon-btn {
    position: relative;
    padding: 4px;
    width: 32px;
    height: 32px;
    background-image: url('../images/icones_header.png');
    background-repeat: no-repeat;
    background-size: 64px 32px;
    border: none;
    cursor: pointer;
}

.header-icon-bell {
    background-position: 0 0;
}

.header-icon-cart {
    background-position: -32px 0;
}

.notification-badge,
.cart-badge {
    position: absolute;
    top: -2px;
    right: -2px;
    background-color: #f23d4f;
    color: white;
    font-size: 10px;
    font-weight: 600;
    padding: 2px 5px;
    border-radius: 10px;
    min-width: 18px;
    text-align: center;
}


.header-location {
    display: flex;
    align-items: center;
    gap: 6px;
    padding: 6px 12px;
    background-color: #fff159;
    border-top: 1px solid var(--ml-gray-lighter);
    font-size: 13px;
}

.location-text {
    flex: 1;
}

.location-icon {
    width: 16px;
    height: 16px;
    flex-shrink: 0;
    color: var(--ml-gray-dark);
}

.location-arrow {
    margin-left: auto;
    width: 18px;
    height: 18px;
    flex-shrink: 0;
    color: var(--ml-gray);
}

/* ========================================
   MAIN CONTENT
   ======================================== */
.main-content {
    padding: 12px;
    max-width: 100%;
}

/* Product Status and Rating */
.product-status-rating {
    display: flex;
    align-items: center;
    gap: 6px;
    margin-bottom: 8px;
    font-size: 12px;
    font-weight: 400;
    color: var(--ml-gray);
    flex-wrap: wrap;
}

.rating-stars-inline {
    display: flex;
    gap: 1px;
    margin-left: 8px;
}

.rating-stars-inline .star {
    font-size: 12px;
    color: var(--ml-gray-lighter);
}

.rating-stars-inline .star.filled {
    color: var(--ml-blue);
}

.rating-number-inline {
    font-size: 12px;
    font-weight: 400;
    color: var(--ml-black);
    margin-left: 4px;
}

.rating-count-inline {
    font-size: 12px;
    color: var(--ml-gray);
}

.separator {
    color: var(--ml-gray-lighter);
}


/* Product Badges */
.product-badges {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 12px;
}

.badge.best-seller {
    background-color: #ff7700;
    color: white;
    padding: 4px 8px;
    border-radius: 4px;
    font-size: 11px;
    font-weight: 600;
}

.category-link {
    color: var(--ml-blue);
    font-size: 13px;
}

/* Product Title */
.product-title {
    font-size: 18px;
    font-weight: 400;
    line-height: 1.3;
    color: var(--ml-black);
    margin-bottom: 16px;
}

/* ========================================
   IMAGE GALLERY (Melhorada com swipe fluido)
   ======================================== */
.image-gallery {
    margin-bottom: 16px;
    background-color: var(--ml-white);
}

.gallery-view {
    position: relative;
    margin-bottom: 12px;
    overflow: hidden;
    cursor: grab;
    touch-action: pan-y;
    user-select: none;
    -webkit-user-select: none;
    -webkit-tap-highlight-color: transparent;
}

.gallery-view:active {
    cursor: grabbing;
}

.gallery-container {
    position: relative;
    width: 100%;
    aspect-ratio: 1 / 1;
    overflow: hidden;
    background-color: var(--ml-white);
}

.gallery-slider-track {
    display: flex;
    width: 100%;
    height: 100%;
    transition: transform 0.3s ease-out;
    will-change: transform;
}

.gallery-slide {
    min-width: 100%;
    height: 100%;
    flex-shrink: 0;
    display: flex;
    justify-content: center;
    align-items: center;
}

.gallery-slide img {
    max-width: 100%;
    max-height: 100%;
    width: auto;
    height: auto;
    object-fit: contain;
    display: block;
    user-select: none;
    -webkit-user-drag: none;
    pointer-events: none;
}

.image-counter {
    position: absolute;
    top: 12px;
    left: 12px;
    background-color: rgba(0, 0, 0, 0.6);
    color: white;
    padding: 4px 8px;
    border-radius: 4px;
    font-size: 12px;
    z-index: 10;
    pointer-events: none;
}

.gallery-view {
    position: relative;
    overflow: hidden;
    touch-action: pan-y;
}

.gallery-main-image {
    width: 100%;
    height: auto;
    border-radius: 4px;
    will-change: transform;
    user-select: none;
    -webkit-user-drag: none;
}

.gallery-actions {
    position: absolute;
    top: 12px;
    right: 12px;
    display: flex;
    gap: 8px;
    z-index: 10;
    pointer-events: none;
}

.gallery-action-btn {
    background-color: rgba(255, 255, 255, 0.9);
    padding: 8px;
    border-radius: 50%;
    min-width: 36px;
    height: 36px;
    display: flex;
    align-items: center;
    justify-content: center;
    pointer-events: all;
    cursor: pointer;
}

.gallery-action-btn svg {
    display: block;
}

.gallery-pagination {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
    padding: 8px;
}

.gallery-nav {
    color: var(--ml-gray);
    padding: 4px 8px;
    cursor: pointer;
    transition: color 0.2s;
    display: flex;
    align-items: center;
}

.gallery-nav .icon {
    width: 24px;
    height: 24px;
}

.gallery-nav:hover {
    color: var(--ml-blue);
}

.gallery-dots {
    display: flex;
    gap: 6px;
}

.dot {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background-color: var(--ml-gray-lighter);
    cursor: pointer;
    transition: background-color 0.2s;
}

.dot.active {
    background-color: var(--ml-blue);
}


/* ========================================
   PRICE SECTION
   ======================================== */
.price-section {
    margin-bottom: 12px;
}

.price-main {
    display: flex;
    align-items: baseline;
    margin-bottom: 6px;
}

.price-currency {
    font-size: 32px;
    line-height: 32px;
    margin-right: 4px;
    font-weight: 400;
    font-family: var(--font-family);
}

.price-amount {
    font-size: 32px;
    line-height: 32px;
    font-weight: 400;
    color: var(--ml-black);
    font-family: var(--font-family);
}

.installments {
    margin-bottom: 6px;
}

.installment-text {
    color: #00a650;
    font-size: 18px;
    line-height: 18px;
    font-weight: 400;
    font-family: var(--font-family);
}

.payment-link {
    color: var(--ml-blue);
    font-size: 16px;
    font-weight: 400;
}

/* Shipping Banner */
.shipping-banner {
    display: inline-block;
    background-color: var(--ml-green);
    color: white;
    padding: 4px 8px;
    text-align: left;
    font-weight: 600;
    font-size: 12px;
    line-height: 16px;
    margin-bottom: 12px;
    border-radius: 4px;
}

.shipping-text-left {
    display: inline-block;
    text-align: left;
}

/* Delivery Info */
.delivery-info {
    margin-bottom: 16px;
    padding: 12px 0;
    background-color: transparent;
}

.delivery-fast,
.delivery-free {
    margin-bottom: 8px;
}

.delivery-text-green {
    color: var(--ml-green);
    font-size: 16px;
    font-weight: 600;
    margin-bottom: 4px;
}

.delivery-deadline {
    color: var(--ml-gray-dark);
    font-size: 16px;
    font-weight: 400;
}

.delivery-link {
    color: var(--ml-blue);
    font-size: 16px;
    font-weight: 400;
}

/* Stock Info */
.stock-info {
    margin-bottom: 12px;
    padding: 12px;
    background-color: var(--ml-white);
    border: 1px solid var(--ml-gray-lighter);
    border-radius: 4px;
}

.stock-title {
    font-weight: 600;
    font-size: 16px;
    margin-bottom: 6px;
}

.stock-shipper {
    font-size: 16px;
    font-weight: 400;
    color: var(--ml-gray-dark);
    margin-bottom: 8px;
}

.stock-full {
    color: var(--ml-green);
}

.quantity-selector {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 8px;
    border: 1px solid var(--ml-gray-lighter);
    border-radius: 4px;
}

.quantity-arrow {
    font-size: 20px;
    color: var(--ml-gray);
}

/* ========================================
   PURCHASE ACTIONS
   ======================================== */
.purchase-actions {
    margin-bottom: 16px;
}

.btn-buy-now {
    display: block;
    background-color: var(--ml-blue);
    color: white;
    padding: 14px;
    border-radius: 6px;
    font-size: 16px;
    font-weight: 600;
    text-align: center;
    width: 100%;
    text-decoration: none;
    border: none;
    cursor: pointer;
}

.btn-buy-now:hover {
    background-color: var(--ml-blue-dark);
}

.btn-buy-now:active {
    opacity: 0.9;
}

/* Seller Info */
.seller-info {
    margin-bottom: 16px;
    padding-bottom: 0;
    border-bottom: none;
}

.seller-info-image {
    width: 100%;
    height: auto;
    display: block;
    object-fit: cover;
    object-position: center;
}

/* Guarantees */
.guarantees {
    margin-bottom: 12px;
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.guarantee-title {
    font-size: 16px;
}

.guarantee-desc {
    font-size: 16px;
}

.guarantee-item {
    display: flex;
    gap: 12px;
}

.guarantee-icon {
    width: 20px;
    height: 20px;
    flex-shrink: 0;
}

.guarantee-text {
    display: flex;
    flex-direction: column;
    gap: 4px;
}

.guarantee-title {
    color: var(--ml-blue);
    font-size: 14px;
    font-weight: 600;
}

.guarantee-desc {
    color: var(--ml-gray);
    font-size: 13px;
}

/* Gift Option */
.gift-option {
    margin-bottom: 16px;
    padding: 16px;
    border: 1px solid var(--ml-gray-lighter);
    border-radius: 4px;
}

.gift-checkbox {
    display: flex;
    cursor: pointer;
}

.gift-checkbox input {
    margin-right: 12px;
}

.gift-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex: 1;
}

.gift-text {
    display: flex;
    flex-direction: column;
    gap: 4px;
}

.gift-link {
    color: var(--ml-blue);
    font-size: 13px;
}

.gift-icon {
    width: 32px;
    height: 32px;
    flex-shrink: 0;
}

/* Add to List */
.add-to-list {
    margin-bottom: 16px;
}

.list-btn {
    width: 100%;
    padding: 12px 16px;
    border: 1px solid var(--ml-gray-lighter);
    border-radius: 4px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    background-color: var(--ml-white);
}

.list-arrow {
    width: 18px;
    height: 18px;
    color: var(--ml-gray);
}

.section-title {
    font-size: 18px;
    font-weight: 600;
    color: var(--ml-black);
    margin-bottom: 16px;
}

/* Product Info */
.product-info-section {
    margin-bottom: 20px;
    padding-bottom: 16px;
    border-bottom: 1px solid var(--ml-gray-lighter);
}

.product-info-list li {
    font-size: 16px;
    font-weight: 400;
}

.product-info-list {
    list-style: none;
}

.product-info-list li {
    padding: 8px 0;
    font-size: 14px;
    color: var(--ml-gray-dark);
    border-bottom: 1px solid var(--ml-gray-lightest);
}

.product-info-list li:last-child {
    border-bottom: none;
}

.product-info-list strong {
    color: var(--ml-black);
}

/* Characteristics */
.product-characteristics {
    margin-bottom: 20px;
    padding-bottom: 16px;
    border-bottom: 1px solid var(--ml-gray-lighter);
}

.char-label,
.char-value {
    font-size: 16px;
}

.subsection-title {
    font-size: 16px;
    font-weight: 600;
    color: var(--ml-black);
    margin-bottom: 16px;
}

.characteristics-table {
    width: 100%;
    border-collapse: collapse;
    margin-bottom: 16px;
}

.characteristics-table tr {
    border-bottom: 1px solid var(--ml-gray-lightest);
}

.char-label {
    padding: 12px 0;
    font-size: 14px;
    color: var(--ml-gray);
    width: 45%;
}

.char-value {
    padding: 12px 0;
    font-size: 14px;
    color: var(--ml-black);
    font-weight: 600;
}

.char-more-btn {
    width: 100%;
    padding: 12px;
    border: 1px solid var(--ml-gray-lighter);
    border-radius: 4px;
    background-color: var(--ml-white);
    color: var(--ml-gray-dark);
    font-size: 14px;
    text-align: left;
    display: flex;
    justify-content: space-between;
}

/* Description */
.description-section {
    margin-bottom: 20px;
    padding-bottom: 16px;
    border-bottom: 1px solid var(--ml-gray-lighter);
}

.description-text p {
    font-size: 16px;
    font-weight: 400;
}

.description-link {
    font-size: 16px;
    font-weight: 400;
}

.product-subtitle {
    font-size: 16px;
    font-weight: 600;
    color: var(--ml-black);
    margin-bottom: 16px;
}

.description-text {
    margin-bottom: 16px;
}

.description-text p {
    font-size: 14px;
    color: var(--ml-gray-dark);
    line-height: 1.6;
    margin-bottom: 12px;
}

.description-link {
    color: var(--ml-blue);
    font-size: 14px;
    display: flex;
    align-items: center;
    gap: 4px;
}

/* Payment Methods */
.payment-methods {
    margin-bottom: 20px;
    padding-bottom: 16px;
    border-bottom: 1px solid var(--ml-gray-lighter);
}

.payment-installments {
    display: flex;
    align-items: center;
    gap: 8px;
    margin-bottom: 12px;
}

.payment-icon {
    width: 18px;
    height: 18px;
}

.payment-text-green {
    color: #00a650;
    font-size: 16px;
    font-weight: 600;
}

.payment-logos {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 12px;
    margin-bottom: 16px;
}

.payment-logo-img {
    width: 48px;
    height: 32px;
    object-fit: contain;
    padding: 8px;
    border: 1px solid var(--ml-gray-lighter);
    border-radius: 4px;
    background-color: var(--ml-white);
}

.payment-more-btn {
    width: 100%;
    padding: 12px;
    border: 1px solid var(--ml-gray-lighter);
    border-radius: 4px;
    background-color: var(--ml-gray-lightest);
    color: var(--ml-black);
    font-size: 14px;
    text-align: left;
    display: flex;
    justify-content: space-between;
}

/* Product Photos */
.product-photos {
    margin-bottom: 20px;
    padding-bottom: 16px;
    border-bottom: 1px solid var(--ml-gray-lighter);
}

.photos-container {
    margin-bottom: 16px;
}

.product-photo-main {
    width: 100%;
    border-radius: 4px;
}

.photos-more-btn {
    width: 100%;
    padding: 12px;
    border: 1px solid var(--ml-gray-lighter);
    border-radius: 4px;
    background-color: var(--ml-white);
    color: var(--ml-black);
    font-size: 14px;
    text-align: left;
    display: flex;
    justify-content: space-between;
}


/* Reviews Section */
.reviews-section {
    margin-bottom: 20px;
    padding-bottom: 16px;
    border-bottom: 1px solid var(--ml-gray-lighter);
}

.reviews-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 16px;
}

.ask-btn {
    background-color: var(--ml-blue);
    color: white;
    padding: 8px 16px;
    border-radius: 4px;
    font-size: 14px;
    font-weight: 600;
    display: flex;
    align-items: center;
    gap: 6px;
}

.all-questions-btn {
    width: 100%;
    padding: 12px;
    border: 1px solid var(--ml-gray-lighter);
    border-radius: 4px;
    background-color: var(--ml-white);
    color: var(--ml-black);
    font-size: 14px;
    text-align: left;
    display: flex;
    justify-content: space-between;
    margin-bottom: 24px;
}

.reviews-rating-main {
    display: flex;
    gap: 24px;
    margin-bottom: 24px;
    padding-bottom: 24px;
    border-bottom: 1px solid var(--ml-gray-lighter);
}

.reviews-rating-left {
    display: flex;
    flex-direction: column;
    align-items: center;
    min-width: 120px;
}

.reviews-rating-number {
    font-size: 48px;
    font-weight: 600;
    color: var(--ml-blue);
    margin-bottom: 8px;
}

.reviews-stars {
    display: flex;
    gap: 4px;
    margin-bottom: 8px;
}

.reviews-stars .star {
    font-size: 24px;
}

.reviews-total {
    font-size: 13px;
    color: var(--ml-gray);
}

.reviews-chart {
    flex: 1;
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.chart-item {
    display: flex;
    align-items: center;
    gap: 12px;
    font-size: 13px;
}

.chart-item span:first-child {
    min-width: 40px;
}

.chart-bar {
    flex: 1;
    height: 8px;
    background-color: var(--ml-gray-lighter);
    border-radius: 4px;
    overflow: hidden;
}

.chart-fill {
    height: 100%;
    background-color: var(--ml-gray-dark);
    border-radius: 4px;
}

.reviews-categories {
    margin-bottom: 24px;
    padding-bottom: 24px;
    border-bottom: 1px solid var(--ml-gray-lighter);
}

.review-category {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 12px;
}

.category-label {
    font-size: 14px;
    color: var(--ml-gray-dark);
}

.category-stars {
    display: flex;
    gap: 2px;
}


.reviews-featured {
    padding-top: 24px;
}

.reviews-featured-header {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    margin-bottom: 16px;
}

.reviews-featured-title-wrapper {
    display: flex;
    flex-direction: column;
    gap: 4px;
}

.reviews-featured-title {
    font-size: 20px;
    font-weight: 600;
    color: var(--ml-black);
    margin: 0;
}

.reviews-comments-count {
    font-size: 14px;
    color: var(--ml-gray);
}

.reviews-filter-btn {
    display: flex;
    align-items: center;
    gap: 6px;
    padding: 8px 16px;
    border: 1px solid var(--ml-blue);
    border-radius: 4px;
    background-color: var(--ml-white);
    color: var(--ml-blue);
    font-size: 14px;
    cursor: pointer;
}

.filter-icon {
    width: 16px;
    height: 16px;
}

.reviews-filter {
    margin-bottom: 12px;
}

.filter-btn {
    padding: 8px 16px;
    border: 1px solid var(--ml-blue);
    border-radius: 4px;
    background-color: var(--ml-white);
    color: var(--ml-blue);
    font-size: 14px;
}

.reviews-comments-count {
    font-size: 14px;
    color: var(--ml-gray);
    margin-bottom: 16px;
}

.review-item {
    padding: 16px;
    background-color: var(--ml-gray-lightest);
    border-radius: 4px;
}

.review-item-card {
    padding: 16px;
    margin-bottom: 16px;
    background-color: var(--ml-white);
    border-radius: 4px;
}

.review-item-card:last-child {
    border-bottom: none;
}

.review-header {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 12px;
}

.review-options-btn {
    margin-left: auto;
    background: none;
    border: none;
    padding: 4px;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
}

.dots-icon {
    width: 20px;
    height: 20px;
    color: var(--ml-gray);
}

.review-rating-small {
    display: flex;
    gap: 2px;
}

.review-rating-small .star {
    font-size: 14px;
    color: var(--ml-gray-lighter);
}

.review-rating-small .star.filled {
    color: var(--ml-blue);
}

.review-date {
    font-size: 14px;
    color: var(--ml-gray);
}

.review-photo-single {
    width: 100%;
    max-width: 300px;
    height: auto;
    margin-bottom: 12px;
    border-radius: 4px;
    display: block;
    object-fit: cover;
}

.review-photos-mini {
    display: flex;
    gap: 8px;
    margin-bottom: 12px;
    flex-wrap: wrap;
}

.review-photos-mini img {
    width: 60px;
    height: 60px;
    object-fit: cover;
    border-radius: 4px;
}

.review-text {
    font-size: 14px;
    color: var(--ml-gray-dark);
    line-height: 1.6;
    margin-bottom: 12px;
}

.review-helpful-btn {
    display: flex;
    align-items: center;
    gap: 6px;
    padding: 8px 12px;
    background-color: var(--ml-gray-lightest);
    border: none;
    border-radius: 4px;
    font-size: 14px;
    color: var(--ml-gray-dark);
    cursor: pointer;
}

.thumbs-up-icon {
    width: 16px;
    height: 16px;
    color: var(--ml-gray);
}

.helpful-count {
    font-weight: 600;
    color: var(--ml-black);
}

.review-summary {
    background-color: var(--ml-gray-lightest);
    padding: 16px;
    border-radius: 4px;
    margin-bottom: 24px;
}

.review-summary-text {
    font-size: 14px;
    color: var(--ml-gray-dark);
    line-height: 1.6;
    margin-bottom: 8px;
}

.review-summary-label {
    display: flex;
    align-items: center;
    gap: 4px;
    font-size: 12px;
    color: var(--ml-gray);
    margin-top: 8px;
}

.ai-icon {
    width: 14px;
    height: 14px;
    color: var(--ml-blue);
}

/* Related Products */
.related-products {
    margin-bottom: 20px;
}

.related-product {
    display: flex;
    gap: 16px;
    padding: 16px;
    border: 1px solid var(--ml-gray-lighter);
    border-radius: 4px;
}

.related-image {
    width: 100px;
    height: 100px;
    object-fit: cover;
    border-radius: 4px;
}

.related-info {
    flex: 1;
}

.related-title {
    font-size: 14px;
    font-weight: 600;
    color: var(--ml-black);
    margin-bottom: 8px;
    line-height: 1.4;
}

.related-price {
    font-size: 20px;
    font-weight: 600;
    color: var(--ml-black);
    margin-bottom: 4px;
}

.related-installments {
    font-size: 13px;
    color: var(--ml-gray);
    margin-bottom: 4px;
}

.related-shipping {
    font-size: 13px;
    color: var(--ml-green);
}

.shipping-full {
    color: var(--ml-green);
    font-weight: 600;
}

/* Responsive - Desktop */
@media (min-width: 768px) {
    .main-content {
        max-width: 1200px;
        margin: 0 auto;
        padding: 24px;
    }
}
