/* ============================================
   RESPONSIVE.CSS - ANTONIO ARTWORKS
   Sorted by breakpoint | No duplicates
============================================ */

/* Prevent double-tap zoom on interactive elements */
button,
.btn-primary,
.btn-outline,
.add-to-cart-btn,
.add-custom-btn,
.submit-btn,
.step-btn,
.gallery-overlay button,
.artwork-card .add-to-cart-btn,
.view-details,
.add-to-cart-gallery,
a.btn,
[role="button"] {
    touch-action: manipulation;
}

/* Prevent iOS zoom on input focus */
input,
select,
textarea {
    font-size: 16px;
}

/* ============================================
   GLOBAL / CONTAINER
============================================ */
@media (max-width: 768px) {
    .container {
        padding: 0 1rem;
    }
}
@media (max-width: 480px) {
    .container {
        padding: 0 0.75rem;
    }
}

/* ============================================
   NAVIGATION & MOBILE MENU
============================================ */
@media (max-width: 768px) {
    .nav-links {
        display: none;
    }
    .mobile-menu-btn {
        display: block;
    }
    .logo-img {
        height: 60px;
    }
    .navbar {
        height: 80px;
    }
    .mobile-menu {
        width: 280px;
    }
    .mobile-menu-content a {
        font-size: 1rem;
        padding: 0.7rem 1rem;
    }
    .mobile-menu-header {
        padding: 1rem 1.2rem;
    }
    .mobile-menu-logo img {
        height: 40px;
    }
}
@media (max-width: 480px) {
    .mobile-menu {
        width: 260px;
    }
    .mobile-menu-content a {
        font-size: 0.9rem;
        padding: 0.6rem 1rem;
    }
    .mobile-menu-header {
        padding: 0.8rem 1rem;
    }
    .mobile-menu-logo img {
        height: 35px;
    }
}

/* ============================================
   TYPOGRAPHY / SECTION TITLES
============================================ */
@media (max-width: 768px) {
    .section-title {
        font-size: 1.5rem;
        margin-bottom: 1rem;
    }
    .section-subtitle {
        font-size: 0.85rem;
        margin-bottom: 1.5rem;
    }
    h1 {
        font-size: 2rem;
    }
    h2 {
        font-size: 1.5rem;
    }
}
@media (max-width: 480px) {
    .section-title {
        font-size: 1.3rem;
    }
    .section-subtitle {
        font-size: 0.75rem;
        margin-bottom: 1rem;
    }
}

/* ============================================
   BUTTONS
============================================ */
@media (max-width: 480px) {
    .btn-primary, 
    .btn-outline {
        padding: 0.8rem 0.8rem;
        font-size: 0.9rem;
    }
}

/* ============================================
   HERO SECTION
============================================ */
@media (max-width: 1024px) {

    .guality-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 0.75rem;
    }

    .hero-content h1 {
        font-size: 2.5rem;
    }

    .hero-buttons {
        display: flex;
        flex-direction: row;
        font-size: 0,7rem;
    }

    .achievements-grid {
    display: grid;
    grid-template-columns: repeat(3 , 1fr);
    padding-right: 50px;
}
}
@media (max-width: 900px) {
    .hero-images-container {
        width: 40%;
    }
}
@media (max-width: 768px) {
    .hero {
        height: auto;
        min-height: auto;
        margin-top: 80px;
        padding: 1rem;
        flex-direction: column;
        background: linear-gradient(135deg, var(--dark-bg) 0%, #1E3A4D 100%);
    }
    .hero-content {
        max-width: 100%;
        text-align: center;
        padding: 1rem 0.5rem;
        z-index: 2;
    }
    .hero-title {
        font-size: 1.4rem;
        margin-bottom: 0.5rem;
        color: var(--white);
    }
    .hero-subtitle {
        font-size: 0.75rem;
        margin-bottom: 1rem;
        color: rgba(255,255,255,0.85);
    }
    .hero-buttons {
        display: flex;
        flex-direction: row;
        justify-content: center;
        gap: 0.5rem;
        flex-wrap: wrap;
    }
    .hero-buttons .btn-primary,
    .hero-buttons .btn-outline {
        margin: 0;
        width: auto;
        padding: 0.4rem 0.8rem;
        font-size: 0.7rem;
    }
    .hero-images-container {
        display: flex !important;
        width: 100%;
        height: 180px;
        position: relative;
        margin-top: 0.5rem;
        gap: 0.5rem;
    }
    .hero-images-container::before {
        content: '';
        position: absolute;
        top: 0;
        left: 0;
        right: 0;
        bottom: 0;
        background: linear-gradient(135deg, rgba(26, 42, 58, 0.4), rgba(30, 58, 77, 0.5));
        z-index: 1;
        pointer-events: none;
        border-radius: 8px;
    }
    .hero-image-left {
        flex: 1;
        height: 100%;
        border-radius: 8px;
        overflow: hidden;
        position: relative;
    }
    .hero-image-left img {
        width: 100%;
        height: 100%;
        object-fit: cover;
        opacity: 0.75;
        filter: brightness(1.05) contrast(1.02);
    }
    .hero-images-container > div:last-child {
        flex: 1;
        height: 100%;
        border-radius: 8px;
        overflow: hidden;
        position: relative;
    }
    .hero-images-container > div:last-child img {
        width: 100%;
        height: 100%;
        object-fit: cover;
        opacity: 0.8;
        filter: brightness(1.02) contrast(1.01);
    }
    .hero-image-left::after {
        content: '';
        position: absolute;
        top: 0;
        left: 0;
        right: 0;
        bottom: 0;
        background: linear-gradient(135deg, rgba(26, 42, 58, 0.3), rgba(30, 58, 77, 0.4));
        pointer-events: none;
        border-radius: 8px;
    }
    .hero-images-container > div:last-child::after {
        content: '';
        position: absolute;
        top: 0;
        left: 0;
        right: 0;
        bottom: 0;
        background: linear-gradient(135deg, rgba(26, 42, 58, 0.2), rgba(30, 58, 77, 0.35));
        pointer-events: none;
        border-radius: 8px;
    }
}
@media (max-width: 480px) {
    .hero {
        padding: 0.5rem;
    }
    .hero-title {
        font-size: 1.2rem;
    }
    .hero-subtitle {
        font-size: 0.7rem;
    }
    .hero-buttons .btn-primary,
    .hero-buttons .btn-outline {
        padding: 0.35rem 0.6rem;
        font-size: 0.65rem;
    }
    .hero-images-container {
        height: 140px;
        gap: 0.3rem;
    }
    .hero-images-container::before {
        border-radius: 6px;
    }
}
@media (max-width: 360px) {
    .hero-images-container {
        height: 120px;
    }
    .hero-title {
        font-size: 1rem;
    }
}

/* ============================================
   GRIDS (Categories, Quality, Testimonials, Corporate, Projects)
============================================ */
@media (max-width: 768px) {
    .categories-grid,
    .quality-grid,
    .testimonials-grid,
    .corporate-grid,
    .projects-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 0.75rem;
    }
    .featured-categories {
        padding: 2rem 0;
    }
    .quality-section {
        padding: 2rem 0;
    }
    .testimonials {
        padding: 2rem 0;
    }
}
@media (max-width: 480px) {
    .categories-grid,
    .quality-grid,
    .testimonials-grid,
    .corporate-grid,
    .projects-grid {
        gap: 0.5rem;
    }
}

/* ============================================
   CATEGORY CARDS
============================================ */
@media (max-width: 768px) {
    .category-card {
        margin-bottom: 0;
    }
    .category-image {
        height: 140px;
    }
    .category-info {
        padding: 0.6rem;
    }
    .category-info h3 {
        font-size: 0.85rem;
        margin-bottom: 0.25rem;
    }
    .category-info p {
        font-size: 0.65rem;
        margin-bottom: 0.5rem;
        display: none;
    }
    .category-link {
        font-size: 0.7rem;
    }
}
@media (max-width: 480px) {
    .category-image {
        height: 110px;
    }
    .category-info {
        padding: 0.4rem;
    }
    .category-info h3 {
        font-size: 0.7rem;
    }
    .category-info p {
        display: none;
    }
    .category-link {
        font-size: 0.6rem;
    }
}
@media (max-width: 360px) {
    .category-image {
        height: 100px;
    }
}
/* Taller category cards on mobile (homepage) */
@media (max-width: 767px) {
    .category-card {
        aspect-ratio: 2 / 3 !important;
        display: flex !important;
        flex-direction: column !important;
        overflow: hidden !important;
    }
    .category-image {
        height: 70% !important;
        overflow: hidden !important;
    }
    .category-image img {
        width: 100% !important;
        height: 100% !important;
        object-fit: cover !important;
    }
    .category-info {
        padding: 0.5rem !important;
        height: 30% !important;
        display: flex !important;
        flex-direction: column !important;
        justify-content: center !important;
    }
    .category-info h3 {
        font-size: 0.7rem !important;
        margin-bottom: 0.2rem !important;
        white-space: nowrap !important;
        overflow: hidden !important;
        text-overflow: ellipsis !important;
    }
    .category-info p {
        font-size: 0.6rem !important;
        margin-bottom: 0.25rem !important;
        display: -webkit-box !important;
        -webkit-line-clamp: 1 !important;
        -webkit-box-orient: vertical !important;
        overflow: hidden !important;
    }
    .category-link {
        font-size: 0.6rem !important;
    }
}
@media (max-width: 480px) {
    .category-card {
        aspect-ratio: 3 / 4 !important;
    }
    .category-image {
        height: 72% !important;
    }
    .category-info {
        height: 28% !important;
        padding: 0.4rem !important;
    }
    .category-info h3 {
        font-size: 0.65rem !important;
    }
    .category-info p {
        font-size: 0.55rem !important;
        display: none !important;
    }
    .category-link {
        font-size: 0.55rem !important;
    }
}

/* ============================================
   QUALITY ITEMS
============================================ */
@media (max-width: 768px) {
    .quality-item {
        padding: 0.75rem;
    }
    .quality-icon {
        width: 45px;
        height: 45px;
        margin-bottom: 0.5rem;
    }
    .quality-icon i {
        font-size: 1.3rem;
    }
    .quality-item h3 {
        font-size: 0.8rem;
        margin-bottom: 0.25rem;
    }
    .quality-item p {
        font-size: 0.65rem;
        display: none;
    }
}
@media (max-width: 480px) {
    .quality-item {
        padding: 0.5rem;
    }
}

/* ============================================
   GALLERY – CLEAN & CONSISTENT
============================================ */

/* Tablet (up to 1024px) – 3 columns */
@media (max-width: 1024px) {
    .gallery-grid {
        grid-template-columns: repeat(3, 1fr);
        gap: 1rem;
    }
    /* For services page artwork cards (3 columns as well) */
    .service-gallery {
        grid-template-columns: repeat(3, 1fr) !important;
        gap: 0.7rem !important;
    }
    .artwork-card {
        aspect-ratio: 3 / 5;
    }
    .artwork-image {
        height: 70%;
    }
    .artwork-info {
        height: 30%;
        padding-top: 1rem;
    }

    .gallery-overlay button {
        padding: 0.5rem 1rem;
        font-size: 0.7rem;
    }
}

/* Mobile (up to 768px) – 2 columns, taller cards */
@media (max-width: 768px) {
    .gallery-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 0.75rem;
        padding: 0.75rem 0;
    }
    /* Make gallery items taller (2:3 ratio) */
    .gallery-item {
        aspect-ratio: 2 / 3 !important;
        display: flex !important;
        flex-direction: column !important;
        overflow: hidden !important;
    }
    .gallery-image {
        height: 70% !important;
        overflow: hidden !important;
    }
    .gallery-image img {
        width: 100% !important;
        height: 100% !important;
        object-fit: cover !important;
    }
    .gallery-info {
        padding: 0.5rem !important;
        height: 30% !important;
        display: flex !important;
        flex-direction: column !important;
        justify-content: center !important;
    }
    .gallery-info h3 {
        font-size: 0.8rem;
        margin-bottom: 0.2rem;
        white-space: nowrap;
        overflow: hidden;
        text-overflow: ellipsis;
    }
    .gallery-info p {
        font-size: 0.7rem;
        margin-bottom: 0.2rem;
        white-space: nowrap;
        overflow: hidden;
        text-overflow: ellipsis;
    }
    .price {
        font-size: 0.75rem;
    }
    .status-badge {
        font-size: 0.6rem;
        padding: 0.15rem 0.4rem;
    }
    .price-status {
        display: flex;
        justify-content: space-between;
        align-items: center;
        flex-wrap: wrap;
        gap: 0.25rem;
    }
    /* Filter & search */
    .filter-section {
        gap: 0.35rem;
        margin-bottom: 0.75rem;
    }
    .filter-btn {
        padding: 0.25rem 0.6rem;
        font-size: 0.6rem;
    }
    .gallery-search {
        margin-bottom: 0.75rem;
    }
    .gallery-search input {
        padding: 0.35rem 0.5rem;
        font-size: 0.7rem;
    }
}

/* Small mobile (up to 480px) – even taller cards (3:4 ratio) */
@media (max-width: 480px) {
    .gallery-grid {
        gap: 0.5rem;
    }
    .gallery-item {
        aspect-ratio: 3 / 5 !important;
    }
    .gallery-image {
        height: 72% !important;
    }
    .gallery-info {
        height: 28% !important;
        padding: 0.4rem !important;
    }
    .gallery-info h3 {
        font-size: 0.65rem;
    }
    .gallery-info p {
        font-size: 0.55rem;
    }
    .price {
        font-size: 0.65rem;
    }
    .original-price,
    .sale-price {
        font-size: 0.6rem;
    }
    .filter-btn {
        padding: 0.2rem 0.5rem;
        font-size: 0.55rem;
    }
}

/* Extra small (up to 360px) – compact */
@media (max-width: 360px) {
    .gallery-image {
        height: 100px;
    }
    .gallery-info h3 {
        font-size: 0.6rem;
    }
    .price {
        font-size: 0.6rem;
    }
}

/* ============================================
   ARTWORK CARDS (Services Page)
============================================ */
@media (max-width: 768px) {
    .service-section {
        padding: 2rem 0;
    }
    .service-header h2 {
        font-size: 1.5rem;
    }
    .service-header p {
        font-size: 0.85rem;
    }
    .artwork-image {
        height: 200px;
    }
    .artwork-info {
        padding: 0.75rem;
    }
    .artwork-info h3 {
        font-size: 0.85rem;
    }
    .artwork-info p {
        font-size: 0.7rem;
    }
    .add-to-cart-btn {
        padding: 0.4rem;
        font-size: 0.65rem;
    }
}
@media (max-width: 480px) {
    .artwork-image {
        height: 150px;
    }
    .artwork-info {
        padding: 0.5rem;
    }
    .artwork-info h3 {
        font-size: 0.75rem;
    }
    .artwork-info p {
        font-size: 0.6rem;
    }
    .add-to-cart-btn {
        padding: 0.3rem;
        font-size: 0.6rem;
    }
}
@media (max-width: 360px) {
    .artwork-image {
        height: 130px;
    }
}
/* Mobile 3‑column artwork cards (overrides) */
@media (max-width: 768px) {
    .service-gallery {
        grid-template-columns: repeat(3, 1fr) !important;
        gap: 0.5rem !important;
    }
    .artwork-card {
        aspect-ratio: 3 / 6 !important;
        margin: 0 !important;
    }
    .artwork-image {
        height: 65% !important;
    }
    .artwork-info {
        padding: 0.3rem !important;
        height: 40% !important;
    }
    .artwork-info h3 {
        font-size: 0.6rem !important;
        margin-bottom: 0.1rem !important;
        white-space: nowrap !important;
        overflow: hidden !important;
        text-overflow: ellipsis !important;
    }
    .artwork-info p {
        font-size: 0.5rem !important;
        margin-bottom: 0.1rem !important;
        white-space: nowrap !important;
        overflow: hidden !important;
        text-overflow: ellipsis !important;
    }
    .artwork-info .price {
        font-size: 0.55rem !important;
        font-weight: 600 !important;
    }
}
@media (max-width: 550px) {
    .service-gallery {
        gap: 0.3rem !important;
    }
    .artwork-info h3 {
        font-size: 0.55rem !important;
    }
    .artwork-info p {
        font-size: 0.45rem !important;
    }
    .artwork-info .price {
        font-size: 0.5rem !important;
    }
}
@media (max-width: 400px) {
    .service-gallery {
        gap: 0.25rem !important;
    }
    .artwork-info h3 {
        font-size: 0.5rem !important;
    }
    .artwork-info p {
        display: none !important;
    }
    .artwork-info .price {
        font-size: 0.5rem !important;
    }
}
/* Mobile add‑to‑cart button (always visible) */
@media (max-width: 768px) {
    .artwork-card .add-to-cart-btn {
        font-size: 0.6rem;
        border-radius: 4px;
    }
}
/* ============================================
   FEATURED ARTWORK
============================================ */
@media (max-width: 768px) {
    .featured-artwork {
        padding: 2rem 0;
    }
    .featured-content {
        display: grid;
        grid-template-columns: 1fr 1fr;
        gap: 1rem;
        align-items: stretch;
    }
    .featured-text {
        order: 1;
        height: 350px;               /* increased to fit all text without scrolling */
        overflow-y: visible;         /* no scrollbar */
        padding-right: 0.5rem;
    }
    .featured-image {
        order: 2;
        height: 350px;               /* same as text height */
        overflow: hidden;
        border-radius: 8px;
    }
    .featured-image img {
        width: 100%;
        height: 100%;
        object-fit: cover;
    }
    .featured-text h2 {
        font-size: 1.2rem;
        margin-bottom: 0.5rem;
    }
    .featured-subtitle {
        font-size: 0.7rem;
        margin-bottom: 0.5rem;
    }
    .featured-text p {
        font-size: 0.7rem;
        margin-bottom: 0.5rem;
    }
    .featured-details {
        gap: 0.5rem;
        margin: 0.5rem 0;
        flex-wrap: wrap;
    }
    .featured-details span {
        font-size: 0.6rem;
    }
    .featured-buttons {
        display: flex;
        flex-direction: column;
        gap: 0.5rem;
    }
    .featured-buttons .btn-primary,
    .featured-buttons .btn-outline {
        width: 100%;
        text-align: center;
        margin: 0;
        padding: 0.4rem 0.8rem;
        font-size: 0.7rem;
    }
}
@media (max-width: 360px) {
    .featured-details {
        flex-direction: column;
        gap: 0.3rem;
        align-items: center;
    }
}

/* ============================================
   ART COLLECTOR GALLERY (CAROUSEL)
============================================ */
@media (max-width: 1024px) {
    .carousel-slide {
        flex: 0 0 calc(100% / 2);
    }
    .collector-image {
        height: 200px;
    }
}
@media (max-width: 768px) {
    .collector-showcase {
        padding: 2rem 0;
    }
    .collector-showcase .section-title {
        font-size: 1.3rem;
        margin-bottom: 0.5rem;
    }
    .collector-showcase .section-subtitle {
        font-size: 0.7rem;
        margin-bottom: 1rem;
    }
    .carousel-container {
        padding: 0 2rem;
        max-width: 350px;
    }
    .carousel-slide {
        flex: 0 0 100%;
        padding: 0 0.5rem;
    }
    .collector-card {
        padding: 1rem;
        border-radius: 12px;
    }
    .collector-image {
        height: 280px;
        margin-bottom: 0.75rem;
        border-radius: 10px;
    }
    .collector-image img {
        object-fit: cover;
        width: 100%;
        height: 100%;
    }
    .collector-info h3 {
        font-size: 1rem;
        margin-bottom: 0.25rem;
    }
    .collector-info .title {
        font-size: 0.75rem;
    }
    .carousel-btn {
        width: 32px;
        height: 32px;
        font-size: 0.8rem;
    }
    .carousel-dots {
        margin-top: 1rem;
        gap: 0.5rem;
    }
    .dot {
        width: 8px;
        height: 8px;
    }
    .dot.active {
        width: 20px;
    }

    /* Admin gallery cards – compact like gallery.html on mobile */
    .artworks-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 0.55rem;
    }
    .artwork-admin-card {
        background: var(--white);
        border-radius: 12px;
        overflow: hidden;
        transition: var(--transition);
        box-shadow: var(--shadow-md);
        border: 1px solid rgba(0,0,0,0.05);
        display: flex;
        flex-direction: column;
    }
    .artwork-admin-card:hover {
        transform: translateY(-3px);
        box-shadow: var(--shadow-md);
    }
    .artwork-image {
        height: 150px;
        overflow: hidden;
        background: var(--light-gray);
    }
    .artwork-image img {
        width: 100%;
        height: 100%;
        object-fit: cover;
        transition: transform 0.3s ease;
    }
    .artwork-admin-card:hover .artwork-image img {
        transform: scale(1.05);
    }
    .artwork-info {
        padding: 0.5rem;
        display: flex;
        flex-direction: column;
        gap: 0.25rem;
    }
    .artwork-title {
        font-size: 0.8rem;
        font-weight: 600;
        margin-bottom: 0.2rem;
        white-space: nowrap;
        overflow: hidden;
        text-overflow: ellipsis;
    }
    .drag-handle {
        cursor: grab;
        font-size: 0.9rem;
        margin-right: 0.25rem;
    }
    .artwork-price {
        font-size: 0.7rem;
        font-weight: 600;
        margin-bottom: 0.2rem;
    }
    .status-badge {
        font-size: 0.6rem;
        padding: 0.15rem 0.4rem;
        margin-bottom: 0.25rem;
        display: inline-block;
        width: fit-content;
    }
    .featured-badge {
        font-size: 0.55rem;
        padding: 0.1rem 0.3rem;
    }
    .artwork-actions {
        display: flex;
        gap: 0.25rem;
        margin-top: 0.25rem;
        flex-wrap: wrap;
    }
    .btn-admin {
        font-size: 0.6rem;
        padding: 0.25rem 0.4rem;
        flex: 1;
        text-align: center;
        border-radius: 4px;
    }
}
@media (max-width: 480px) {
    .collector-showcase {
        padding: 1.5rem 0;
    }
    .collector-card {
        padding: 0.75rem;
    }
    .collector-image {
        height: 320px;
    }
    .collector-info h3 {
        font-size: 0.9rem;
    }
    .collector-info .title {
        font-size: 0.7rem;
    }
    .carousel-container {
        padding: 0 1.5rem;
    }
    .carousel-btn {
        width: 28px;
        height: 28px;
        font-size: 0.7rem;
    }
}
@media (max-width: 360px) {
    .collector-image {
        height: 280px;
    }
}
/* Taller collector cards on mobile (homepage carousel) */
@media (max-width: 767px) {
    .collector-card {
        aspect-ratio: 3 / 4 !important;
        display: flex !important;
        flex-direction: column !important;
        overflow: hidden !important;
        padding: 0.5rem !important;
    }
    .collector-image {
        height: 80% !important;
        overflow: hidden !important;
        margin-bottom: 0.5rem !important;
        border-radius: 10px !important;
    }
    .collector-image img {
        width: 100% !important;
        height: 100% !important;
        object-fit: cover !important;
    }
    .collector-info {
        height: 20% !important;
        display: flex !important;
        flex-direction: column !important;
        justify-content: center !important;
    }
    .collector-info h3 {
        font-size: 0.75rem !important;
        margin-bottom: 0.1rem !important;
    }
    .collector-info .title {
        font-size: 0.6rem !important;
    }
}
@media (max-width: 480px) {
    .collector-card {
        aspect-ratio: 4 / 5 !important;
    }
    .collector-image {
        height: 82% !important;
    }
    .collector-info h3 {
        font-size: 0.7rem !important;
    }
    .collector-info .title {
        font-size: 0.55rem !important;
    }
}

/* ============================================
   PRICE TABLES
============================================ */
@media (max-width: 768px) {
    .price-table {
        font-size: 0.75rem;
    }
    .price-table th,
    .price-table td {
        padding: 0.5rem;
    }
    .add-custom-btn {
        padding: 0.25rem 0.5rem;
        font-size: 0.7rem;
    }
    .portrait-upload {
        width: 80px !important;
        font-size: 0.54rem !important;
    }
}
@media (max-width: 480px) {
    .price-table th,
    .price-table td {
        padding: 0.25rem;
        font-size: 0.55rem;
    }
    .add-custom-btn {
        padding: 0.15rem 0.3rem;
        font-size: 0.55rem;
    }
}

/* ============================================
   COMMISSION FORM
============================================ */
@media (max-width: 768px) {
    .commission-form {
        padding: 1rem;
    }
    .commission-form h3 {
        font-size: 1rem;
        margin-bottom: 0.75rem;
    }
    .form-group {
        margin-bottom: 0.75rem;
    }
    .form-group label {
        font-size: 0.75rem;
    }
    .form-group input,
    .form-group select,
    .form-group textarea {
        padding: 0.5rem;
        font-size: 0.8rem;
    }
    button[type="submit"] {
        padding: 0.5rem;
        font-size: 0.75rem;
        margin-top: 0.5rem;
    }
}
@media (max-width: 480px) {
    .commission-form {
        padding: 0.5rem;
    }
    .form-group {
        margin-bottom: 0.4rem;
    }
    .form-group label {
        font-size: 0.65rem;
    }
    .form-group input,
    .form-group select,
    .form-group textarea {
        padding: 0.35rem;
        font-size: 0.65rem;
    }
}

/* ============================================
   CORPORATE & PROJECT CARDS
============================================ */
@media (max-width: 768px) {
    .corporate-card {
        padding: 0.75rem;
    }
    .corporate-icon {
        width: 45px;
        height: 45px;
    }
    .corporate-icon i {
        font-size: 1.3rem;
    }
    .corporate-card h3 {
        font-size: 0.8rem;
    }
    .corporate-card p {
        font-size: 0.65rem;
    }
    .corporate-card .price {
        font-size: 0.8rem;
    }
    .projects-grid {
        grid-template-columns: repeat(3, 1fr);
        gap: 0.5rem;
    }
    .project-card {
        padding: 0.75rem 1rem;
        font-size: 0.7rem;
        font-weight: 20px;
    }
    .project-icon {
        width: 45px;
        height: 45px;
    }
    .project-icon i {
        font-size: 1.3rem;
    }
    .project-card h3 {
        font-size: 0.8rem;
    }
    .project-card p {
        font-size: 0.65rem;
    }
}
@media (max-width: 480px) {
    .corporate-card {
        padding: 0.5rem;
    }
    .corporate-icon {
        width: 35px;
        height: 35px;
    }
    .corporate-icon i {
        font-size: 1rem;
    }
    .corporate-card h3 {
        font-size: 0.7rem;
    }
    .corporate-card p {
        font-size: 0.55rem;
        display: none;
    }
    .corporate-card .price {
        font-size: 0.7rem;
    }
    .project-card {
        padding: 0.5rem 1rem;
        font-size: 0.7rem;
        font-weight: 20px;
    }
    .project-icon {
        width: 35px;
        height: 35px;
    }
    .project-icon i {
        font-size: 1rem;
    }
    .project-card h3 {
        font-size: 0.7rem;
    }
    .project-card p {
        font-size: 0.55rem;
    }
}

/* ============================================
   TESTIMONIALS
============================================ */
@media (max-width: 768px) {
    .testimonial-card {
        padding: 0.75rem;
    }
    .testimonial-content i {
        font-size: 1.2rem;
        margin-bottom: 0.5rem;
    }
    .testimonial-content p {
        font-size: 0.7rem;
        margin-bottom: 0.5rem;
    }
    .testimonial-author h4 {
        font-size: 0.75rem;
    }
    .testimonial-author p {
        font-size: 0.6rem;
    }
}

/* ============================================
   PORTFOLIO PAGE
============================================ */
/* Mobile & tablet overrides */
@media (max-width: 768px) {
    .artist-statement {
        padding: 2rem 0;
    }
    .artist-statement-wrapper {
        gap: 1.5rem;
        padding: 0 1rem;
        grid-template-columns: 1fr;
    }
    .artist-image-container {
        max-width: 200px;
        margin: 0 auto;
    }
    .statement-content h2 {
        font-size: 1.3rem;
        text-align: center;
    }
    .statement-content h2:after {
        left: 50%;
        transform: translateX(-50%);
    }
    .statement-text {
        text-align: center;
    }
    .statement-text p {
        font-size: 0.75rem;
        margin-bottom: 0.75rem;
    }
    .vision-mission {
        padding: 2rem 0;
    }
    .vision-mission-grid {
        gap: 1rem;
        padding: 0 1rem;
        grid-template-columns: 1fr;
    }
    .vision-card, .mission-card {
        padding: 1rem;
        text-align: center;
    }
    .card-icon {
        width: 45px;
        height: 45px;
        margin: 0 auto 0.75rem;
    }
    .card-icon i {
        font-size: 1.3rem;
    }
    .vision-card h3, .mission-card h3 {
        font-size: 1rem;
    }
    .vision-card p, .mission-card p {
        font-size: 0.7rem;
    }
    .mission-card ul {
        text-align: left;
    }
    .mission-card li {
        font-size: 0.7rem;
    }
    .achievements {
        padding: 2rem 0;
    }
    .achievements-grid {
        display: grid;
        grid-template-columns: repeat(3, 1fr);
        gap: 0.75rem;
        padding: 0 1rem;
    }
    .achievement-card {
        padding: 0.75rem;
    }
    .achievement-icon {
        width: 40px;
        height: 40px;
        margin: 0 auto 0.5rem;
    }
    .achievement-icon i {
        font-size: 1rem;
    }
    .achievement-card h3 {
        font-size: 1rem;
    }
    .achievement-card p {
        font-size: 0.6rem;
    }
    .selected-works {
        padding: 2rem 0;
    }
    .works-grid {
        gap: 1rem;
        padding: 0 1rem;
    }
    .work-image {
        height: 200px;
    }
    .work-info {
        padding: 0.75rem;
    }
    .work-info h3 {
        font-size: 0.85rem;
    }
    .work-info p {
        font-size: 0.65rem;
    }
    .work-description {
        font-size: 0.65rem;
        margin: 0.5rem 0;
        display: block;
    }
    .inquire-btn {
        padding: 0.3rem 0.6rem;
        font-size: 0.65rem;
    }
}
/* Remove hover scale on artist image (desktop also) */
.artist-image {
    overflow: hidden;
}
.artist-image img {
    width: 100%;
    height: auto;
    display: block;
    transition: none !important;
}
.artist-image:hover img {
    transform: none !important;
}
/* Restore desktop layout for portfolio */
@media (min-width: 768px) {
    .artist-statement-wrapper {
        grid-template-columns: 1fr 1.2fr;
        gap: 3rem;
    }
    .artist-image-container {
        max-width: 100%;
        margin: 0;
    }
    .statement-content {
        text-align: left;
    }
    .statement-content h2 {
        font-size: 1.8rem;
        text-align: left;
    }
    .statement-content h2:after {
        left: 0;
        transform: none;
    }
    .statement-text p {
        font-size: 0.9rem;
    }
    .vision-mission-grid {
        grid-template-columns: 1fr 1fr;
        gap: 2rem;
    }
    .vision-card, .mission-card {
        padding: 1.5rem;
        text-align: left;
    }
    .card-icon {
        width: 55px;
        height: 55px;
        margin: 0 0 1rem;
    }
    .card-icon i {
        font-size: 1.5rem;
    }
    .vision-card h3, .mission-card h3 {
        font-size: 1.2rem;
    }
    .vision-card p, .mission-card p, .mission-card li {
        font-size: 0.85rem;
    }
}
@media (min-width: 1024px) {
    .statement-content h2 {
        font-size: 2.2rem;
    }
    .statement-text p {
        font-size: 1rem;
    }
    .vision-card, .mission-card {
        padding: 2rem;
    }
    .card-icon {
        width: 70px;
        height: 70px;
    }
    .card-icon i {
        font-size: 2rem;
    }
    .vision-card h3, .mission-card h3 {
        font-size: 1.5rem;
    }
    .vision-card p, .mission-card p, .mission-card li {
        font-size: 1rem;
    }
}

/* ============================================
   CONTACT PAGE
============================================ */
@media (max-width: 768px) {
    .contact-section {
        padding: 2rem 0;
    }
    .contact-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
    .contact-info-wrapper,
    .contact-form-wrapper {
        padding: 1rem;
    }
    .contact-info-wrapper h2,
    .contact-form-wrapper h2 {
        font-size: 1.3rem;
        margin-bottom: 0.5rem;
    }
    .contact-info-wrapper > p,
    .contact-form-wrapper > p {
        font-size: 0.75rem;
        margin-bottom: 1rem;
    }
    .info-cards {
        gap: 0.75rem;
        margin-bottom: 1rem;
    }
    .info-card {
        padding: 0.75rem;
        gap: 0.75rem;
        flex-direction: row;
        align-items: center;
    }
    .info-icon {
        width: 40px;
        height: 40px;
    }
    .info-icon i {
        font-size: 1.2rem;
    }
    .info-content h3 {
        font-size: 0.85rem;
        margin-bottom: 0.2rem;
    }
    .info-content p,
    .info-content a {
        font-size: 0.7rem;
        margin-bottom: 0.2rem;
    }
    .info-content small {
        font-size: 0.6rem;
    }
    .business-hours {
        padding: 0.75rem;
        margin-bottom: 1rem;
    }
    .business-hours h3 {
        font-size: 0.9rem;
        margin-bottom: 0.5rem;
    }
    .hours-list li {
        padding: 0.4rem 0;
        font-size: 0.7rem;
    }
    .social-connect {
        margin-bottom: 1rem;
    }
    .social-connect h3 {
        font-size: 0.9rem;
        margin-bottom: 0.5rem;
    }
    .social-links-large {
        gap: 0.5rem;
        justify-content: center;
    }
    .social-link {
        padding: 0.4rem 0.8rem;
        font-size: 0.7rem;
    }
    .social-link i {
        font-size: 0.9rem;
    }
    .contact-form {
        gap: 0.75rem;
    }
    .form-row {
        grid-template-columns: 1fr;
        gap: 0.75rem;
    }
    .contact-form .form-group {
        margin-bottom: 0.75rem;
    }
    .contact-form .form-group label {
        font-size: 0.7rem;
    }
    .contact-form .form-group input,
    .contact-form .form-group select,
    .contact-form .form-group textarea {
        padding: 0.5rem;
        font-size: 0.7rem;
    }
    .checkbox-label span {
        font-size: 0.65rem;
    }
    .submit-btn {
        padding: 0.6rem;
        font-size: 0.8rem;
    }
    .map-section {
        padding: 0 0 2rem;
    }
    .map-container iframe {
        height: 250px;
    }
    .faq-section {
        padding: 2rem 0;
    }
    .faq-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 0.75rem;
        margin-top: 1.5rem;
    }
    .faq-item {
        padding: 0.75rem;
    }
    .faq-question {
        gap: 0.5rem;
        margin-bottom: 0.5rem;
    }
    .faq-question i {
        font-size: 0.9rem;
    }
    .faq-question h3 {
        font-size: 0.85rem;
    }
    .faq-item p {
        font-size: 0.7rem;
        padding-left: 1.5rem;
    }
}
@media (max-width: 480px) {
    .contact-info-wrapper h2,
    .contact-form-wrapper h2 {
        font-size: 1.2rem;
    }
    .info-card {
        padding: 0.6rem;
        gap: 0.5rem;
    }
    .info-icon {
        width: 35px;
        height: 35px;
    }
    .info-icon i {
        font-size: 1rem;
    }
    .info-content h3 {
        font-size: 0.8rem;
    }
    .info-content p,
    .info-content a {
        font-size: 0.65rem;
    }
    .info-content small {
        font-size: 0.55rem;
    }
    .hours-list li {
        font-size: 0.65rem;
        flex-direction: column;
        align-items: flex-start;
        gap: 0.2rem;
    }
    .social-link {
        padding: 0.35rem 0.7rem;
        font-size: 0.65rem;
    }
    .form-group label {
        font-size: 0.7rem;
    }
    .form-group input,
    .form-group select,
    .form-group textarea {
        padding: 0.5rem;
        font-size: 0.75rem;
    }
    .checkbox-label span {
        font-size: 0.65rem;
    }
    .submit-btn {
        padding: 0.6rem;
        font-size: 0.8rem;
    }
    .faq-question h3 {
        font-size: 0.8rem;
    }
    .faq-item p {
        font-size: 0.65rem;
        padding-left: 1.2rem;
    }
}
@media (max-width: 360px) {
    .info-card {
        flex-direction: column;
        text-align: center;
    }
    .info-icon {
        margin: 0 auto;
    }
    .hours-list li {
        align-items: center;
        text-align: center;
    }
    .faq-question {
        flex-direction: column;
        text-align: center;
    }
    .faq-item p {
        text-align: center;
        padding-left: 0;
    }
}

/* ============================================
   COMPLIANCE PAGE
============================================ */
@media (max-width: 768px) {
    .compliance-section {
        padding: 2rem 0;
    }
    .csd-badge {
        margin-bottom: 1.5rem;
    }
    .csd-number {
        flex-direction: column;
        gap: 0.5rem;
        padding: 1rem;
        text-align: center;
    }
    .csd-number i {
        font-size: 1.5rem;
    }
    .csd-number span {
        font-size: 0.9rem;
    }
    .csd-number strong {
        font-size: 1rem;
    }
    .compliance-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 0.75rem;
        margin-bottom: 1.5rem;
    }
    .compliance-card {
        padding: 1rem;
    }
    .compliance-icon {
        width: 50px;
        height: 50px;
        margin-bottom: 0.5rem;
    }
    .compliance-icon i {
        font-size: 1.3rem;
    }
    .compliance-card h3 {
        font-size: 0.9rem;
        margin-bottom: 0.25rem;
    }
    .compliance-card p {
        font-size: 0.65rem;
        margin-bottom: 0.25rem;
    }
    .compliance-detail {
        font-size: 0.7rem;
        margin: 0.25rem 0;
    }
    .status {
        font-size: 0.6rem;
        padding: 0.2rem 0.6rem;
        margin-top: 0.25rem;
    }
    .capacity-statement {
        padding: 1rem;
        margin-bottom: 1.5rem;
    }
    .capacity-statement h2 {
        font-size: 1.3rem;
        margin-bottom: 1rem;
    }
    .capacity-content {
        grid-template-columns: 1fr;
        gap: 1rem;
    }
    .capacity-text h3 {
        font-size: 1rem;
        margin: 1rem 0 0.25rem;
    }
    .capacity-text p {
        font-size: 0.7rem;
        line-height: 1.4;
    }
    .capacity-stats {
        grid-template-columns: repeat(3, 1fr);
        gap: 0.5rem;
    }
    .stat {
        padding: 0.75rem;
    }
    .stat-number {
        font-size: 1.2rem;
    }
    .stat-label {
        font-size: 0.55rem;
    }
    .tender-info {
        padding: 1rem;
        margin: 1rem 0;
    }
    .tender-info h3 {
        font-size: 1rem;
        margin-bottom: 0.5rem;
    }
    .tender-info li {
        font-size: 0.65rem;
        padding: 0.3rem 0;
        padding-left: 1.2rem;
    }
    .document-request {
        padding: 1rem;
    }
    .document-request h2 {
        font-size: 1.2rem;
        margin-bottom: 0.5rem;
    }
    .document-request p {
        font-size: 0.7rem;
        margin-bottom: 1rem;
    }
    .document-buttons {
        flex-direction: column;
        gap: 0.5rem;
    }
    .document-buttons .btn-outline,
    .document-buttons .btn-primary {
        width: 100%;
        text-align: center;
        padding: 0.5rem;
        font-size: 0.7rem;
    }
}
@media (max-width: 480px) {
    .compliance-grid {
        gap: 0.5rem;
    }
    .compliance-card {
        padding: 0.75rem;
    }
    .compliance-icon {
        width: 40px;
        height: 40px;
    }
    .compliance-icon i {
        font-size: 1rem;
    }
    .compliance-card h3 {
        font-size: 0.8rem;
    }
    .compliance-card p {
        font-size: 0.55rem;
    }
    .compliance-detail {
        font-size: 0.6rem;
    }
    .status {
        font-size: 0.5rem;
        padding: 0.15rem 0.5rem;
    }
    .capacity-stats {
        grid-template-columns: repeat(2, 1fr);
        gap: 0.5rem;
    }
    .stat {
        padding: 0.5rem;
    }
    .stat-number {
        font-size: 1rem;
    }
    .stat-label {
        font-size: 0.5rem;
    }
    .tender-info li {
        font-size: 0.6rem;
    }
}

/* ============================================
   CHECKOUT PAGE
============================================ */
@media (max-width: 968px) {
    .checkout-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
    .order-summary {
        position: static;
    }
}
@media (max-width: 768px) {
    .form-row {
        grid-template-columns: 1fr;
        gap: 0;
    }
    .step-navigation {
        flex-direction: column;
    }
    .step-btn {
        width: 100%;
        text-align: center;
    }
    .step-circle {
        width: 40px;
        height: 40px;
    }
    .step-label {
        font-size: 0.65rem;
    }
}

/* ============================================
   AUTH PAGES (Login, Register, Forgot, Reset)
============================================ */
@media (max-width: 768px) {
    .auth-container {
        padding: 6rem 1rem 2rem;
    }
    .auth-card {
        padding: 1.25rem;
    }
    .auth-header h2 {
        font-size: 1.3rem;
    }
    .auth-header p {
        font-size: 0.7rem;
    }
}

/* ============================================
   ACCOUNT PAGE
============================================ */
@media (max-width: 768px) {
    .account-container {
        padding: 6rem 1rem 2rem;
    }
    .account-card {
        padding: 1rem;
    }
    .account-header h1 {
        font-size: 1.3rem;
    }
    .user-avatar {
        width: 50px;
        height: 50px;
    }
    .user-avatar i {
        font-size: 1.5rem;
    }
    .user-info {
        padding: 0.75rem;
        margin: 1rem 0;
    }
    .info-row {
        flex-direction: column;
        gap: 0.25rem;
        padding: 0.5rem 0;
    }
    .info-label {
        width: auto;
        font-size: 0.7rem;
    }
    .info-value {
        font-size: 0.75rem;
    }
    .tab-btn {
        padding: 0.35rem 0.7rem;
        font-size: 0.7rem;
    }
    .order-card {
        margin-bottom: 0.75rem;
    }
    .order-header {
        padding: 0.75rem;
    }
    .order-number {
        font-size: 0.8rem;
    }
    .order-body {
        padding: 0.75rem;
    }
    .order-item {
        gap: 0.5rem;
    }
    .item-image {
        width: 40px;
        height: 40px;
    }
    .item-name {
        font-size: 0.75rem;
    }
    .item-price {
        font-size: 0.7rem;
    }
    .summary-row {
        font-size: 0.7rem;
    }
    .btn-sm {
        padding: 0.3rem 0.75rem;
        font-size: 0.65rem;
    }
    .order-header {
        flex-direction: column;
        align-items: flex-start;
    }
    .order-item {
        flex-wrap: wrap;
    }
    .item-price {
        width: 100%;
        text-align: left;
        margin-top: 0.5rem;
    }
    .tabs {
        justify-content: center;
    }
    .tab-btn {
        padding: 0.5rem 1rem;
        font-size: 0.85rem;
    }
}

/* ============================================
   ORDER TIMELINE (horizontal on mobile)
============================================ */
@media (max-width: 767px) {
    .order-timeline {
        margin: 0.75rem 0;
        padding: 0.5rem;
        overflow-x: auto;
        overflow-y: hidden;
        white-space: nowrap;
        -webkit-overflow-scrolling: touch;
    }
    .timeline-steps {
        display: flex !important;
        flex-direction: row !important;
        justify-content: space-between !important;
        align-items: center !important;
        gap: 0.25rem !important;
        min-width: 100%;
        margin: 0 !important;
        padding: 0.5rem 0;
    }
    .timeline-steps::before {
        display: none !important;
    }
    .timeline-step {
        display: flex !important;
        flex-direction: column !important;
        align-items: center !important;
        justify-content: center !important;
        text-align: center !important;
        flex: 1 !important;
        min-width: 0 !important;
        padding: 0 0.25rem !important;
        gap: 0.25rem !important;
    }
    .timeline-icon {
        width: 30px !important;
        height: 30px !important;
        margin: 0 auto !important;
        display: flex !important;
        align-items: center !important;
        justify-content: center !important;
        border-width: 1.5px !important;
    }
    .timeline-icon i {
        font-size: 0.7rem !important;
    }
    .timeline-label {
        font-size: 0.55rem !important;
        font-weight: 500 !important;
        white-space: nowrap !important;
    }
    .timeline-date {
        font-size: 0.45rem !important;
        display: none !important;
    }
    .timeline-step.completed .timeline-icon {
        background: #4caf50 !important;
        border-color: #4caf50 !important;
    }
    .timeline-step.active .timeline-icon {
        background: var(--primary-blue) !important;
        border-color: var(--primary-blue) !important;
        animation: pulse 1s infinite !important;
    }
}
@media (max-width: 480px) {
    .timeline-icon {
        width: 25px !important;
        height: 25px !important;
    }
    .timeline-icon i {
        font-size: 0.6rem !important;
    }
    .timeline-label {
        font-size: 0.5rem !important;
    }
    .timeline-step {
        padding: 0 0.15rem !important;
    }
}

/* ============================================
   CART SIDEBAR
============================================ */
@media (max-width: 768px) {
    .cart-sidebar {
        width: 100%;
        right: -100%;
    }
    .cart-item {
        padding: 0.5rem;
    }
    .cart-item-info h4 {
        font-size: 0.8rem;
    }
    .cart-header {
        padding: 0.75rem;
    }
    .cart-header h3 {
        font-size: 1rem;
    }
    .cart-footer {
        padding: 0.75rem;
    }
    .cart-total {
        font-size: 0.9rem;
    }
}

/* ============================================
   CHAT WIDGET
============================================ */
@media (max-width: 768px) {
    .chat-container {
        width: calc(100vw - 2rem);
        right: 1rem;
        bottom: 80px;
    }
    .chat-button {
        width: 40px;
        height: 40px;
        bottom: 1rem;
        right: 1rem;
    }
    .chat-button i {
        font-size: 1.2rem;
    }
    .chat-container {
        height: 400px;
        bottom: 60px;
    }
}

/* ============================================
   FOOTER
============================================ */
@media (max-width: 768px) {
    .footer {
        padding: 1.5rem 0 1rem;
    }
    .footer-grid {
        display: grid;
        grid-template-columns: repeat(2, 1fr);
        gap: 1rem;
        text-align: left;
        margin-bottom: 1.5rem;
    }
    .footer-info {
        grid-column: span 2;
        text-align: center;
        margin-bottom: 0.5rem;
    }
    .footer-info p {
        font-size: 0.7rem;
        max-width: 80%;
        margin: 0 auto 0.5rem;
    }
    .footer-logo {
        font-size: 1rem;
        text-align: center;
    }
    .compliance-number {
        font-size: 0.6rem;
        padding: 0.25rem 0.5rem;
        display: inline-block;
    }
    .footer-links h4,
    .footer-services h4,
    .footer-contact h4 {
        font-size: 0.75rem;
        margin-bottom: 0.5rem;
        color: var(--primary-blue-light);
    }
    .footer-links ul,
    .footer-services ul,
    .footer-contact ul {
        list-style: none;
        padding: 0;
        margin: 0;
    }
    .footer-links li,
    .footer-services li,
    .footer-contact li {
        margin-bottom: 0.3rem;
        font-size: 0.65rem;
    }
    .footer-links a,
    .footer-services a {
        font-size: 0.65rem;
    }
    .footer-contact li {
        display: flex;
        align-items: center;
        gap: 0.4rem;
        flex-wrap: wrap;
    }
    .footer-contact i {
        width: 16px;
        font-size: 0.7rem;
    }
    .social-links {
        display: flex;
        gap: 0.5rem;
        margin-top: 0.5rem;
        justify-content: flex-start;
    }
    .social-links a {
        font-size: 0.9rem;
    }
    .footer-bottom {
        text-align: center;
        padding-top: 0.75rem;
        margin-top: 0.5rem;
        border-top: 1px solid rgba(255,255,255,0.1);
    }
    .footer-bottom p {
        font-size: 0.55rem;
    }
}
@media (max-width: 480px) {
    .footer {
        padding: 1rem 0 0.75rem;
    }
    .footer-grid {
        gap: 0.75rem;
        margin-bottom: 1rem;
    }
    .footer-info p {
        font-size: 0.65rem;
        max-width: 90%;
    }
    .footer-logo {
        font-size: 0.9rem;
    }
    .compliance-number {
        font-size: 0.55rem;
        padding: 0.2rem 0.4rem;
    }
    .footer-links h4,
    .footer-services h4,
    .footer-contact h4 {
        font-size: 0.7rem;
        margin-bottom: 0.35rem;
    }
    .footer-links li,
    .footer-services li,
    .footer-contact li {
        margin-bottom: 0.25rem;
        font-size: 0.6rem;
    }
    .footer-links a,
    .footer-services a {
        font-size: 0.6rem;
    }
    .footer-contact i {
        width: 14px;
        font-size: 0.65rem;
    }
    .social-links {
        gap: 0.4rem;
    }
    .social-links a {
        font-size: 0.8rem;
    }
    .footer-bottom p {
        font-size: 0.5rem;
    }
}
@media (max-width: 360px) {
    .footer-grid {
        grid-template-columns: 1fr 1fr;
        gap: 0.5rem;
    }
    .footer-info {
        grid-column: span 2;
    }
    .footer-links h4,
    .footer-services h4,
    .footer-contact h4 {
        font-size: 0.65rem;
    }
    .footer-links li,
    .footer-services li,
    .footer-contact li {
        font-size: 0.55rem;
    }
}

/* ============================================
   PAGE HEADER
============================================ */
@media (max-width: 768px) {
    .page-header {
        padding: 6rem 0 2rem;
        margin-top: 80px;
    }
    .page-header h1 {
        font-size: 1.8rem;
    }
    .page-header p {
        font-size: 0.85rem;
    }
}

/* ============================================
   ADMIN PAGES
============================================ */
@media (max-width: 768px) {
    .admin-container {
        padding: 6rem 1rem 2rem;
    }
    .admin-header {
        flex-direction: column;
        align-items: flex-start;
    }
    .admin-header h1 {
        font-size: 1.3rem;
    }
    .stat-card {
        padding: 0.5rem 0.75rem;
    }
    .stat-number {
        font-size: 1rem;
    }
    .stat-label {
        font-size: 0.6rem;
    }
    .orders-table,
    .commissions-table,
    .messages-table,
    .logs-table {
        font-size: 0.7rem;
    }
    th, td {
        padding: 0.5rem;
    }
    .action-btn {
        padding: 0.2rem 0.5rem;
        font-size: 0.65rem;
    }
    .filter-btn {
        padding: 0.3rem 0.8rem;
        font-size: 0.65rem;
    }
    .search-box input {
        padding: 0.35rem 0.6rem;
        font-size: 0.7rem;
    }
}

/* ============================================
   MODALS
============================================ */
@media (max-width: 768px) {
    .modal-content {
        padding: 1rem;
        width: 95%;
    }
    .modal-header h2 {
        font-size: 1.1rem;
    }
}

/* ============================================
   EXTRA SMALL (max-width: 360px)
============================================ */
@media (max-width: 360px) {
    .btn-primary, 
    .btn-outline {
        padding: 0.35rem 0.6rem;
        font-size: 0.65rem;
    }
    .hero-buttons .btn-primary,
    .hero-buttons .btn-outline {
        width: 140px;
        padding: 0.35rem 0.6rem;
        font-size: 0.65rem;
    }
}

/* ============================================
   LIGHTBOX (responsive)
============================================ */
@media (max-width: 768px) {
    .lightbox-content {
        flex-direction: column;
        max-width: 95%;
        max-height: 95%;
    }
    .lightbox-image {
        padding: 1rem;
    }
    .lightbox-image img {
        max-height: 40vh;
    }
    .lightbox-info {
        flex: 1;
        padding: 1rem;
        max-height: 40vh;
    }
    .art-price {
        font-size: 1.1rem;
    }
    .art-description {
        font-size: 0.8rem;
    }
}

/* Mobile - still row, just smaller */
@media (max-width: 768px) {
    .download-buttons {
        flex-direction: row;
        gap: 0.75rem;
        flex-wrap: wrap;
        justify-content: center;
    }
    
    .download-btn {
        padding: 0.35rem 0.8rem;
        font-size: 0.65rem;
    }
    
    .download-btn i {
        font-size: 0.7rem;
    }
}

@media (max-width: 480px) {
    .download-buttons {
        gap: 0.5rem;
    }
    
    .download-btn {
        padding: 0.3rem 0.7rem;
        font-size: 0.6rem;
    }
    
    .download-btn i {
        font-size: 0.65rem;
    }
}
