/* =========================================================
   BASE
========================================================= */
body {
    margin: 0;
    min-height: 100vh;
    font-family: Arial, sans-serif;
    background: #fff;
    color: #444;
}

.container {
    display: flex;
    justify-content: center;
    align-items: center;
    margin-top: 50px;
}

input,
select,
textarea,
button {
    width: 95%;
    padding: 8px 10px;
    margin-top: 6px;
    margin-bottom: 20px;
    box-sizing: border-box;
}

button {
    background: #FFE4E1;
    border: none;
    border-radius: 6px;
    cursor: pointer;
    font-weight: bold;
}

/* =========================================================
   HEADER
========================================================= */
.header {
    background: #FFE4E1;
    padding: 15px 20px;
    display: flex;
    align-items: center;
    gap: 15px;
    box-shadow: 0 2px 5px rgba(0,0,0,0.1);
}

.header img.logo {
    height: 80px;
}

.header .title {
    font-size: 24px;
    font-weight: bold;
    color: #444;
}

.header-actions {
    margin-left: auto;
    display: flex;
    align-items: center;
    gap: 18px;
    position: relative;
}

.login-icon {
    width: 42px;
    height: 42px;
    display: inline-flex;
    justify-content: center;
    align-items: center;
    text-decoration: none;
    transition: transform 0.18s ease, box-shadow 0.18s ease;
}

.login-icon:hover {
    transform: translateY(-2px) scale(1.05);
}

.login-icon img {
    width: 22px;
    height: 22px;
    display: block;
}

/* =========================================================
   MENU
========================================================= */
.menu {
    background: #fff;
    padding: 10px 20px;
    display: flex;
    justify-content: center;
    gap: 30px;
    border-bottom: 1px solid #eee;
}

.menu .menu-item {
    position: relative;
    text-decoration: none;
    font-size: 16pt;
    color: rgb(240, 155, 155);
    font-weight: bold;
    padding: 6px 10px;
    transition: color 0.2s ease;
}

.menu .menu-item::after {
    content: "";
    position: absolute;
    left: 50%;
    bottom: -4px;
    width: 100%;
    height: 2px;
    background: #F9CCCD;
    transform: translateX(-50%) scaleX(0);
    transform-origin: center;
    transition: transform 0.25s ease;
}

.menu .menu-item:hover::after,
.menu .menu-item.active::after {
    transform: translateX(-50%) scaleX(1);
}

.menu .menu-item:hover {
    color: rgb(240, 155, 155);
}

.menu-dropdown {
    position: relative;
    display: inline-block;
}

.dropdown-content {
    display: none;
    position: absolute;
    background: white;
    border: 1px solid #ddd;
    border-radius: 6px;
    min-width: 300px;
    box-shadow: 0 4px 10px rgba(0,0,0,0.1);
    z-index: 1000;
    padding: 5px;
}

.dropdown-content a {
    display: block;
    padding: 20px 12px;
    text-decoration: none;
    color: #333;
}

.dropdown-content a:hover {
    background: #FFE4E1;
}

.menu-dropdown:hover .dropdown-content {
    display: block;
}

/* =========================================================
   GALLERY
========================================================= */
.gallery {
    width: 900px;
    column-count: 3;
    column-width: 300px;
    column-gap: 0;
    margin: 0 auto 10px auto;
}

.gallery-item {
    position: relative;
    display: inline-block;
    width: 100%;
    break-inside: avoid;
    margin: 0;
    padding: 0;
    overflow: hidden;
}

.gallery-item .thumb {
    display: block;
    width: 100%;
    height: auto;
    transition: transform 0.3s ease;
}

.gallery-item:hover .thumb {
    transform: scale(1.08);
}

.gallery-item .delete-icon {
    position: absolute;
    top: 10px;
    right: 10px;
    width: 28px;
    height: 28px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(0,0,0,0.65);
    color: #fff;
    border-radius: 50%;
    cursor: pointer;
    opacity: 0;
    z-index: 20;
    transition: opacity 0.2s ease, transform 0.2s ease;
}

.gallery-item:hover .delete-icon {
    opacity: 1;
    transform: scale(1.1);
}

/* =========================================================
   LIGHTBOX
========================================================= */
.lightbox {
    position: fixed;
    inset: 0;
    background: rgba(0,0,0,0.8);
    display: none;
    justify-content: center;
    align-items: center;
    z-index: 999;
}

.lightbox img {
    max-width: 90%;
    max-height: 90%;
    border-radius: 8px;
    box-shadow: 0 5px 25px rgba(0,0,0,0.5);
}

.lightbox .close {
    position: absolute;
    top: 20px;
    right: 30px;
    font-size: 40px;
    color: #fff;
    cursor: pointer;
}

/* =========================================================
   DROPZONE / UPLOAD
========================================================= */
.dropzone {
    width: 100%;
    max-width: 320px;
    height: 180px;
    border: 2px dashed #aaa;
    border-radius: 10px;
    background: #fafafa;
    display: flex;
    justify-content: center;
    align-items: center;
    text-align: center;
    color: #666;
    cursor: pointer;
    transition: 0.2s;
    overflow: hidden;
    position: relative;
}

.dropzone.dragover {
    border-color: #4caf50;
    background: #f1fff3;
    color: #2e7d32;
}

.preview,
.dropzone .preview {
    max-width: 100%;
    max-height: 100%;
    object-fit: contain;
    display: none;
}

/* =========================================================
   ABOUT
========================================================= */
.wrapper {
    max-width: 900px;
    margin: 40px auto;
    background: #fff;
    padding: 30px;
    border-radius: 10px;
    display: grid;
    grid-template-columns: 300px 1fr;
    gap: 30px;
    align-items: center;
}

.about-img {
    width: 100%;
    border-radius: 10px;
    object-fit: cover;
}

.about-text {
    font-size: 24px;
    line-height: 1.6;
    font-weight: bold;
    color: rgb(240, 155, 155);
    position: relative;
}

.edit-icon {
    position: absolute;
    top: 0;
    right: 0;
    text-decoration: none;
    font-size: 18px;
    opacity: 0;
    transition: opacity 0.2s ease, transform 0.2s ease;
    transform: translateY(-4px);
}

.about-text:hover .edit-icon {
    opacity: 1;
    transform: translateY(0);
}

.social-icons {
    margin-top: 20px;
    display: flex;
    gap: 12px;
    align-items: center;
}

.social-icons a {
    width: 36px;
    height: 36px;
    display: inline-flex;
    justify-content: center;
    align-items: center;
    border-radius: 50%;
    background: #fff;
    box-shadow: 0 2px 6px rgba(0,0,0,0.15);
    transition: transform 0.15s ease, box-shadow 0.15s ease;
}

.social-icons a:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 12px rgba(0,0,0,0.25);
}

.social-icons img {
    width: 20px;
    height: 20px;
    display: block;
}

/* =========================================================
   ABOUT EDIT
========================================================= */
.editor-container {
    min-height: calc(100vh - 120px);
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 30px 15px;
}

.edit-wrapper {
    width: 90%;
    max-width: 700px;
    background: #fff;
    padding: 30px;
    border-radius: 12px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.15);
}

.edit-wrapper h2 {
    margin-top: 0;
    margin-bottom: 20px;
    text-align: center;
}

.edit-wrapper label {
    font-weight: bold;
    display: block;
    margin-top: 15px;
}

.edit-wrapper textarea {
    width: 95%;
    min-height: 150px;
    resize: vertical;
    padding: 10px;
    font-family: inherit;
    font-size: 20px;
}

.edit-wrapper input[type="file"] {
    margin-top: 8px;
}

.edit-wrapper button:hover {
    background: #ffd6d6;
}

.current-about-img {
    display: block;
    max-width: 200px;
    max-height: 200px;
    object-fit: contain;
    margin: 10px 0 20px 0;
    border-radius: 8px;
    border: 1px solid #ddd;
    background: #fafafa;
}

/* =========================================================
   MINI CART
========================================================= */
.mini-cart {
    position: relative;
    cursor: pointer;
}

.cart-badge {
    background: #ff6b6b;
    color: #fff;
    border-radius: 50%;
    padding: 2px 6px;
    font-size: 12px;
    position: absolute;
    top: -6px;
    right: -10px;
}

.mini-cart-dropdown {
    position: absolute;
    right: 20px;
    top: 70px;
    width: 600px;
    background: #fff;
    border-radius: 10px;
    box-shadow: 0 10px 30px rgba(0,0,0,.5);
    padding: 25px;
    display: none;
    z-index: 1001;
}

.mini-cart-price,
.mini-cart-sum,
.mini-cart-qty {
    text-align: right;
    width: 50px;
}

.mini-cart-item {
    display: flex;
    justify-content: space-between;
    gap: 8px;
    margin-bottom: 6px;
    font-size: 12px;
}

.mini-cart-remove {
    cursor: pointer;
    color: #c33;
    font-weight: bold;
}

.mini-cart-remove:hover {
    color: red;
}

.mini-cart-title {
    color: #F9CCCD;
    font-weight: bold;
    font-size: 24px;
    margin-bottom: 25px;
}

.mini-cart-head {
    display: flex;
    justify-content: space-between;
    font-size: 16px;
    font-weight: bold;
    color: #666;
    border-bottom: 1px solid #eee;
    padding-bottom: 4px;
    margin-bottom: 6px;
}

.mini-cart-product {
    display: flex;
    text-align: left;
    width: 400px;
    gap: 6px;
    margin-bottom: 6px;
}

.mini-cart-total {
    margin-top: 8px;
    padding-top: 6px;
    border-top: 1px solid #eee;
    font-weight: bold;
    width: 565px;
    text-align: right;
}

.mini-cart-button {
    display: block;
    margin-top: 25px;
    text-align: center;
    background: #FFE4E1;
    padding: 20px;
    border-radius: 6px;
    text-decoration: none;
    font-weight: bold;
    color: rgb(240, 155, 155);
}

.mini-cart-button.disabled {
    opacity: 0.5;
    pointer-events: none;
}

/* =========================================================
   SHOP
========================================================= */
.shop-container {
    max-width: 1100px;
    margin: 30px auto;
    padding: 0 20px;
}

.shop-filters {
    display: flex;
    gap: 12px;
    flex-wrap: wrap;
    align-items: center;
    margin-bottom: 20px;
}

.shop-filters input[type="search"] {
    padding: 8px 12px;
    border-radius: 20px;
    border: 1px solid #ddd;
    flex: 1;
    min-width: 220px;
}

.shop-filters input[type="search"].active {
    border-color: #FFE4E1;
    box-shadow: 0 0 0 2px rgba(255, 228, 225, 0.6);
}

.category-filters {
    display: flex;
    gap: 10px;
    flex-wrap: wrap;
}

.category-chip {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    padding: 6px 10px;
    border: 1px solid #ddd;
    border-radius: 999px;
    cursor: pointer;
    background: #fff;
    transition: all .2s ease;
    font-size: 14px;
}

.category-chip.active,
.category-chip:hover {
    background: #FFE4E1;
    border-color: #FFE4E1;
}

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

.product-card {
    background: #fff;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 6px 18px rgba(0,0,0,.08);
    transition: transform .15s ease, box-shadow .15s ease;
    cursor: pointer;
}

.product-card:hover {
    transform: translateY(-3px);
    box-shadow: 0 12px 26px rgba(0,0,0,.12);
}

.product-card img {
    width: 100%;
    height: 160px;
    object-fit: cover;
    display: block;
}

.product-info {
    padding: 10px 12px;
}

.product-title {
    font-weight: 600;
}

.product-price {
    color: #555;
    margin-top: 4px;
}

.reset-icon {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 34px;
    height: 34px;
    border-radius: 50%;
    border: 1px solid #ddd;
    background: #fff;
    cursor: pointer;
    font-size: 18px;
    transition: all .2s ease;
    user-select: none;
}

.reset-icon:hover {
    background: #FFE4E1;
    border-color: #FFE4E1;
    transform: rotate(-90deg);
}

.reset-icon.active {
    background: #FFE4E1;
    border-color: #FFE4E1;
}

/* =========================================================
   PRODUCT / SHOP MODAL
========================================================= */
.modal {
    position: fixed;
    inset: 0;
    background: rgba(0,0,0,0.55);
    display: none;
    align-items: center;
    justify-content: center;
    z-index: 5000;
    padding: 20px;
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.25s ease;
}

.modal.show {
    display: flex;
    opacity: 1;
    pointer-events: auto;
}

.modal-content {
    background: #fff;
    width: 90%;
    max-width: 420px;
    border-radius: 16px;
    padding: 24px;
    position: relative;
    box-shadow: 0 20px 50px rgba(0,0,0,0.22);
    transform: translateY(10px) scale(0.98);
    transition: transform 0.25s ease;
    text-align: center;
}

.modal.show .modal-content {
    transform: translateY(0) scale(1);
}

.modal-content h3 {
    margin: 0 0 12px 0;
    font-size: 24px;
    color: rgb(240, 155, 155);
}

.modal-content p {
    margin: 0;
    font-size: 15px;
    line-height: 1.5;
    color: #666;
}

.modal-content img {
    width: 100%;
    max-height: 400px;
    object-fit: contain;
    border-radius: 8px;
    margin-bottom: 10px;
}

.modal-close {
    position: absolute;
    top: 10px;
    right: 14px;
    font-size: 24px;
    cursor: pointer;
}

.modal-price {
    font-size: 24px;
    font-weight: bold;
    margin: 10px 0;
}

.modal-actions {
    display: flex;
    justify-content: center;
    gap: 12px;
    margin-top: 24px;
    flex-wrap: wrap;
}

.modal-btn {
    min-width: 130px;
    padding: 12px 18px;
    border: none;
    border-radius: 10px;
    font-weight: bold;
    cursor: pointer;
    transition: transform 0.18s ease, box-shadow 0.18s ease, opacity 0.18s ease;
}

.modal-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 18px rgba(0,0,0,0.15);
}

.modal-btn.cancel {
    background: #f3f3f3;
    color: #555;
}

.modal-btn.delete {
    background: #FFE4E1;
    color: rgb(240, 155, 155);
}

.modal-content.modal-grid {
    max-width: 800px;
    display: grid;
    grid-template-columns: 1fr 1.2fr;
    gap: 20px;
    text-align: left;
}

.modal-left img {
    width: 100%;
    max-height: 320px;
    object-fit: contain;
    border-radius: 8px;
    background: #fafafa;
}

.modal-right h3 {
    margin-top: 0;
}

.qty-row {
    display: flex;
    align-items: center;
    gap: 10px;
    margin: 10px 0 16px 0;
}

.qty-row input {
    width: 70px;
    padding: 6px 8px;
    margin: 0;
}

@keyframes modalPop {
    from {
        opacity: 0;
        transform: scale(0.96);
    }
    to {
        opacity: 1;
        transform: scale(1);
    }
}

/* =========================================================
   CART
========================================================= */
.cart-container {
    max-width: 1000px;
    margin: 100px auto;
    padding: 50px;
}

.cart-table {
    width: 100%;
    border-collapse: collapse;
}

.cart-table th,
.cart-table td {
    padding: 12px;
    border-bottom: 1px solid #eee;
    text-align: left;
}

.cart-table img {
    width: 70px;
    border-radius: 6px;
}

.qty-input {
    width: 60px;
}

.cart-total {
    text-align: right;
    font-size: 20px;
    font-weight: bold;
    margin-top: 20px;
}

.remove-btn {
    cursor: pointer;
    color: crimson;
}

.cart-eu-notice {
    margin-top: 20px;
    padding: 15px;
    background: #fff3f3;
    border: 1px solid #ffd0d0;
    border-radius: 8px;
    font-size: 14px;
}

.eu-confirm {
    font-weight: 800;
    align-items: flex-start;
    gap: 10px;
    line-height: 1.4;
}

.eu-confirm input {
    width: 40px;
    transform: scale(1.2);
    cursor: pointer;
}

/* =========================================================
   CHECKOUT BUTTON
========================================================= */
#checkoutBtn {
    display: block;
    margin-top: 25px;
    padding: 14px 28px;
    font-size: 16px;
    font-weight: 600;
    letter-spacing: 0.5px;
    background: #ffd0d0;
    border: none;
    border-radius: 8px;
    cursor: pointer;
    transition: all 0.25s ease;
    box-shadow: 0 6px 14px rgba(0,0,0,0.15);
}

#checkoutBtn:hover {
    transform: translateY(-3px) scale(1.02);
    box-shadow: 0 10px 22px rgba(0,0,0,0.25);
    background: linear-gradient(135deg, #ffd6d1, #ffc5bd);
}

#checkoutBtn:active {
    transform: translateY(0px) scale(0.98);
    box-shadow: 0 4px 10px rgba(0,0,0,0.15);
}

/* =========================================================
   ADMIN COMMON
========================================================= */
.admin-wrap,
.admin-container {
    max-width: 1100px;
    margin: 30px auto;
    padding: 20px;
}

.card {
    background: #fff;
    border-radius: 12px;
    padding: 20px;
    box-shadow: 0 10px 25px rgba(0,0,0,.1);
    margin-bottom: 20px;
}

.grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
    gap: 20px;
}

/* =========================================================
   ADMIN ORDERS
========================================================= */
.status-select {
    padding: 6px;
    border-radius: 6px;
    font-weight: 600;
}

.status-new {
    background: #e5e5e5;
}

.status-processing {
    background: #ffe4b3;
}

.status-shipped {
    background: #cce5ff;
}

.status-completed {
    background: #c8f7c5;
}

.orders-table {
    width: 100%;
    border-collapse: collapse;
}

.orders-table th,
.orders-table td {
    padding: 10px;
    border-bottom: 1px solid #ddd;
    text-align: left;
}

.order-items {
    padding: 20px;
}

.order-items table {
    width: 100%;
}

.order-product-img {
    width: 50px;
    height: 50px;
    object-fit: cover;
    border-radius: 6px;
}

.order-details {
    background: rgba(255,228,225,0.6);
    width: 100%;
}

.order-row.active,
.order-row:hover {
    background: rgba(235,208,205,0.6);
}

.order-arrow {
    cursor: pointer;
    font-size: 18px;
    color: #666;
    transition: transform .2s ease;
}

/* =========================================================
   ADMIN DASHBOARD
========================================================= */
.dashboard {
    display: grid;
    grid-template-columns: repeat(4,1fr);
    gap: 20px;
    max-width: 80%;
    margin: 30px auto;
}

.dash-card {
    background: #FFE4E1;
    padding: 25px;
    border-radius: 12px;
    text-align: center;
    box-shadow: 0 4px 12px rgba(0,0,0,0.1);
    transition: transform .15s ease;
}

.dash-card:hover {
    transform: translateY(-3px);
}

.dash-icon {
    font-size: 28px;
    margin-bottom: 8px;
}

.dash-title {
    font-size: 14px;
    color: #666;
    margin-bottom: 5px;
}

.dash-value {
    font-size: 28px;
    font-weight: 700;
}

.revenue-chart-container {
    max-width: 80%;
    margin: 40px auto;
    background: #fff;
    padding: 25px;
    border-radius: 12px;
    box-shadow: 0 4px 12px rgba(0,0,0,0.08);
    display: none;
}

.chart-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    cursor: pointer;
    font-size: 18px;
    font-weight: 600;
    margin-bottom: 15px;
}

#chartArrow {
    transition: transform .2s ease;
}

#chartBody {
    overflow: hidden;
    transition: max-height .3s ease;
    max-height: 400px;
}

.dash-chart-card {
    position: relative;
    padding-bottom: 10px;
    background: #FFE4E1;
}

.dash-chart-card canvas {
    width: 100%;
    height: 70px !important;
    margin-top: 10px;
}

.invoice-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 30px;
    height: 30px;
    border-radius: 6px;
    background: #fff;
    border: 1px solid #ddd;
    text-decoration: none;
    transition: all .15s ease;
}

.invoice-btn:hover {
    background: #FFE4E1;
}

.pdf-icon {
    width: 20px;
    height: 20px;
}

/* =========================================================
   CONTACT / MAIL MODAL
========================================================= */
#mailForm label {
    display: block;
    margin-top: 10px;
    font-weight: 600;
    text-align: left;
}

#mailForm input,
#mailForm textarea {
    width: 95%;
    padding: 8px 10px;
    margin-top: 4px;
    border-radius: 6px;
    border: 1px solid #ddd;
}

#mailForm button {
    margin-top: 14px;
    padding: 10px 16px;
    border: none;
    border-radius: 6px;
    background: #FFE4E1;
    cursor: pointer;
    font-weight: bold;
}

#mailSubmitBtn:disabled {
    background: #cfcfcf;
    color: #888;
    cursor: not-allowed;
    opacity: 0.7;
}

.mail-loader {
    margin-top: 10px;
    font-size: 14px;
    color: #666;
    display: flex;
    align-items: center;
    gap: 6px;
}

.mail-loader::before {
    content: "⏳";
    display: inline-block;
    animation: spin 1.2s linear infinite;
}

@keyframes spin {
    to { transform: rotate(360deg); }
}

/* =========================================================
   FOOTER
========================================================= */
.site-footer {
    width: 100%;
    margin-top: 60px;
    padding: 20px 30px;
    background: transparent;
    border-top: none;
    box-sizing: border-box;
    font-size: 16px;
    color: #666;
}

.footer-row {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 20px;
    flex-wrap: wrap;
}

.footer-links {
    text-align: left;
    font-weight: 600;
    color: rgb(240, 155, 155);
}

.footer-links a {
    color: rgb(240, 155, 155);
    text-decoration: none;
}

.footer-links a:hover {
    text-decoration: underline;
}

.footer-newsletter {
    text-align: left;
}

.newsletter-link {
    color: #f09b9b;
    text-decoration: none;
    font-weight: 600;
    cursor: pointer;
    transition: 0.2s;
}

.newsletter-link:hover {
    text-decoration: underline;
}

.newsletter-modal {
    max-width: 420px;
    width: 90%;
    text-align: center;
    background: #fff;
    padding: 30px;
    border-radius: 16px;
    box-shadow: 0 18px 45px rgba(0,0,0,0.18);
    position: relative;
}

.newsletter-modal h2 {
    margin-bottom: 10px;
}

.newsletter-modal p {
    color: #666;
    margin-bottom: 20px;
    line-height: 1.5;
}

.newsletter-form {
    display: flex;
    flex-direction: column;
    gap: 14px;
}

.newsletter-form input[type="email"] {
    width: 100%;
    padding: 12px;
    border: 1px solid #ddd;
    border-radius: 8px;
    box-sizing: border-box;
    font-size: 14px;
}

.newsletter-form button {
    background: #FFE4E1;
    border: none;
    padding: 12px;
    border-radius: 8px;
    cursor: pointer;
    font-weight: 600;
    transition: 0.2s;
}

.newsletter-form button:hover {
    background: #ffd1cc;
}

.newsletter-consent {
    display: grid;
    grid-template-columns: 16px 1fr;
    gap: 6px;
    align-items: start;
    text-align: left;
    font-size: 13px;
    color: #777;
    line-height: 1.4;
}

.newsletter-consent input[type="checkbox"] {
    margin: 3px 0 0 0;
    width: 16px;
    height: 16px;
    padding: 0;
    border: none;
    border-radius: 0;
    accent-color: #f09b9b;
}

/* =========================================================
   ABOUT ME EDIT
========================================================= */
.about-edit-modal {
    max-width: 700px;
    width: 95%;
    text-align: left;
}

.about-edit-modal textarea {
    width: 100%;
    min-height: 150px;
    resize: vertical;
    padding: 10px;
    font-family: inherit;
    font-size: 20px;
    box-sizing: border-box;
}

.edit-logo {
    display: flex;
    justify-content: center;
    margin: 0 0 20px 0;
}

.edit-logo-img {
    max-width: 180px;
    height: auto;
    display: block;
}

/* =========================================================
   RESPONSIVE
========================================================= */
@media (max-width: 900px) {
    .gallery {
        width: 100%;
        column-count: 2;
        column-width: auto;
    }

    .wrapper {
        grid-template-columns: 1fr;
    }

    .dashboard {
        grid-template-columns: repeat(2,1fr);
        max-width: 95%;
    }

    .revenue-chart-container {
        max-width: 95%;
    }
}

@media (max-width: 768px) {
    .site-footer {
        padding: 20px;
    }

    .footer-row {
        flex-direction: column;
        align-items: flex-start;
        gap: 10px;
    }

    .footer-links,
    .footer-newsletter {
        text-align: left;
    }

    .mini-cart-dropdown {
        width: calc(100vw - 40px);
        right: 20px;
    }

    .modal-content.modal-grid {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 600px) {
    .gallery {
        column-count: 1;
    }

    .menu {
        flex-wrap: wrap;
        gap: 12px;
    }

    .dashboard {
        grid-template-columns: 1fr;
    }

    .cart-container {
        padding: 20px;
        margin: 40px auto;
    }
}

