/* ============================================================
   ARC DENT - STYLE.CSS
   ============================================================ */

/* ---------- RESET & BASE ---------- */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

:root {
    --primary: #0a7e8c;
    --primary-dark: #065a66;
    --primary-light: #e0f2f5;
    --accent: #e67e22;
    --text: #1a1a2e;
    --text-light: #555;
    --bg: #f8fafc;
    --white: #ffffff;
    --gray: #e9ecef;
    --shadow: 0 4px 24px rgba(0,0,0,0.06);
    --radius: 14px;
    --radius-sm: 8px;
    --transition: 0.25s ease;
    --font: 'Segoe UI', 'Tahoma', system-ui, sans-serif;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: var(--font);
    background: var(--bg);
    color: var(--text);
    line-height: 1.6;
    direction: rtl;
}

a {
    text-decoration: none;
    color: inherit;
}

button {
    cursor: pointer;
    font-family: inherit;
    border: none;
    background: none;
}

img {
    max-width: 100%;
    display: block;
}

.container {
    max-width: 1240px;
    margin: 0 auto;
    padding: 0 20px;
}

/* ---------- UTILITY ---------- */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    padding: 10px 28px;
    border-radius: 50px;
    font-weight: 600;
    font-size: 0.95rem;
    transition: var(--transition);
    border: 2px solid transparent;
}

.btn-primary {
    background: var(--primary);
    color: var(--white);
    border-color: var(--primary);
}
.btn-primary:hover {
    background: var(--primary-dark);
    border-color: var(--primary-dark);
    transform: translateY(-1px);
    box-shadow: 0 6px 20px rgba(10,126,140,0.3);
}

.btn-outline {
    background: transparent;
    color: var(--primary);
    border-color: var(--primary);
}
.btn-outline:hover {
    background: var(--primary);
    color: var(--white);
}

.btn-block {
    width: 100%;
    justify-content: center;
}

/* ---------- HEADER ---------- */
.header {
    background: var(--white);
    box-shadow: 0 2px 12px rgba(0,0,0,0.04);
    position: sticky;
    top: 0;
    z-index: 1000;
    padding: 12px 0;
}

.header-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 16px;
}

.logo {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--primary);
}
.logo-icon {
    font-size: 1.8rem;
}
.logo-text {
    letter-spacing: -0.5px;
}

.menu-toggle {
    display: none;
    flex-direction: column;
    gap: 5px;
    padding: 4px;
}
.menu-toggle span {
    display: block;
    width: 24px;
    height: 2.5px;
    background: var(--text);
    border-radius: 4px;
    transition: var(--transition);
}

.nav-list {
    display: flex;
    list-style: none;
    gap: 8px;
}
.nav-list a {
    padding: 8px 16px;
    border-radius: 50px;
    font-size: 0.9rem;
    font-weight: 500;
    transition: var(--transition);
}
.nav-list a:hover,
.nav-list a.active {
    background: var(--primary-light);
    color: var(--primary);
}

.header-actions {
    display: flex;
    align-items: center;
    gap: 10px;
}
.header-btn {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: var(--bg);
    transition: var(--transition);
    position: relative;
}
.header-btn:hover {
    background: var(--primary-light);
}
.cart-count {
    position: absolute;
    top: -4px;
    right: -4px;
    background: var(--accent);
    color: var(--white);
    font-size: 0.65rem;
    font-weight: 700;
    width: 20px;
    height: 20px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
}

/* ---------- SEARCH BAR ---------- */
.search-bar {
    background: var(--white);
    border-top: 1px solid var(--gray);
    padding: 12px 0;
    display: none;
}
.search-bar.open {
    display: block;
}
.search-wrap {
    display: flex;
    align-items: center;
    gap: 8px;
    background: var(--bg);
    border-radius: 50px;
    padding: 0 16px;
    border: 2px solid transparent;
    transition: var(--transition);
}
.search-wrap:focus-within {
    border-color: var(--primary);
    background: var(--white);
}
.search-wrap input {
    flex: 1;
    padding: 12px 0;
    border: none;
    background: transparent;
    font-size: 1rem;
    outline: none;
}
.search-wrap button {
    padding: 6px 8px;
    font-size: 1.1rem;
    color: var(--text-light);
}
.search-results {
    margin-top: 12px;
    max-height: 300px;
    overflow-y: auto;
    display: none;
}
.search-results.active {
    display: block;
}

/* ---------- HERO ---------- */
.hero {
    padding: 50px 0 60px;
    background: linear-gradient(135deg, #f0f7fa 0%, #e8f0f5 100%);
    border-radius: 0 0 40px 40px;
    margin-bottom: 20px;
}
.hero .container {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
    align-items: center;
}
.hero-content .hero-badge {
    display: inline-block;
    background: var(--primary);
    color: var(--white);
    padding: 4px 18px;
    border-radius: 50px;
    font-size: 0.8rem;
    font-weight: 600;
    letter-spacing: 0.5px;
    margin-bottom: 16px;
}
.hero-content h1 {
    font-size: 2.8rem;
    line-height: 1.2;
    font-weight: 800;
    margin-bottom: 16px;
}
.hero-content h1 span {
    color: var(--primary);
}
.hero-content p {
    font-size: 1.1rem;
    color: var(--text-light);
    max-width: 450px;
    margin-bottom: 28px;
}
.hero-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
    margin-bottom: 32px;
}
.hero-stats {
    display: flex;
    gap: 32px;
}
.hero-stats .stat {
    font-size: 0.9rem;
    color: var(--text-light);
}
.hero-stats .stat span {
    font-weight: 700;
    color: var(--text);
    font-size: 1.2rem;
}
.hero-visual {
    position: relative;
    display: flex;
    justify-content: center;
    align-items: center;
}
.hero-icon {
    font-size: 8rem;
    z-index: 2;
    animation: float 4s ease-in-out infinite;
}
.hero-circle {
    position: absolute;
    width: 280px;
    height: 280px;
    border-radius: 50%;
    background: rgba(10,126,140,0.08);
    z-index: 0;
    animation: pulse 3s ease-in-out infinite;
}
.hero-circle2 {
    position: absolute;
    width: 200px;
    height: 200px;
    border-radius: 50%;
    background: rgba(10,126,140,0.04);
    z-index: 0;
    animation: pulse 4s ease-in-out infinite 0.5s;
}

@keyframes float {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-16px); }
}
@keyframes pulse {
    0%, 100% { transform: scale(1); opacity: 0.6; }
    50% { transform: scale(1.1); opacity: 0.9; }
}

/* ---------- CUSTOMER TYPE ---------- */
.customer-type-section {
    padding: 10px 0 24px;
}
.type-selector {
    display: flex;
    align-items: center;
    gap: 12px;
    flex-wrap: wrap;
    background: var(--white);
    padding: 12px 20px;
    border-radius: 50px;
    box-shadow: var(--shadow);
    justify-content: center;
}
.type-label {
    font-weight: 600;
    color: var(--text-light);
    font-size: 0.9rem;
}
.type-btn {
    padding: 6px 20px;
    border-radius: 50px;
    font-size: 0.9rem;
    font-weight: 500;
    border: 2px solid transparent;
    transition: var(--transition);
}
.type-btn:hover {
    background: var(--primary-light);
}
.type-btn.active {
    background: var(--primary);
    color: var(--white);
    border-color: var(--primary);
}

/* ---------- SECTION HEADER ---------- */
.section-header {
    text-align: center;
    margin-bottom: 32px;
}
.section-header h2 {
    font-size: 2rem;
    font-weight: 700;
}
.section-header p {
    color: var(--text-light);
    font-size: 1rem;
}

/* ---------- DEPARTMENTS ---------- */
.departments {
    padding: 30px 0 40px;
}
.departments-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(180px, 1fr));
    gap: 16px;
}
.dept-card {
    background: var(--white);
    padding: 20px 16px;
    border-radius: var(--radius);
    text-align: center;
    box-shadow: var(--shadow);
    transition: var(--transition);
    border: 2px solid transparent;
    cursor: pointer;
}
.dept-card:hover {
    border-color: var(--primary);
    transform: translateY(-4px);
    box-shadow: 0 8px 28px rgba(0,0,0,0.08);
}
.dept-card .dept-icon {
    font-size: 2rem;
    display: block;
    margin-bottom: 6px;
}
.dept-card .dept-name {
    font-weight: 600;
    font-size: 0.85rem;
}
.dept-card .dept-count {
    font-size: 0.75rem;
    color: var(--text-light);
}

/* ---------- PRODUCTS GRID ---------- */
.products-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(220px, 1fr));
    gap: 24px;
}

/* ---------- PRODUCT CARD ---------- */
.product-card {
    background: var(--white);
    border-radius: var(--radius);
    overflow: hidden;
    box-shadow: var(--shadow);
    transition: var(--transition);
    display: flex;
    flex-direction: column;
}
.product-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 12px 32px rgba(0,0,0,0.08);
}
.product-card .product-image {
    height: 180px;
    background: var(--gray);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 3rem;
    position: relative;
    overflow: hidden;
}
.product-card .product-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}
.product-card .product-badge {
    position: absolute;
    top: 10px;
    right: 10px;
    background: var(--accent);
    color: var(--white);
    font-size: 0.65rem;
    font-weight: 700;
    padding: 2px 12px;
    border-radius: 50px;
}
.product-card .product-badge.featured {
    background: var(--primary);
}
.product-card .product-body {
    padding: 14px 16px 16px;
    flex: 1;
    display: flex;
    flex-direction: column;
}
.product-card .product-name {
    font-weight: 600;
    font-size: 0.95rem;
    margin-bottom: 4px;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
}
.product-card .product-desc {
    font-size: 0.8rem;
    color: var(--text-light);
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
    margin-bottom: 6px;
    flex: 1;
}
.product-card .product-price {
    font-weight: 700;
    font-size: 1.1rem;
    color: var(--primary);
    margin-bottom: 4px;
}
.product-card .product-price .old-price {
    color: var(--text-light);
    font-weight: 400;
    font-size: 0.8rem;
    text-decoration: line-through;
    margin-left: 8px;
}
.product-card .product-status {
    font-size: 0.75rem;
    font-weight: 600;
    padding: 2px 12px;
    border-radius: 50px;
    display: inline-block;
    margin-bottom: 8px;
    width: fit-content;
}
.product-card .status-available {
    background: #d4edda;
    color: #155724;
}
.product-card .status-outofstock {
    background: #f8d7da;
    color: #721c24;
}
.product-card .status-onrequest {
    background: #fff3cd;
    color: #856404;
}
.product-card .product-variants {
    display: flex;
    flex-wrap: wrap;
    gap: 6px;
    margin-bottom: 10px;
}
.product-card .product-variants .variant-tag {
    background: var(--bg);
    padding: 2px 12px;
    border-radius: 50px;
    font-size: 0.7rem;
    border: 1px solid var(--gray);
    cursor: pointer;
    transition: var(--transition);
}
.product-card .product-variants .variant-tag.active {
    border-color: var(--primary);
    background: var(--primary-light);
}
.product-card .product-actions {
    display: flex;
    gap: 8px;
    margin-top: auto;
}
.product-card .product-actions .btn {
    flex: 1;
    padding: 8px 12px;
    font-size: 0.8rem;
}

/* ---------- PRODUCT FILTERS ---------- */
.product-filters {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
    margin-bottom: 24px;
    justify-content: center;
}
.product-filters select {
    padding: 8px 16px;
    border-radius: 50px;
    border: 2px solid var(--gray);
    background: var(--white);
    font-size: 0.9rem;
    outline: none;
    font-family: inherit;
}
.product-filters select:focus {
    border-color: var(--primary);
}

/* ---------- OFFERS ---------- */
.offers {
    padding: 30px 0 40px;
    background: linear-gradient(135deg, #fdf6f0 0%, #f8efea 100%);
    border-radius: 40px;
    margin: 20px 0;
}

/* ---------- CONTACT ---------- */
.contact {
    padding: 40px 0 50px;
}
.contact-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
    background: var(--white);
    padding: 32px;
    border-radius: var(--radius);
    box-shadow: var(--shadow);
}
.contact-info {
    display: flex;
    flex-direction: column;
    gap: 20px;
}
.contact-item {
    display: flex;
    align-items: center;
    gap: 14px;
}
.contact-item .contact-icon {
    font-size: 1.5rem;
    width: 48px;
    height: 48px;
    background: var(--primary-light);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
}
.contact-item strong {
    display: block;
    font-size: 0.85rem;
    color: var(--text-light);
}
.contact-item a {
    color: var(--primary);
    font-weight: 600;
}
.contact-social {
    display: flex;
    gap: 16px;
    margin-top: 8px;
}
.contact-social a {
    font-size: 1.8rem;
    transition: var(--transition);
}
.contact-social a:hover {
    transform: scale(1.1);
}
.contact-message {
    display: flex;
    flex-direction: column;
    justify-content: center;
    gap: 16px;
}
.contact-message p {
    font-size: 1.05rem;
    color: var(--text-light);
}

/* ---------- FOOTER ---------- */
.footer {
    background: var(--text);
    color: #ccc;
    padding: 40px 0 20px;
    margin-top: 40px;
}
.footer-grid {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr;
    gap: 40px;
    margin-bottom: 30px;
}
.footer-brand .logo {
    color: var(--white);
    font-size: 1.4rem;
}
.footer-brand p {
    margin-top: 8px;
    font-size: 0.9rem;
    max-width: 300px;
}
.footer-links h4,
.footer-contact h4 {
    color: var(--white);
    margin-bottom: 12px;
    font-size: 1rem;
}
.footer-links ul {
    list-style: none;
}
.footer-links ul li {
    margin-bottom: 6px;
}
.footer-links ul li a {
    font-size: 0.9rem;
    transition: var(--transition);
}
.footer-links ul li a:hover {
    color: var(--white);
}
.footer-contact p {
    font-size: 0.9rem;
    margin-bottom: 6px;
}
.footer-contact a {
    color: #ccc;
}
.footer-contact a:hover {
    color: var(--white);
}
.footer-bottom {
    border-top: 1px solid #333;
    padding-top: 20px;
    text-align: center;
    font-size: 0.85rem;
}

/* ---------- CART DRAWER ---------- */
.cart-overlay {
    position: fixed;
    inset: 0;
    background: rgba(0,0,0,0.4);
    z-index: 1100;
    display: none;
}
.cart-overlay.active {
    display: block;
}
.cart-drawer {
    position: fixed;
    top: 0;
    left: 0;
    width: 380px;
    max-width: 90vw;
    height: 100%;
    background: var(--white);
    z-index: 1200;
    transform: translateX(-100%);
    transition: transform 0.3s ease;
    display: flex;
    flex-direction: column;
    box-shadow: -4px 0 24px rgba(0,0,0,0.1);
}
.cart-drawer.open {
    transform: translateX(0);
}
.cart-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 16px 20px;
    border-bottom: 1px solid var(--gray);
}
.cart-header h3 {
    font-size: 1.1rem;
}
.cart-close {
    font-size: 1.4rem;
    padding: 4px 8px;
}
.cart-body {
    flex: 1;
    overflow-y: auto;
    padding: 16px 20px;
}
.cart-empty {
    text-align: center;
    padding: 40px 0;
}
.cart-empty span {
    font-size: 3rem;
    display: block;
    margin-bottom: 12px;
}
.cart-items {
    display: flex;
    flex-direction: column;
    gap: 12px;
}
.cart-item {
    display: flex;
    gap: 12px;
    padding: 10px 0;
    border-bottom: 1px solid var(--gray);
}
.cart-item .item-image {
    width: 56px;
    height: 56px;
    background: var(--gray);
    border-radius: var(--radius-sm);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.8rem;
    flex-shrink: 0;
}
.cart-item .item-info {
    flex: 1;
}
.cart-item .item-name {
    font-weight: 600;
    font-size: 0.9rem;
}
.cart-item .item-variant {
    font-size: 0.75rem;
    color: var(--text-light);
}
.cart-item .item-price {
    font-weight: 600;
    color: var(--primary);
    font-size: 0.9rem;
}
.cart-item .item-actions {
    display: flex;
    align-items: center;
    gap: 8px;
    margin-top: 4px;
}
.cart-item .item-actions button {
    width: 28px;
    height: 28px;
    border-radius: 50%;
    background: var(--gray);
    font-weight: 700;
    transition: var(--transition);
}
.cart-item .item-actions button:hover {
    background: var(--primary-light);
}
.cart-item .item-actions .qty {
    font-weight: 600;
    min-width: 24px;
    text-align: center;
}
.cart-item .item-remove {
    color: #d9534f;
    font-size: 0.8rem;
}
.cart-footer {
    padding: 16px 20px;
    border-top: 1px solid var(--gray);
}
.cart-summary {
    margin-bottom: 12px;
}
.cart-row {
    display: flex;
    justify-content: space-between;
    padding: 4px 0;
    font-size: 0.9rem;
}
.cart-row.cart-total {
    font-weight: 700;
    font-size: 1.1rem;
    border-top: 2px solid var(--gray);
    padding-top: 8px;
    margin-top: 4px;
}

/* ---------- MODALS ---------- */
.modal-overlay {
    position: fixed;
    inset: 0;
    background: rgba(0,0,0,0.5);
    z-index: 1300;
    display: none;
}
.modal-overlay.active {
    display: block;
}
.modal {
    position: fixed;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    background: var(--white);
    border-radius: var(--radius);
    z-index: 1400;
    width: 520px;
    max-width: 92vw;
    max-height: 90vh;
    overflow-y: auto;
    display: none;
    box-shadow: 0 20px 60px rgba(0,0,0,0.2);
}
.modal.open {
    display: block;
}
.modal-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 16px 24px;
    border-bottom: 1px solid var(--gray);
    position: sticky;
    top: 0;
    background: var(--white);
    z-index: 2;
    border-radius: var(--radius) var(--radius) 0 0;
}
.modal-header h3 {
    font-size: 1.1rem;
}
.modal-close {
    font-size: 1.4rem;
    padding: 4px 8px;
}
.modal-body {
    padding: 24px;
}

/* ---------- CHECKOUT FORM ---------- */
.form-group {
    margin-bottom: 16px;
}
.form-group label {
    display: block;
    font-weight: 600;
    font-size: 0.9rem;
    margin-bottom: 4px;
}
.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 10px 14px;
    border: 2px solid var(--gray);
    border-radius: var(--radius-sm);
    font-size: 0.95rem;
    font-family: inherit;
    transition: var(--transition);
    background: var(--white);
}
.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    border-color: var(--primary);
    outline: none;
}
.form-group textarea {
    resize: vertical;
    min-height: 50px;
}

.order-review {
    background: var(--bg);
    padding: 16px;
    border-radius: var(--radius-sm);
    margin: 16px 0 20px;
}
.order-review h4 {
    margin-bottom: 10px;
    font-size: 1rem;
}
.order-review-totals {
    border-top: 2px solid var(--gray);
    padding-top: 10px;
    margin-top: 8px;
}
.order-review-totals div {
    display: flex;
    justify-content: space-between;
    padding: 2px 0;
}
.order-review-totals .total {
    font-weight: 700;
    font-size: 1.1rem;
}

/* ---------- SUCCESS MODAL ---------- */
.success-icon {
    font-size: 4rem;
    display: block;
    margin-bottom: 12px;
}
.success-actions {
    display: flex;
    gap: 12px;
    justify-content: center;
    margin-top: 20px;
    flex-wrap: wrap;
}

/* ---------- TOAST ---------- */
.toast-container {
    position: fixed;
    bottom: 24px;
    left: 24px;
    z-index: 1500;
    display: flex;
    flex-direction: column;
    gap: 8px;
}
.toast {
    background: var(--text);
    color: var(--white);
    padding: 12px 20px;
    border-radius: var(--radius-sm);
    font-size: 0.9rem;
    box-shadow: 0 4px 16px rgba(0,0,0,0.15);
    animation: slideUp 0.3s ease;
    max-width: 340px;
}
.toast.success { background: #28a745; }
.toast.error { background: #dc3545; }
.toast.info { background: var(--primary); }

@keyframes slideUp {
    from { opacity: 0; transform: translateY(20px); }
    to { opacity: 1; transform: translateY(0); }
}

/* ---------- LOADING ---------- */
.loading-spinner {
    width: 40px;
    height: 40px;
    border: 4px solid var(--gray);
    border-top-color: var(--primary);
    border-radius: 50%;
    animation: spin 0.8s linear infinite;
    margin: 20px auto;
}
@keyframes spin { to { transform: rotate(360deg); } }

.load-more-wrap {
    text-align: center;
    margin-top: 28px;
}

/* ---------- RESPONSIVE ---------- */
@media (max-width: 992px) {
    .hero .container {
        grid-template-columns: 1fr;
        text-align: center;
    }
    .hero-content p {
        margin-left: auto;
        margin-right: auto;
    }
    .hero-actions {
        justify-content: center;
    }
    .hero-stats {
        justify-content: center;
    }
    .hero-icon {
        font-size: 5rem;
    }
    .hero-circle {
        width: 200px;
        height: 200px;
    }
    .hero-circle2 {
        width: 140px;
        height: 140px;
    }
    .contact-grid {
        grid-template-columns: 1fr;
    }
    .footer-grid {
        grid-template-columns: 1fr 1fr;
    }
}

@media (max-width: 768px) {
    .menu-toggle {
        display: flex;
    }
    .nav {
        position: absolute;
        top: 100%;
        left: 0;
        right: 0;
        background: var(--white);
        box-shadow: 0 8px 24px rgba(0,0,0,0.08);
        padding: 12px 20px;
        display: none;
        border-top: 1px solid var(--gray);
    }
    .nav.open {
        display: block;
    }
    .nav-list {
        flex-direction: column;
        gap: 4px;
    }
    .nav-list a {
        padding: 10px 16px;
        display: block;
    }
    .hero-content h1 {
        font-size: 2rem;
    }
    .products-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 12px;
    }
    .departments-grid {
        grid-template-columns: repeat(3, 1fr);
    }
    .cart-drawer {
        width: 100%;
        max-width: 100%;
    }
    .modal {
        width: 95vw;
        max-height: 95vh;
    }
    .footer-grid {
        grid-template-columns: 1fr;
        gap: 24px;
    }
    .type-selector {
        border-radius: var(--radius);
        padding: 12px;
        gap: 8px;
    }
}

@media (max-width: 480px) {
    .products-grid {
        grid-template-columns: 1fr 1fr;
        gap: 10px;
    }
    .product-card .product-image {
        height: 120px;
    }
    .product-card .product-body {
        padding: 10px 12px 12px;
    }
    .product-card .product-name {
        font-size: 0.8rem;
    }
    .product-card .product-price {
        font-size: 0.9rem;
    }
    .departments-grid {
        grid-template-columns: 1fr 1fr;
    }
    .dept-card {
        padding: 14px 10px;
    }
    .container {
        padding: 0 12px;
    }
    .hero {
        padding: 30px 0 40px;
    }
}