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

body {
    font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue", Arial, sans-serif;
    color: #000;
    background: #fff;
}

#wrap {
    min-height: 100vh;
    display: flex;
    flex-direction: column;
}

.header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    background: #fff;
    border-bottom: 1px solid #e5e5e5;
    z-index: 1000;
}

.header-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 0 20px;
    height: 56px;
}

.header-left {
    flex: 0 0 auto;
}

.logo {
    display: block;
}

.logo img {
    height: 20px;
    width: auto;
}

.header-center {
    position: absolute;
    left: 50%;
    transform: translateX(-50%);
}

.nav-list {
    display: flex;
    gap: 30px;
    list-style: none;
}

.nav-link {
    text-decoration: none;
    color: #000;
    font-size: 12px;
    font-weight: 400;
    letter-spacing: 0.5px;
    transition: opacity 0.2s;
}

.nav-link:hover,
.nav-link.active {
    opacity: 0.6;
}

.header-right {
    flex: 0 0 auto;
    display: flex;
    gap: 20px;
    align-items: center;
}

.header-btn {
    background: none;
    border: none;
    font-size: 11px;
    font-weight: 400;
    letter-spacing: 0.5px;
    cursor: pointer;
    padding: 0;
    transition: opacity 0.2s;
    color: #000;
    text-decoration: none;
    display: inline-block;
}

.header-btn:hover {
    opacity: 0.6;
}

.next-product {
    font-size: 11px;
    letter-spacing: 0.5px;
    color: #666;
    cursor: pointer;
}

.next-product:hover {
    opacity: 0.6;
}

.sub-menu {
    border-bottom: 1px solid #e5e5e5;
    background: #fff;
    padding: 15px 20px;
}

.sub-menu-list {
    display: flex;
    gap: 20px;
    list-style: none;
    flex-wrap: wrap;
}

.sub-menu-link {
    text-decoration: none;
    color: #666;
    font-size: 11px;
    font-weight: 400;
    letter-spacing: 0.5px;
    transition: color 0.2s;
}

.sub-menu-link:hover,
.sub-menu-link.active {
    color: #000;
}

.main {
    flex: 1;
    margin-top: 56px;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 40px 20px;
}

.hero {
    width: 100%;
    max-width: 1400px;
    display: flex;
    justify-content: center;
    align-items: center;
}

.hero-image {
    width: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
}

.hero-image img {
    width: 100%;
    height: auto;
    max-height: calc(100vh - 200px);
    object-fit: contain;
}

.main-list {
    flex: 1;
    margin-top: 112px;
    padding: 30px 20px 60px;
}

.product-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
    max-width: 1400px;
    margin: 0 auto;
}

.product-card {
    cursor: pointer;
    transition: opacity 0.2s;
}

.product-card:hover {
    opacity: 0.7;
}

.product-image {
    width: 100%;
    aspect-ratio: 1;
    background: #f5f5f5;
    margin-bottom: 10px;
}

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

.product-title {
    font-size: 11px;
    font-weight: 400;
    letter-spacing: 0.5px;
    margin-bottom: 5px;
}

.product-price {
    font-size: 11px;
    color: #666;
}

.main-detail {
    flex: 1;
    margin-top: 56px;
    padding: 30px 20px 60px;
}

.detail-container {
    display: flex;
    gap: 60px;
    max-width: 1400px;
    margin: 0 auto;
    justify-content: center;
}

.detail-left {
    flex: 0 0 600px;
    overflow-y: auto;
}

.detail-images {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.detail-image {
    width: 100%;
    background: #f5f5f5;
}

.detail-image img {
    width: 100%;
    height: auto;
    display: block;
}

.detail-right {
    flex: 0 0 400px;
}

.detail-info-sticky {
    position: sticky;
    top: 86px;
    padding: 20px 0;
    display: flex;
    flex-direction: column;
    min-height: calc(100vh - 126px);
}

.product-name {
    font-size: 18px;
    font-weight: 400;
    letter-spacing: 0.5px;
    margin-bottom: 10px;
}

.product-price {
    font-size: 14px;
    margin-bottom: 20px;
}

.product-info-row {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 15px 0;
    border-bottom: 1px solid #e5e5e5;
}

.info-label {
    font-size: 11px;
    color: #666;
    letter-spacing: 0.5px;
}

.info-value {
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 0.5px;
}

.product-color {
    margin-bottom: 20px;
}

.color-label {
    font-size: 11px;
    color: #666;
    margin-bottom: 10px;
}

.color-options {
    display: flex;
    gap: 8px;
}

.color-option {
    width: 40px;
    height: 40px;
    border: 1px solid #e5e5e5;
    cursor: pointer;
    transition: border-color 0.2s;
}

.color-option:hover,
.color-option.active {
    border-color: #000;
}

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

.product-size {
    margin-bottom: 20px;
}

.size-options {
    display: flex;
    gap: 8px;
    flex-wrap: wrap;
}

.size-option {
    padding: 10px 20px;
    border: 1px solid #e5e5e5;
    background: #fff;
    font-size: 11px;
    letter-spacing: 0.5px;
    cursor: pointer;
    transition: all 0.2s;
}

.size-option:hover,
.size-option.active {
    border-color: #000;
    background: #000;
    color: #fff;
}

.shipping-info {
    font-size: 11px;
    color: #666;
    margin-bottom: 20px;
}

.product-details {
    border-top: 1px solid #e5e5e5;
    margin-bottom: 20px;
}

.detail-section {
    border-bottom: 1px solid #e5e5e5;
}

.detail-toggle {
    width: 100%;
    padding: 15px 0;
    border: none;
    background: none;
    text-align: left;
    font-size: 11px;
    letter-spacing: 0.5px;
    cursor: pointer;
    transition: opacity 0.2s;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.detail-toggle:hover {
    opacity: 0.6;
}

.toggle-icon {
    transition: transform 0.3s;
    font-size: 16px;
}

.detail-toggle.active .toggle-icon {
    transform: rotate(90deg);
}

.detail-content {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease;
    padding: 0;
}

.detail-content.active {
    max-height: 500px;
    padding-bottom: 15px;
}

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

.detail-list li {
    font-size: 11px;
    line-height: 1.8;
    color: #666;
    padding-left: 12px;
    position: relative;
}

.detail-list li::before {
    content: '-';
    position: absolute;
    left: 0;
}

.size-notice {
    font-size: 11px;
    color: #666;
    margin-bottom: 10px;
}

.size-info p {
    font-size: 11px;
    color: #666;
    line-height: 1.8;
}

.shipping-content p {
    font-size: 11px;
    color: #666;
    line-height: 1.8;
    margin-bottom: 5px;
}

.shipping-content strong {
    color: #000;
}

.image-lightbox {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: #fff;
    z-index: 10000;
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.3s, visibility 0.3s;
    overflow-y: auto;
}

.image-lightbox.show {
    opacity: 1;
    visibility: visible;
}

.lightbox-close {
    position: fixed;
    top: 20px;
    right: 20px;
    width: 40px;
    height: 40px;
    background: rgba(0, 0, 0, 0.5);
    color: #fff;
    border: none;
    border-radius: 50%;
    font-size: 24px;
    cursor: pointer;
    z-index: 10001;
    transition: background 0.2s;
    display: flex;
    align-items: center;
    justify-content: center;
}

.lightbox-close:hover {
    background: rgba(0, 0, 0, 0.8);
}

.lightbox-images {
    width: 100%;
}

.lightbox-image {
    margin-bottom: 0;
    background: #f5f5f5;
    width: 100%;
}

.lightbox-image img {
    width: 100%;
    height: auto;
    display: block;
}

.add-to-bag-btn {
    width: 100%;
    padding: 15px;
    background: #000;
    color: #fff;
    border: none;
    font-size: 12px;
    letter-spacing: 0.5px;
    cursor: pointer;
    transition: background 0.2s;
    margin-top: auto;
}

.add-to-bag-btn:hover {
    background: #333;
}

.add-to-bag-btn.show-message {
    background: #fff;
    color: #000;
    border: 1px solid #000;
}

.cart-added-popup {
    position: fixed;
    top: 70px;
    right: 20px;
    width: 350px;
    background: #fff;
    border: 1px solid #e5e5e5;
    box-shadow: 0 4px 20px rgba(0,0,0,0.1);
    z-index: 10000;
    transform: translateX(400px);
    transition: transform 0.3s ease;
    opacity: 0;
    visibility: hidden;
}

.cart-added-popup.show {
    transform: translateX(0);
    opacity: 1;
    visibility: visible;
}

.popup-close {
    position: absolute;
    top: 15px;
    right: 15px;
    background: none;
    border: none;
    font-size: 20px;
    cursor: pointer;
    color: #666;
    padding: 0;
    width: 24px;
    height: 24px;
    line-height: 1;
}

.popup-close:hover {
    color: #000;
}

.popup-title {
    font-size: 14px;
    font-weight: 400;
    letter-spacing: 0.5px;
    padding: 20px;
    border-bottom: 1px solid #e5e5e5;
}

.popup-product {
    padding: 20px;
    display: flex;
    gap: 15px;
}

.popup-product-image {
    flex: 0 0 80px;
    background: #f5f5f5;
}

.popup-product-image img {
    width: 100%;
    height: auto;
    display: block;
}

.popup-product-info {
    flex: 1;
}

.popup-product-name {
    font-size: 12px;
    font-weight: 400;
    margin-bottom: 5px;
}

.popup-product-options {
    font-size: 11px;
    color: #666;
    margin-bottom: 8px;
}

.popup-product-price {
    font-size: 12px;
    font-weight: 700;
}

.popup-actions {
    display: flex;
    gap: 10px;
    padding: 0 20px 20px;
}

.popup-btn {
    flex: 1;
    padding: 12px;
    border: none;
    font-size: 11px;
    letter-spacing: 0.5px;
    cursor: pointer;
    transition: all 0.2s;
}

.popup-btn-view {
    background: #000;
    color: #fff;
}

.popup-btn-view:hover {
    background: #333;
}

.popup-btn-checkout {
    background: #fff;
    color: #000;
    border: 1px solid #000;
}

.popup-btn-checkout:hover {
    background: #f5f5f5;
}

.bag-sidebar {
    position: fixed;
    top: 0;
    right: 0;
    bottom: 0;
    width: 450px;
    background: #fff;
    z-index: 10001;
    transform: translateX(100%);
    transition: transform 0.3s ease;
    display: flex;
    flex-direction: column;
}

.bag-sidebar.show {
    transform: translateX(0);
}

.bag-sidebar-overlay {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0,0,0,0.5);
    z-index: 10000;
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.3s ease;
}

.bag-sidebar-overlay.show {
    opacity: 1;
    pointer-events: auto;
}

.bag-sidebar-content {
    display: flex;
    flex-direction: column;
    height: 100%;
}

.bag-sidebar-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 20px;
    border-bottom: 1px solid #e5e5e5;
}

.bag-sidebar-header h2 {
    font-size: 18px;
    font-weight: 400;
    letter-spacing: 0.5px;
}

.bag-sidebar-close {
    background: none;
    border: none;
    font-size: 24px;
    cursor: pointer;
    color: #666;
    padding: 0;
    width: 30px;
    height: 30px;
    line-height: 1;
}

.bag-sidebar-close:hover {
    color: #000;
}

.bag-sidebar-items {
    flex: 1;
    overflow-y: auto;
    padding: 20px;
}

.sidebar-item {
    display: flex;
    gap: 15px;
    padding: 15px 0;
    border-bottom: 1px solid #e5e5e5;
    position: relative;
    transition: opacity 0.3s, transform 0.3s;
    align-items: center;
}

.sidebar-item.updating .item-loading-mask {
    opacity: 1;
    visibility: visible;
}

.remove-item-btn {
    background: none;
    border: none;
    cursor: pointer;
    padding: 8px;
    color: #666;
    transition: color 0.2s;
    flex-shrink: 0;
    margin-left: auto;
}

.remove-item-btn:hover {
    color: #000;
}

.item-loading-mask {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(255, 255, 255, 0.7);
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.3s, visibility 0.3s;
    z-index: 1;
}

.sidebar-item-image {
    flex: 0 0 80px;
    background: #f5f5f5;
}

.sidebar-item-image img {
    width: 100%;
    height: auto;
    display: block;
}

.sidebar-item-info {
    flex: 1;
}

.sidebar-item-actions {
    display: flex;
    align-items: center;
    margin-top: 10px;
}

.sidebar-item-name {
    font-size: 12px;
    font-weight: 400;
    margin-bottom: 5px;
}

.sidebar-item-options {
    font-size: 11px;
    color: #666;
    margin-bottom: 8px;
}

.sidebar-item-price {
    font-size: 12px;
    font-weight: 700;
}

.bag-sidebar-footer {
    border-top: 1px solid #e5e5e5;
    padding: 20px;
}

.sidebar-total {
    display: flex;
    justify-content: space-between;
    font-size: 14px;
    font-weight: 700;
    margin-bottom: 15px;
}

.sidebar-buttons {
    display: flex;
    gap: 10px;
}

.sidebar-continue-btn {
    flex: 1;
    padding: 12px;
    background: #fff;
    color: #000;
    border: 1px solid #000;
    font-size: 12px;
    letter-spacing: 0.5px;
    cursor: pointer;
    transition: background 0.2s;
}

.sidebar-continue-btn:hover {
    background: #f5f5f5;
}

.sidebar-checkout-btn {
    flex: 1;
    padding: 12px;
    background: #000;
    color: #fff;
    border: none;
    font-size: 12px;
    letter-spacing: 0.5px;
    cursor: pointer;
    transition: background 0.2s;
}

.sidebar-checkout-btn:hover {
    background: #333;
}

.main-bag {
    flex: 1;
    margin-top: 56px;
    padding: 40px 20px 60px;
}

.bag-container {
    max-width: 1200px;
    margin: 0 auto;
}

.bag-title {
    font-size: 24px;
    font-weight: 400;
    letter-spacing: 1px;
    margin-bottom: 30px;
    text-align: center;
}

.bag-content {
    display: flex;
    gap: 40px;
}

.bag-items {
    flex: 1;
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.bag-item {
    display: flex;
    gap: 20px;
    padding: 20px;
    border: 1px solid #e5e5e5;
}

.bag-item-image {
    flex: 0 0 120px;
    background: #f5f5f5;
}

.bag-item-image img {
    width: 100%;
    height: auto;
    display: block;
}

.bag-item-info {
    flex: 1;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

.bag-item-name {
    font-size: 14px;
    font-weight: 400;
    letter-spacing: 0.5px;
    margin-bottom: 8px;
}

.bag-item-options {
    font-size: 11px;
    color: #666;
    margin-bottom: 8px;
}

.bag-item-price {
    font-size: 12px;
    color: #000;
}

.bag-item-actions {
    display: flex;
    align-items: center;
    gap: 20px;
    margin-top: 10px;
}

.quantity-control {
    display: flex;
    align-items: center;
    gap: 8px;
}

.qty-btn {
    width: 30px;
    height: 30px;
    background: #fff;
    border: 1px solid #e5e5e5;
    cursor: pointer;
    font-size: 16px;
    transition: background 0.2s;
}

.qty-btn:hover {
    background: #f5f5f5;
}

.qty-input {
    width: 40px;
    height: 30px;
    text-align: center;
    font-size: 12px;
    border: 1px solid #000;
    background: transparent;
    padding: 0;
    outline: none;
}

.remove-btn {
    background: none;
    border: none;
    font-size: 11px;
    text-decoration: underline;
    cursor: pointer;
    color: #666;
    transition: color 0.2s;
}

.remove-btn:hover {
    color: #000;
}

.bag-item-total {
    flex: 0 0 100px;
    text-align: right;
    font-size: 14px;
}

.bag-summary {
    flex: 0 0 350px;
    border: 1px solid #e5e5e5;
    padding: 30px;
    height: fit-content;
    position: sticky;
    top: 86px;
}

.summary-row {
    display: flex;
    justify-content: space-between;
    font-size: 12px;
    margin-bottom: 15px;
}

.summary-row.total {
    border-top: 1px solid #e5e5e5;
    padding-top: 15px;
    margin-top: 15px;
    font-size: 14px;
    font-weight: 700;
}

.checkout-btn {
    width: 100%;
    padding: 15px;
    background: #000;
    color: #fff;
    border: none;
    font-size: 12px;
    letter-spacing: 0.5px;
    cursor: pointer;
    transition: background 0.2s;
    margin-top: 20px;
}

.checkout-btn:hover {
    background: #333;
}

.bag-empty {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding: 80px 20px;
    text-align: center;
}

.bag-empty p {
    font-size: 14px;
    margin-bottom: 20px;
    color: #666;
}

.continue-shopping {
    display: inline-block;
    padding: 12px 30px;
    background: #000;
    color: #fff;
    text-decoration: none;
    font-size: 12px;
    letter-spacing: 0.5px;
    transition: background 0.2s;
}

.continue-shopping:hover {
    background: #333;
}

.footer {
    background: #fff;
}

.footer-row {
    display: flex;
    justify-content: space-between;
    align-items: center;
    max-width: 1400px;
    margin: 0 auto;
    padding: 12px 20px;
}

.footer-newsletter {
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 1px;
    cursor: pointer;
    transition: opacity 0.2s;
}

.footer-newsletter:hover {
    opacity: 0.6;
}

.footer-brand {
    font-size: 11px;
    font-weight: 400;
    letter-spacing: 1px;
}

.footer-info-wrapper {
    border-top: 1px solid #e5e5e5;
    padding: 12px 20px;
    max-width: 1400px;
    margin: 0 auto;
}

.footer-info {
    font-size: 10px;
    line-height: 1.4;
    color: #000000;
    text-align: center;
}

.admin-link-inline {
    color: #999;
    text-decoration: none;
    transition: color 0.2s;
}

.admin-link-inline:hover {
    color: #666;
}

.main-checkout {
    flex: 1;
    margin-top: 56px;
    padding: 40px 20px 60px;
    background: #fafafa;
}

.checkout-container {
    display: flex;
    gap: 60px;
    max-width: 1200px;
    margin: 0 auto;
}

.checkout-left {
    flex: 1;
    max-width: 600px;
}

.checkout-right {
    flex: 0 0 400px;
}

.checkout-title {
    font-size: 24px;
    font-weight: 400;
    letter-spacing: 1px;
    margin-bottom: 30px;
}

.checkout-section {
    background: #fff;
    padding: 20px;
    margin-bottom: 20px;
    border: 1px solid #e5e5e5;
}

.section-title {
    font-size: 14px;
    font-weight: 700;
    letter-spacing: 0.5px;
    margin-bottom: 15px;
}

.form-input {
    width: 100%;
    padding: 12px;
    border: 1px solid #e5e5e5;
    font-size: 12px;
    margin-bottom: 10px;
    outline: none;
    transition: border-color 0.2s;
}

.form-input:focus {
    border-color: #000;
}

.form-row {
    display: flex;
    gap: 10px;
}

.form-row .form-input {
    flex: 1;
}

.shipping-method {
    padding: 15px;
    border: 1px solid #e5e5e5;
    background: #f9f9f9;
}

.radio-label {
    display: flex;
    align-items: center;
    gap: 10px;
    cursor: pointer;
}

.radio-label input[type="radio"] {
    width: 16px;
    height: 16px;
}

.radio-label span {
    font-size: 12px;
}

.payment-notice {
    font-size: 11px;
    color: #666;
    margin-bottom: 15px;
}

.payment-methods {
    display: flex;
    gap: 10px;
    margin-bottom: 15px;
}

.payment-method-btn {
    flex: 1;
    padding: 12px;
    border: 1px solid #e5e5e5;
    background: #fff;
    font-size: 11px;
    cursor: pointer;
    transition: all 0.2s;
}

.payment-method-btn:hover {
    border-color: #000;
}

.payment-method-btn.active {
    border-color: #000;
    background: #000;
    color: #fff;
}

.payment-info {
    padding: 15px;
    background: #f9f9f9;
    border: 1px solid #e5e5e5;
}

.payment-info p {
    font-size: 11px;
    color: #666;
}

.complete-order-btn {
    width: 100%;
    padding: 15px;
    background: #000;
    color: #fff;
    border: none;
    font-size: 14px;
    letter-spacing: 0.5px;
    cursor: pointer;
    transition: background 0.2s;
}

.complete-order-btn:hover {
    background: #333;
}

.order-summary {
    background: #fff;
    border: 1px solid #e5e5e5;
    padding: 20px;
    position: sticky;
    top: 86px;
}

.summary-items {
    margin-bottom: 20px;
}

.summary-item {
    display: flex;
    gap: 15px;
    margin-bottom: 15px;
}

.summary-item-image {
    flex: 0 0 60px;
    background: #f5f5f5;
}

.summary-item-image img {
    width: 100%;
    height: auto;
    display: block;
}

.summary-item-info {
    flex: 1;
}

.summary-item-name {
    font-size: 11px;
    font-weight: 400;
    margin-bottom: 5px;
}

.summary-item-options {
    font-size: 10px;
    color: #666;
}

.summary-item-price {
    font-size: 11px;
    font-weight: 700;
}

.summary-divider {
    height: 1px;
    background: #e5e5e5;
    margin: 15px 0;
}

.summary-row {
    display: flex;
    justify-content: space-between;
    font-size: 12px;
    margin-bottom: 10px;
}

.summary-row.total {
    font-size: 14px;
    font-weight: 700;
    margin-top: 15px;
}

@media (max-width: 1024px) {
    .product-grid {
        grid-template-columns: repeat(3, 1fr);
    }

    .detail-container {
        flex-direction: column;
        align-items: center;
    }

    .detail-left {
        flex: 1;
        width: 100%;
        max-width: 600px;
    }

    .detail-right {
        position: static;
        flex: 1;
        width: 100%;
        max-width: 600px;
        height: auto;
    }

    .detail-info-sticky {
        min-height: auto;
    }

    .checkout-container {
        flex-direction: column;
    }

    .checkout-right {
        flex: 1;
    }

    .order-summary {
        position: static;
    }
}

@media (max-width: 768px) {
    .header-inner {
        padding: 0 15px;
    }

    .nav-list {
        gap: 20px;
    }

    .header-right {
        gap: 15px;
    }

    .header-btn {
        font-size: 10px;
    }

    .sub-menu {
        padding: 10px 15px;
    }

    .sub-menu-list {
        gap: 15px;
    }

    .main {
        padding: 20px 10px;
    }

    .main-list {
        padding: 20px 15px 40px;
    }

    .product-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 15px;
    }

    .main-detail {
        padding: 20px 15px 40px;
    }

    .detail-container {
        gap: 20px;
    }

    .bag-content {
        flex-direction: column;
    }

    .bag-summary {
        position: static;
        flex: 1;
    }

    .bag-item {
        flex-direction: column;
    }

    .bag-item-total {
        text-align: left;
    }

    .cart-added-popup {
        width: calc(100% - 40px);
        right: 20px;
    }

    .bag-sidebar {
        width: 100%;
    }

    .add-to-bag-btn {
        font-size: 11px;
        padding: 12px;
    }

    .footer-row {
        padding: 16px 15px;
    }

    .footer-info-wrapper {
        padding: 16px 15px;
    }

    .footer-info {
        font-size: 9px;
    }
}
