/* ============================================
   STYLE.CSS - ANTONIO ARTWORKS
   Main Stylesheet (Desktop only)
============================================ */

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

:root {
    --primary-blue: #1f1fff;
    --primary-blue-light: #3877ff;
    --primary-blue-extra-light: #3d7aff13;
    --primary-blue-cyan: #42587a;
    --primary-blue-dark: #0c2045;
    --blue-shade: #8b92a9;
    --white: #FFFFFF;
    --off-white: #F8F9FA;
    --light-gray: #F0F2F5;
    --medium-gray: #E4E6E9;
    --dark-gray: #2C3E50;
    --dark-bg: #1A2A3A;
    --text-dark: #081328;
    --text-light: #6C757D;
    --text-muted: #95A5A6;
    --shadow-sm: 0 2px 10px rgba(0,0,0,0.05);
    --shadow-md: 0 5px 20px rgba(0,0,0,0.08);
    --shadow-lg: 0 10px 30px rgba(0,0,0,0.1);
    --transition: all 0.3s ease;
}

body {
    font-family: 'Inter', sans-serif;
    background-color: var(--white);
    color: rgb(155, 157, 160);
    line-height: 1.6;
    overflow-x: hidden;
}

.container {
    max-width: 1280px;
    margin: 0 auto;
    padding: 0 2rem;
}

/* ============================================
   TYPOGRAPHY
============================================ */
h1, h2, h3, h4, h5, h6 {
    font-weight: 700;
    line-height: 1.2;
    margin-bottom: 1rem;
    color: var(--text-dark);
}

h1 {
    font-size: 4rem;
    letter-spacing: -0.02em;
}

h2 {
    font-size: 2.5rem;
    margin-bottom: 1.5rem;
}

h3 {
    font-size: 1.5rem;
}

.section-title {
    text-align: center;
    font-size: 2.8rem;
    margin-bottom: 1rem;
    color: var(--text-dark);
}

.section-subtitle {
    text-align: center;
    color: var(--text-light);
    margin-bottom: 3rem;
    font-size: 1.1rem;
}

.gold-text {
    color: var(--primary-blue);
}

/* ============================================
   NAVIGATION
============================================ */
.navbar {
    position: fixed;
    top: 0;
    width: 100%;
    height: 150px;
    background: rgba(26, 42, 58, 0.9);
    backdrop-filter: blur(10px);
    z-index: 1000;
    padding: 1rem 0;
    border-bottom: 1px solid rgba(212, 175, 55, 0.2);
}

.nav-container {
    max-width: 1280px;
    margin: 0 auto;
    padding: 0 2rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo-img {
    height: 106px;
}

.logo a {
    text-decoration: none;
    font-size: 1.5rem;
    font-weight: 800;
    letter-spacing: 1px;
}

.logo-gold {
    color: var(--primary-blue-light);
}

.logo-white {
    color: var(--white);
}

.nav-links {
    display: flex;
    gap: 1rem;
    align-items: center;
    margin-right: 50px;
}

.nav-links a {
    color: rgba(255, 255, 255, 0.9);
    text-decoration: none;
    font-weight: 500;
    transition: var(--transition);
    position: relative;
}

.nav-links a::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--primary-blue-light);
    transition: var(--transition);
}

.nav-links a:hover::after,
.nav-links a.active::after {
    width: 100%;
}

.nav-links a:hover,
.nav-links a.active {
    color: var(--primary-blue-light);
}

.nav-icons {
    display: flex;
    gap: 1.5rem;
    align-items: center;
}

.nav-icons a {
    color: #d0ccd9;
    font-size: 1.2rem;
    transition: var(--transition);
    position: relative;
}

.nav-icons a:hover {
    color: var(--primary-blue-light);
}

.cart-count {
    position: absolute;
    top: -8px;
    right: -12px;
    background: var(--primary-blue-light);
    color: var(--white);
    font-size: 0.7rem;
    padding: 2px 6px;
    border-radius: 50%;
    font-weight: bold;
}

.mobile-menu-btn {
    display: none;
    background: none;
    border: none;
    color: white;
    font-size: 1.5rem;
    cursor: pointer;
}

/* ============================================
   MOBILE MENU - SLIDE FROM RIGHT
============================================ */

/* Overlay */
.mobile-menu-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.7);
    z-index: 1002;
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
}

.mobile-menu-overlay.active {
    opacity: 1;
    visibility: visible;
}

/* Mobile Menu Container */
.mobile-menu {
    position: fixed;
    top: 0;
    right: -100%;
    width: 280px;
    height: 100%;
    background: var(--dark-bg);
    z-index: 1003;
    transition: right 0.3s ease;
    display: flex;
    flex-direction: column;
    box-shadow: -5px 0 20px rgba(0, 0, 0, 0.3);
}

.mobile-menu.active {
    right: 0;
}

/* Mobile Menu Header */
.mobile-menu-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1.2rem 1.5rem;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    background: var(--dark-bg);
}

.mobile-menu-close {
    background: none;
    border: none;
    color: var(--white);
    font-size: 1.3rem;
    cursor: pointer;
    transition: var(--transition);
    width: auto;
    padding: 0;
    margin: 0;
}

.mobile-menu-close:hover {
    color: var(--primary-blue-light);
    transform: rotate(90deg);
}

/* Mobile Menu Content */
.mobile-menu-content {
    flex: 1;
    display: flex;
    flex-direction: column;
    padding: 1.5rem;
    gap: 0.5rem;
}

.mobile-menu-content a {
    color: rgba(255, 255, 255, 0.8);
    text-decoration: none;
    font-size: 1rem;
    font-weight: 500;
    padding: 0.7rem 1rem;
    transition: var(--transition);
    text-align: right;
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}

.mobile-menu-content a:hover {
    color: var(--primary-blue-light);
    padding-right: 1.5rem;
    background: rgba(255, 255, 255, 0.05);
}

.mobile-menu-content .mobile-menu-login {
    margin-top: 1rem;
    background: var(--primary-blue);
    color: var(--white);
    border-radius: 8px;
    text-align: center;
}

.mobile-menu-content .mobile-menu-login:hover {
    background: var(--primary-blue-dark);
    padding-right: 1rem;
    color: var(--white);
}

/* ============================================
   HERO SECTION
============================================ */
.hero {
    height: 450px;
    min-height: 500px;
    background: linear-gradient(135deg, var(--dark-bg) 0%, #1E3A4D 100%);
    background-size: cover;
    background-position: center;
    display: flex;
    align-items: center;
    justify-content: space-between;
    text-align: center;
    position: relative;
    margin-top: 150px;
    padding: 0 5%;
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0,0,0,0.3);
}

.hero-content {
    max-width: 50%;
    padding: 2rem;
    z-index: 1;
    position: relative;
}

.hero-title {
    font-size: 4.5rem;
    margin-bottom: 1.5rem;
    color: var(--white);
}

.hero-subtitle {
    font-size: 1.2rem;
    color: rgba(255,255,255,0.9);
    margin-bottom: 2rem;
}

/* Hero Images Container */
.hero-images-container {
    position: relative;
    top: 0;
    right: 0;
    width: 50%;
    height: 100%;
    display: flex;
    gap: 1rem;
    z-index: 2;
    overflow: hidden;
    pointer-events: none;
}

.hero-image-left {
    flex: 1;
    height: 100%;
    overflow: hidden;
}

.hero-image-left img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    opacity: 0.75;
    mix-blend-mode: normal;
    filter: brightness(1.05) contrast(1.02);
}

.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: 12px;
}

.hero-images-container > div:last-child {
    flex: 1;
    height: 100%;
    overflow: hidden;
    border-radius: 12px;
    position: relative;
}

.hero-images-container > div:last-child img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    mix-blend-mode: normal;
    opacity: 0.85;
    filter: brightness(1.02) contrast(1.01);
    transition: all 0.3s ease;
}

.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.3));
    pointer-events: none;
    border-radius: 12px;
}

/* ============================================
   BUTTONS
============================================ */
.btn-primary, .btn-outline {
    display: inline-block;
    padding: 1rem 2rem;
    text-decoration: none;
    font-weight: 600;
    border-radius: 50px;
    transition: var(--transition);
    cursor: pointer;
    border: none;
    font-size: 1rem;
}

.btn-primary {
    background: var(--primary-blue);
    color: var(--white);
    margin-right: 1rem;
}

.btn-primary:hover {
    background: var(--primary-blue-dark);
    transform: translateY(-2px);
    box-shadow: var(--shadow-md);
}

.btn-outline {
    border: 2px solid var(--primary-blue);
    color: var(--primary-blue);
    background: transparent;
}

.btn-outline:hover {
    background: var(--primary-blue);
    color: var(--white);
    transform: translateY(-2px);
    box-shadow: var(--shadow-md);
}

/* ============================================
   FEATURED CATEGORIES
============================================ */
.featured-categories {
    padding: 6rem 0;
    background: var(--white);
}

.categories-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2rem;
}

.category-card {
    background: var(--white);
    border-radius: 12px;
    overflow: hidden;
    transition: var(--transition);
    cursor: pointer;
    box-shadow: var(--shadow-sm);
    border: 1px solid rgba(0,0,0,0.05);
}

.category-card:hover {
    transform: translateY(-10px);
    box-shadow: var(--shadow-lg);
}

.category-image {
    height: 350px;
    overflow: hidden;
    background: var(--light-gray);
}

.category-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.category-card:hover .category-image img {
    transform: scale(1.05);
}

.category-info {
    padding: 1.5rem;
}

.category-info h3 {
    color: var(--primary-blue-cyan);
    margin-bottom: 0.5rem;
}

.category-info p {
    color: var(--text-light);
    margin-bottom: 1rem;
}

.category-link {
    color: var(--primary-blue-light);
    text-decoration: none;
    font-weight: 600;
    transition: var(--transition);
}

.category-link:hover {
    letter-spacing: 1px;
}

/* ============================================
   QUALITY SECTION
============================================ */
.quality-section {
    padding: 6rem 0;
    background: var(--light-gray);
}

.quality-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 3rem;
    text-align: center;
}

.quality-item {
    padding: 2rem;
    background: var(--white);
    border-radius: 16px;
    box-shadow: var(--shadow-sm);
    transition: var(--transition);
}

.quality-item:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-md);
}

.quality-icon {
    width: 80px;
    height: 80px;
    margin: 0 auto 1.5rem;
    background: rgba(184, 134, 11, 0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: var(--transition);
}

.quality-icon i {
    font-size: 2.5rem;
    color: var(--primary-blue-cyan);
}

.quality-item:hover .quality-icon {
    transform: scale(1.1);
    background: rgba(184, 134, 11, 0.2);
}

.quality-item h3 {
    font-size: 1.3rem;
    margin-bottom: 0.5rem;
    color: var(--primary-blue-cyan);
}

.quality-item p {
    color: var(--text-light);
    font-size: 0.95rem;
}

/* ============================================
   FEATURED ARTWORK
============================================ */
.featured-artwork {
    padding: 6rem 0;
    background: var(--white);
}

.featured-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
}

.featured-text h2 {
    font-size: 2.8rem;
    margin-bottom: 0.5rem;
    color: var(--text-dark);
}

.featured-subtitle {
    color: var(--primary-blue-cyan);
    font-size: 1.2rem;
    margin-bottom: 1.5rem;
}

.featured-details {
    display: flex;
    gap: 1.5rem;
    margin: 1.5rem 0;
    flex-wrap: wrap;
}

.featured-details span {
    color: var(--text-light);
    font-size: 0.9rem;
}

.featured-details i {
    color: var(--blue-shade);
    margin-right: 0.5rem;
}

.featured-image img {
    width: 100%;
    border-radius: 12px;
    box-shadow: var(--shadow-lg);
}

.featured-buttons {
    display: flex;
    text-align: center;
}

/* ============================================
   TESTIMONIALS
============================================ */
.testimonials {
    padding: 6rem 0;
    background: var(--light-gray);
}

.testimonials-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
}

.testimonial-card {
    background: var(--white);
    padding: 2rem;
    border-radius: 12px;
    transition: var(--transition);
    box-shadow: var(--shadow-sm);
}

.testimonial-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-md);
}

.testimonial-content i {
    color: var(--primary-blue-light);
    font-size: 2rem;
    margin-bottom: 1rem;
    opacity: 0.5;
}

.testimonial-content p {
    font-style: italic;
    margin-bottom: 1.5rem;
    color: var(--text-light);
}

.testimonial-author h4 {
    margin-bottom: 0.25rem;
    color: var(--primary-blue-cyan);
}

.testimonial-author p {
    font-size: 0.85rem;
    color: var(--text-muted);
}

/* ============================================
   FOOTER
============================================ */
.footer {
    background: var(--dark-bg);
    padding: 4rem 0 2rem;
    border-top: 1px solid rgba(212, 175, 55, 0.2);
    color: rgba(255,255,255,0.8);
}

.footer .logo-gold {
    color: var(--primary-blue-light);
}

.footer .logo-white {
    color: var(--white);
}

.footer-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 3rem;
    margin-bottom: 3rem;
}

.footer-logo {
    font-size: 1.5rem;
    font-weight: 800;
    margin-bottom: 1rem;
}

.footer-info p {
    color: rgba(255,255,255,0.7);
    margin-bottom: 1rem;
}

.compliance-number {
    background: rgba(212, 175, 55, 0.1);
    padding: 0.5rem 1rem;
    border-radius: 8px;
    display: inline-block;
    font-size: 0.9rem;
    color: rgba(255,255,255,0.8);
}

.compliance-number strong {
    color: var(--primary-blue-light);
}

.footer-links h4, .footer-services h4, .footer-contact h4 {
    color: var(--primary-blue-light);
    margin-bottom: 1rem;
}

.footer-links ul, .footer-services ul, .footer-contact ul {
    list-style: none;
}

.footer-links li, .footer-services li, .footer-contact li {
    margin-bottom: 0.75rem;
}

.footer-links a, .footer-services a {
    color: rgba(255,255,255,0.7);
    text-decoration: none;
    transition: var(--transition);
}

.footer-links a:hover, .footer-services a:hover {
    color: var(--primary-blue-cyan);
    padding-left: 5px;
}

.footer-contact li {
    color: rgba(255,255,255,0.7);
    display: flex;
    align-items: center;
    gap: 0.75rem;
}

.footer-contact i {
    color: var(--primary-blue-light);
    width: 20px;
}

.social-links {
    display: flex;
    gap: 1rem;
    margin-top: 1.5rem;
}

.social-links a {
    color: rgba(255,255,255,0.7);
    font-size: 1.2rem;
    transition: var(--transition);
}

.social-links a:hover {
    color: var(--primary-blue);
    transform: translateY(-3px);
}

.footer-bottom {
    text-align: center;
    padding-top: 2rem;
    border-top: 1px solid rgba(255,255,255,0.1);
    color: rgba(255,255,255,0.6);
    font-size: 0.9rem;
}

/* ============================================
   CART SIDEBAR
============================================ */
.cart-sidebar {
    position: fixed;
    top: 0;
    right: -400px;
    width: 400px;
    height: 100vh;
    background: var(--white);
    box-shadow: var(--shadow-lg);
    z-index: 1001;
    transition: right 0.3s ease;
    display: flex;
    flex-direction: column;
}

.cart-sidebar.open {
    right: 0;
}

.cart-header {
    padding: 1.5rem;
    border-bottom: 1px solid rgba(0,0,0,0.1);
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.cart-header h3 {
    margin: 0;
    color: var(--primary-blue);
}

.close-cart {
    background: none;
    border: none;
    color: var(--text-dark);
    font-size: 1.5rem;
    cursor: pointer;
    transition: var(--transition);
}

.close-cart:hover {
    color: var(--primary-blue);
}

.cart-items {
    flex: 1;
    overflow-y: auto;
    padding: 1rem;
}

.empty-cart {
    text-align: center;
    padding: 3rem;
    color: var(--text-light);
}

.empty-cart i {
    font-size: 3rem;
    margin-bottom: 1rem;
    opacity: 0.5;
}

.cart-item {
    display: flex;
    gap: 1rem;
    padding: 1rem;
    border-bottom: 1px solid rgba(0,0,0,0.1);
    margin-bottom: 1rem;
}

.cart-item-info {
    flex: 1;
}

.cart-item-info h4 {
    font-size: 1rem;
    margin-bottom: 0.25rem;
    color: var(--text-dark);
}

.cart-item-info .price {
    color: var(--primary-blue-light);
    font-weight: 600;
}

.cart-item-actions {
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.cart-item-actions button {
    background: var(--light-gray);
    border: 1px solid rgba(0,0,0,0.1);
    color: var(--text-dark);
    width: 30px;
    height: 30px;
    border-radius: 5px;
    cursor: pointer;
    transition: var(--transition);
}

.cart-item-actions button:hover {
    background: var(--primary-blue);
    color: var(--white);
}

.cart-item-actions .quantity {
    font-weight: 600;
    min-width: 30px;
    text-align: center;
}

.remove-item {
    background: none !important;
    color: #dc3545 !important;
    font-size: 1.2rem;
}

.cart-footer {
    padding: 1.5rem;
    border-top: 1px solid rgba(0,0,0,0.1);
}

.cart-total {
    display: flex;
    justify-content: space-between;
    font-size: 1.2rem;
    font-weight: 700;
    margin-bottom: 1rem;
    color: var(--text-dark);
}

.checkout-btn {
    width: 100%;
    text-align: center;
    margin: 0;
}

/* ============================================
   CHAT WIDGET
============================================ */
.chat-widget {
    position: fixed;
    bottom: 2rem;
    right: 2rem;
    z-index: 1000;
}

.chat-button {
    background: var(--primary-blue-light);
    width: 60px;
    height: 60px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: var(--transition);
    box-shadow: var(--shadow-md);
    position: relative;
}

.chat-button i {
    font-size: 1.8rem;
    color: var(--white);
}

.chat-button span {
    position: absolute;
    right: 70px;
    background: var(--text-dark);
    padding: 0.5rem 1rem;
    border-radius: 20px;
    white-space: nowrap;
    font-size: 0.85rem;
    opacity: 0;
    pointer-events: none;
    transition: var(--transition);
    color: var(--white);
}

.chat-button:hover span {
    opacity: 1;
}

.chat-button:hover {
    transform: scale(1.1);
}

.chat-container {
    position: absolute;
    bottom: 80px;
    right: 0;
    width: 350px;
    height: 500px;
    background: var(--white);
    border-radius: 12px;
    box-shadow: var(--shadow-lg);
    display: none;
    flex-direction: column;
    overflow: hidden;
    border: 1px solid rgba(0,0,0,0.1);
}

.chat-container.open {
    display: flex;
}

.chat-header {
    background: var(--primary-blue-light);
    padding: 1rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.chat-header h3 {
    margin: 0;
    color: var(--white);
    font-size: 1.1rem;
}

.close-chat {
    background: none;
    border: none;
    color: var(--white);
    font-size: 1.2rem;
    cursor: pointer;
}

.chat-messages {
    flex: 1;
    padding: 1rem;
    overflow-y: auto;
    display: flex;
    flex-direction: column;
    gap: 1rem;
    background: var(--light-gray);
}

.message {
    display: flex;
    flex-direction: column;
    max-width: 80%;
}

.message.received {
    align-self: flex-start;
}

.message.sent {
    align-self: flex-end;
}

.message-content {
    padding: 0.75rem;
    border-radius: 12px;
    background: var(--white);
    color: var(--text-dark);
    box-shadow: var(--shadow-sm);
}

.message.sent .message-content {
    background: var(--text-light);
    color: var(--white);
}

.message-time {
    font-size: 0.7rem;
    color: var(--text-muted);
    margin-top: 0.25rem;
}

.chat-input {
    padding: 1rem;
    border-top: 1px solid rgba(0,0,0,0.1);
    display: flex;
    gap: 0.5rem;
    background: var(--white);
}

.chat-input input {
    flex: 1;
    padding: 0.75rem;
    background: var(--light-gray);
    border: 1px solid rgba(0,0,0,0.1);
    border-radius: 20px;
    color: var(--text-dark);
    font-family: inherit;
}

.chat-input input:focus {
    outline: none;
    border-color: var(--primary-blue);
}

.chat-input button {
    background: var(--primary-blue-cyan);
    border: none;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    cursor: pointer;
    transition: var(--transition);
}

.chat-input button:hover {
    transform: scale(1.05);
}

.chat-input button i {
    color: var(--white);
    font-size: 1rem;
}

/* ============================================
   PAGE HEADER
============================================ */
.page-header {
    padding: 8rem 0 4rem;
    background: linear-gradient(135deg, var(--dark-bg) 0%, #1E3A4D 100%);
    text-align: center;
    margin-top: 150px;
}

.page-header h1 {
    font-size: 3rem;
    margin-bottom: 1rem;
    color: rgb(209, 211, 212);
}

.page-header p {
    color: var(--text-light);
}

/* ============================================
   SERVICE SECTIONS
============================================ */
.service-section {
    padding: 5rem 0;
    border-bottom: 1px solid rgba(0,0,0,0.05);
    background: var(--white);
}

.service-section:nth-child(even) {
    background: var(--light-gray);
}

.service-header {
    text-align: center;
    margin-bottom: 3rem;
}

.service-header h2 {
    font-size: 2.5rem;
    color: var(--text-dark);
}

.service-header p {
    color: var(--text-light);
    font-size: 1.1rem;
}

.service-gallery {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 2rem;
    margin-bottom: 2rem;
}

.artwork-card {
    background: var(--white);
    border-radius: 12px;
    overflow: hidden;
    transition: var(--transition);
    box-shadow: var(--shadow-sm);
    border: 1px solid rgba(0,0,0,0.05);
}

.artwork-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-lg);
}

.artwork-image {
    position: relative;
    height: 400px;
    overflow: hidden;
    background: var(--light-gray);
}

.artwork-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.artwork-card:hover .artwork-image img {
    transform: scale(1.05);
}

.add-to-cart-btn {
    position: absolute;
    bottom: -50px;
    left: 0;
    right: 0;
    background: var(--primary-blue);
    color: var(--white);
    border: none;
    padding: 0.75rem;
    font-weight: 600;
    cursor: pointer;
    transition: bottom 0.3s ease;
    font-family: inherit;
}

.artwork-card:hover .add-to-cart-btn {
    bottom: 0;
}

.artwork-info {
    padding: 1.5rem;
}

.artwork-info h3 {
    font-size: 1.2rem;
    margin-bottom: 0.5rem;
    color: var(--text-dark);
}

.artwork-info p {
    color: var(--text-light);
    font-size: 0.9rem;
    margin-bottom: 0.5rem;
}

.price {
    color: var(--primary-blue-light);
    font-weight: 700;
    font-size: 1.1rem;
}

.view-more {
    text-align: center;
    margin-top: 2rem;
}

/* ============================================
   PRICE TABLES
============================================ */
.price-table {
    margin-bottom: 3rem;
    overflow-x: auto;
}

.price-table h3 {
    margin: 2rem 0 1rem;
    color: var(--primary-blue);
}

.price-table table {
    width: 100%;
    border-collapse: collapse;
    background: var(--white);
    border-radius: 12px;
    overflow: hidden;
    box-shadow: var(--shadow-sm);
}

.price-table th,
.price-table td {
    padding: 1rem;
    text-align: left;
    border-bottom: 1px solid rgba(0,0,0,0.05);
}

.price-table th {
    background: var(--primary-blue);
    color: var(--white);
    font-weight: 600;
}

.price-table td {
    color: var(--text-dark);
}

.add-custom-btn {
    background: var(--primary-blue);
    color: var(--white);
    border: none;
    padding: 0.5rem 1rem;
    border-radius: 5px;
    cursor: pointer;
    font-weight: 600;
    transition: var(--transition);
}

.add-custom-btn:hover {
    background: var(--primary-blue-dark);
    transform: translateY(-2px);
}

/* ============================================
   COMMISSION FORM
============================================ */
.commission-form {
    background: var(--light-gray);
    padding: 2rem;
    border-radius: 12px;
    margin-top: 3rem;
    border: 1px solid rgba(0,0,0,0.05);
}

.commission-form h3 {
    margin-bottom: 1.5rem;
    color: var(--primary-blue);
}

.form-group {
    margin-bottom: 1.5rem;
}

.form-group label {
    display: block;
    margin-bottom: 0.5rem;
    color: var(--text-dark);
    font-weight: 500;
}

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 0.75rem;
    background: var(--white);
    border: 1px solid rgba(0,0,0,0.1);
    border-radius: 8px;
    color: var(--text-dark);
    font-family: inherit;
    transition: var(--transition);
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--primary-blue);
}

.form-group input[type="file"] {
    padding: 0.5rem;
    background: var(--white);
}

/* ============================================
   CORPORATE GRID
============================================ */
.corporate-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
}

.corporate-card {
    background: var(--white);
    padding: 2rem;
    border-radius: 12px;
    text-align: center;
    transition: var(--transition);
    box-shadow: var(--shadow-sm);
    border: 1px solid rgba(0,0,0,0.05);
}

.corporate-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-lg);
}

.corporate-icon {
    width: 80px;
    height: 80px;
    margin: 0 auto 1rem;
    background: rgba(184, 134, 11, 0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.corporate-icon i {
    font-size: 2.5rem;
    color: var(--primary-blue);
}

.corporate-card h3 {
    font-size: 1.2rem;
    margin-bottom: 0.5rem;
    color: var(--text-dark);
}

.corporate-card p {
    color: var(--text-light);
    font-size: 0.9rem;
    margin-bottom: 1rem;
}

.corporate-card .price {
    display: block;
    margin-bottom: 1rem;
    font-size: 1.1rem;
}

.corporate-card .add-to-cart-btn {
    position: static;
    width: 100%;
    padding: 0.75rem;
    margin-top: 1rem;
    border-radius: 8px;
}

/* ============================================
   PUBLIC PROJECTS
============================================ */
.public-projects-content {
    text-align: center;
}

.compliance-badge {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    background: rgba(184, 134, 11, 0.1);
    padding: 0.75rem 1.5rem;
    border-radius: 50px;
    margin-bottom: 2rem;
}

.compliance-badge i {
    color: var(--primary-blue);
    font-size: 1.2rem;
}

.projects-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
    margin-top: 2rem;
}

.project-card {
    background: var(--white);
    padding: 2rem;
    border-radius: 12px;
    transition: var(--transition);
    box-shadow: var(--shadow-sm);
    border: 1px solid rgba(0,0,0,0.05);
}

.project-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-md);
}

.project-icon {
    width: 70px;
    height: 70px;
    margin: 0 auto 1rem;
    background: rgba(184, 134, 11, 0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.project-icon i {
    font-size: 2rem;
    color: var(--primary-blue);
}

.project-card h3 {
    margin-bottom: 0.5rem;
    color: var(--primary-blue);
}

.project-card p {
    color: var(--text-light);
}

/* ============================================
   GALLERY
============================================ */
.gallery-image img {
    opacity: 1 !important;
}

.gallery-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(320px, 1fr));
    gap: 2rem;
    padding: 2rem 0;
}

.gallery-item {
    background: var(--white);
    border-radius: 12px;
    overflow: hidden;
    transition: var(--transition);
    box-shadow: var(--shadow-sm);
    border: 1px solid rgba(0,0,0,0.05);
}

.gallery-item:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-lg);
}

.gallery-image {
    position: relative;
    height: 350px;
    overflow: hidden;
    background: var(--light-gray);
}

.gallery-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.gallery-item:hover .gallery-image img {
    transform: scale(1.05);
}

.gallery-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0,0,0,0.7);
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 1rem;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.gallery-item:hover .gallery-overlay {
    opacity: 1;
}

.gallery-overlay button {
    padding: 0.75rem 1.25rem;
    border: none;
    border-radius: 8px;
    cursor: pointer;
    font-weight: 600;
    transition: all 0.3s ease;
}

.view-details {
    background: var(--primary-blue-light);
    color: var(--off-white);
}

.add-to-cart-gallery {
    background: var(--white);
    color: var(--dark-bg);
}

.gallery-overlay button:hover {
    transform: scale(1.05);
}

.gallery-info {
    padding: 1.5rem;
}

.gallery-info h3 {
    font-size: 1.2rem;
    margin-bottom: 0.5rem;
    color: var(--text-dark);
}

.gallery-info p {
    color: var(--text-light);
    font-size: 0.9rem;
    margin-bottom: 0.5rem;
}

.price-status {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 0.5rem;
}

/* ============================================
   GALLERY FILTER SECTION
============================================ */
.filter-section {
    display: flex;
    justify-content: center;
    gap: 1rem;
    flex-wrap: wrap;
    margin-top: 1rem;
}

.filter-btn {
    padding: 0.5rem 1.5rem;
    background: var(--medium-gray);
    border: 1px solid var(--light-gray);
    border-radius: 25px;
    color: var(--white);
    cursor: pointer;
    transition: all 0.3s ease;
}

.filter-btn:hover,
.filter-btn.active {
    background: var(--white);
    color: var(--dark-bg);
    border-color: black;
}

.gallery-search {
    max-width: 400px;
    margin: 1rem auto 2rem;
}

.gallery-search input {
    width: 100%;
    padding: 0.75rem 1rem;
    background: var(--medium-gray);
    border: 1px solid var(--light-gray);
    border-radius: 50px;
    color: var(--dark-gray);
    font-family: inherit;
}

.gallery-search input:focus {
    outline: none;
    border-color: black;
}

/* ============================================
   LIGHTBOX
============================================ */
.lightbox {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0,0,0,0.95);
    z-index: 2000;
    align-items: center;
    justify-content: center;
    cursor: pointer;
}

.lightbox-content {
    background: var(--dark-gray);
    max-width: 90%;
    max-height: 90%;
    width: auto;
    border-radius: 12px;
    overflow: hidden;
    position: relative;
    display: flex;
    flex-direction: row;
    cursor: default;
}

.lightbox-image {
    flex: 1;
    padding: 1.5rem;
    display: flex;
    align-items: center;
    justify-content: center;
    min-width: 0;
}

.lightbox-image img {
    max-width: 100%;
    max-height: 60vh;
    width: auto;
    height: auto;
    object-fit: contain;
    border-radius: 8px;
}

.lightbox-info {
    flex: 0.8;
    padding: 1.5rem;
    overflow-y: auto;
    max-height: 80vh;
}

.close-lightbox {
    position: absolute;
    top: 0.5rem;
    right: 1rem;
    background: none;
    border: none;
    color: var(--white);
    font-size: 2rem;
    cursor: pointer;
    z-index: 2;
    transition: var(--transition);
}

.close-lightbox:hover {
    color: var(--primary-blue);
    transform: scale(1.1);
}

.art-details {
    color: var(--primary-blue);
    margin-bottom: 0.5rem;
    font-size: 0.9rem;
}

.art-description {
    color: var(--text-light);
    margin-bottom: 1rem;
    line-height: 1.5;
    font-size: 0.9rem;
}

.art-price {
    font-size: 1.3rem;
    font-weight: 700;
    color: var(--primary-blue-light);
    margin-bottom: 1rem;
}
/* ============================================
   PAGINATION
============================================ */
.pagination-container {
    margin-top: 2rem;
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 0.5rem;
    flex-wrap: wrap;
}

.pagination-btn {
    padding: 0.5rem 1rem;
    background: var(--white);
    border: 1px solid var(--medium-gray);
    border-radius: 8px;
    cursor: pointer;
    transition: all 0.3s ease;
    font-weight: 500;
    color: var(--text-dark);
}

.pagination-btn:hover:not(:disabled) {
    background: var(--primary-blue);
    color: white;
    border-color: var(--primary-blue);
}

.pagination-btn.active {
    background: var(--primary-blue);
    color: white;
    border-color: var(--primary-blue);
}

.pagination-btn:disabled {
    opacity: 0.5;
    cursor: not-allowed;
}

.pagination-ellipsis {
    padding: 0.5rem 0.75rem;
    color: var(--text-muted);
}

.pagination-info {
    text-align: center;
    margin-top: 1rem;
    font-size: 0.85rem;
    color: var(--text-muted);
}

/* ============================================
   ADMIN BADGES
============================================ */
.admin-badge {
    background: var(--primary-blue-light);
    color: white;
    font-size: 0.7rem;
    font-weight: bold;
    padding: 2px 6px;
    border-radius: 50%;
    margin-left: 0.5rem;
    display: inline-block;
    min-width: 18px;
    text-align: center;
}

.item-badge {
    background: #ff9800;
    color: white;
    font-size: 0.65rem;
    font-weight: bold;
    padding: 2px 5px;
    border-radius: 50%;
    margin-left: 0.5rem;
    display: inline-block;
    min-width: 16px;
    text-align: center;
}

/* ============================================
   CONFIRMATION MODAL
============================================ */
.confirm-modal {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0,0,0,0.8);
    backdrop-filter: blur(4px);
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 10002;
}

.confirm-modal-content {
    background: var(--white);
    border-radius: 20px;
    max-width: 380px;
    width: 90%;
    padding: 2rem;
    text-align: center;
    animation: modalFadeIn 0.2s ease;
    border: 1px solid var(--medium-gray);
    box-shadow: var(--shadow-lg);
}

.confirm-modal-content i {
    font-size: 3rem;
    color: #dc3545;
    margin-bottom: 1rem;
}

.confirm-modal-content h3 {
    color: var(--text-dark);
    margin-bottom: 0.5rem;
}

.confirm-modal-content p {
    color: var(--text-light);
    margin-bottom: 1.5rem;
}

.confirm-buttons {
    display: flex;
    gap: 1rem;
    justify-content: center;
}

.confirm-buttons button {
    padding: 0.6rem 1.5rem;
    border-radius: 8px;
    cursor: pointer;
    font-weight: 500;
    transition: all 0.2s ease;
}

.confirm-buttons .confirm-yes {
    background: #dc3545;
    color: white;
    border: none;
}

.confirm-buttons .confirm-yes:hover {
    background: #c82333;
}

.confirm-buttons .confirm-no {
    background: var(--white);
    color: var(--text-dark);
    border: 1px solid var(--medium-gray);
}

.confirm-buttons .confirm-no:hover {
    background: var(--light-gray);
}

/* ============================================
   STATUS BADGES
============================================ */
.status-badge {
    padding: 0.25rem 0.75rem;
    border-radius: 20px;
    font-size: 0.7rem;
    font-weight: 600;
}

.status-badge.available {
    background: #e8f5e9;
    color: #4caf50;
}

.status-badge.sold-out {
    background: #ffebee;
    color: #f44336;
}

.status-badge.on-hold {
    background: #fff3e0;
    color: #ff9800;
}

.art-status {
    font-size: 0.9rem;
    margin-bottom: 1rem;
    padding: 0.25rem 0.75rem;
    border-radius: 20px;
}

/* ============================================
   DRAG AND DROP
============================================ */
.artwork-admin-card {
    cursor: grab;
    transition: all 0.2s ease;
}

.artwork-admin-card:active {
    cursor: grabbing;
}

.artwork-admin-card.dragging {
    opacity: 0.5;
    cursor: grabbing;
}

.artwork-admin-card.drag-over {
    border: 2px dashed var(--primary-blue);
    transform: scale(1.02);
}

.drag-handle {
    cursor: grab;
    color: var(--text-muted);
    margin-right: 0.5rem;
    font-size: 1.2rem;
}

.drag-handle:active {
    cursor: grabbing;
}

.save-order-btn {
    background: var(--primary-blue);
    color: white;
    padding: 0.75rem 1.5rem;
    border: none;
    border-radius: 8px;
    cursor: pointer;
    font-weight: 600;
    margin-bottom: 1rem;
    display: inline-block;
}

.save-order-btn:hover {
    background: var(--primary-blue-dark);
}

/* ============================================
   MODAL
============================================ */
.modal {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.8);
    display: none;
    align-items: center;
    justify-content: center;
    z-index: 10000;
}

.modal.active {
    display: flex;
}

.modal-content {
    background: var(--white) !important;
    border-radius: 20px;
    max-width: 500px;
    width: 90%;
    max-height: 85vh;
    overflow-y: auto;
    padding: 2rem;
    position: relative;
    border: 1px solid var(--medium-gray);
    box-shadow: var(--shadow-lg);
}

.modal-content h2,
.modal-content h3,
.modal-content p {
    color: var(--text-dark);
}

.modal-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 1.5rem;
    padding-bottom: 1rem;
    border-bottom: 1px solid var(--medium-gray);
}

.close-modal {
    background: none;
    border: none;
    font-size: 1.5rem;
    cursor: pointer;
    color: var(--text-muted);
}

.close-modal:hover {
    color: var(--primary-blue);
}

/* ============================================
   ANIMATIONS
============================================ */
@keyframes modalFadeIn {
    from {
        opacity: 0;
        transform: scale(0.95);
    }
    to {
        opacity: 1;
        transform: scale(1);
    }
}

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Privacy Policy Modal Styles */
#privacyModal {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0,0,0,0.8);
    z-index: 10000;
    align-items: center;
    justify-content: center;
}

#privacyModal.active {
    display: flex;
}

#privacyModal .modal-content {
    background: var(--white);
    border-radius: 20px;
    max-width: 700px;
    width: 90%;
    max-height: 80vh;
    overflow-y: auto;
    padding: 1.5rem;
    position: relative;
}

#privacyModal .modal-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 1rem;
    padding-bottom: 0.5rem;
    border-bottom: 1px solid var(--medium-gray);
}

#privacyModal .modal-header h2 {
    font-size: 1.3rem;
    margin: 0;
}

#privacyModal .close-modal {
    background: none;
    border: none;
    font-size: 1.5rem;
    cursor: pointer;
    color: var(--text-dark);
}

#privacyModal .close-modal:hover {
    color: var(--primary-blue);
}

#privacyModal h3 {
    font-size: 1rem;
    margin-top: 1rem;
    margin-bottom: 0.5rem;
    color: var(--primary-blue);
}

#privacyModal p, #privacyModal li {
    font-size: 0.85rem;
    line-height: 1.5;
    color: var(--text-light);
}

#privacyModal ul {
    padding-left: 1.5rem;
    margin: 0.5rem 0;
}

/* ============================================
   DOWNLOAD BUTTONS - SMALL, FLEX ROW
============================================ */
.download-buttons {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 1rem;
    margin: 1.5rem auto 0;
    flex-direction: row;
}

.download-btn {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.4rem 1rem;
    font-size: 0.75rem;
    cursor: pointer;
    transition: var(--transition);
    border-radius: 30px;
}

.download-btn i {
    font-size: 0.8rem;
}

.download-btn:hover {
    transform: translateY(-2px);
}
