/* == Bardi Art Gallery - Theme RTL == */
/* ============================================= */

@import url('https://fonts.googleapis.com/css2?family=Cairo:wght@300;400;500;600;700;800;900&display=swap');

:root {
    --primary-color: #1a1a2e;
    --secondary-color: #eabb4e;
    --accent-color: #cfcb73;
    --gold-color: #f4a261;
    --text-color: #333;
    --text-light: #666;
    --light-bg: #f8f9fa;
    --white: #ffffff;
    --card-shadow: 0 10px 40px rgba(0,0,0,0.08);
    --card-shadow-hover: 0 20px 60px rgba(0,0,0,0.12);
    --transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    --border-radius: 20px;
    --font-family: 'Cairo', 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: var(--font-family);
    line-height: 1.8;
    color: var(--text-color);
    background-color: var(--white);
    overflow-x: hidden;
    direction: rtl;
    text-align: right;
}

.container {
    width: 100%;
    max-width: 1300px;
    margin: 0 auto;
    padding: 0 20px;
}

/* =============================================
   HEADER STYLES
============================================= */
header {
    background: linear-gradient(135deg, var(--primary-color) 0%, #16213e 100%);
    color: var(--white);
    padding: 18px 0;
    position: sticky;
    top: 0;
    z-index: 1000;
    box-shadow: 0 5px 30px rgba(0,0,0,0.15);
}

.header-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo {
    font-size: 28px;
    font-weight: 800;
    display: flex;
    align-items: center;
    text-decoration: none;
    color: var(--white);
    gap: 12px;
}

.logo img {
    height: 45px;
    width: auto;
}

.logo i {
    color: var(--secondary-color);
    font-size: 32px;
}

nav ul {
    display: flex;
    list-style: none;
    align-items: center;
    gap: 35px;
}

nav ul li a {
    color: var(--white);
    text-decoration: none;
    font-weight: 600;
    font-size: 15px;
    transition: var(--transition);
    position: relative;
    padding: 8px 0;
}

nav ul li a::after {
    content: '';
    position: absolute;
    bottom: 0;
    right: 0;
    width: 0;
    height: 3px;
    background: linear-gradient(90deg, var(--secondary-color), var(--accent-color));
    border-radius: 2px;
    transition: width 0.3s ease;
}

nav ul li a:hover {
    color: var(--secondary-color);
}

nav ul li a:hover::after {
    width: 100%;
}

/* Language Switcher */
.lang-switcher-dropdown .btn-link {
    color: var(--white);
    text-decoration: none;
    font-weight: 600;
    font-size: 15px;
    background: rgba(255,255,255,0.1);
    padding: 8px 15px;
    border-radius: 25px;
    transition: var(--transition);
}

.lang-switcher-dropdown .btn-link:hover {
    background: rgba(255,255,255,0.2);
}

.lang-switcher-dropdown .dropdown-menu {
    right: 0 !important;
    left: auto !important;
    border: none;
    box-shadow: var(--card-shadow);
    border-radius: 12px;
}

/* =============================================
   HERO SECTION - بدون طبقة شفافة
============================================= */
.hero {
    position: relative;
    min-height: 90vh;
    display: flex;
    align-items: center;
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
    padding: 120px 0;
}



.hero .container {
    position: relative;
    z-index: 2;
}

.hero-content {
    max-width: 650px;
}

.hero-text h1 {
    font-size: 3.5rem;
    font-weight: 800;
    color: var(--white);
    margin-bottom: 25px;
    line-height: 1.3;
    text-shadow: 0 4px 20px rgba(0,0,0,0.3);
}

.hero-text p {
    font-size: 1.25rem;
    color: rgba(255,255,255,0.9);
    margin-bottom: 35px;
    line-height: 1.9;
}

.btn-hero {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    background: linear-gradient(135deg, var(--secondary-color) 0%, var(--accent-color) 100%);
    color: var(--white);
    padding: 16px 40px;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 700;
    font-size: 1.1rem;
    transition: var(--transition);
    border: none;
    cursor: pointer;
    box-shadow: 0 10px 30px rgba(233, 69, 96, 0.4);
}

.btn-hero:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 40px rgba(233, 69, 96, 0.5);
    color: var(--white);
}

.hero-overlay {
    position: absolute;
    left: 5%;
    top: 50%;
    transform: translateY(-50%);
    width: 35%;
    z-index: 2;
}

.hero-overlay img {
    max-width: 100%;
    height: auto;
    filter: drop-shadow(0 20px 40px rgba(0,0,0,0.3));
    animation: float 6s ease-in-out infinite;
}

@keyframes float {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-20px); }
}

/* =============================================
   SECTION TITLES
============================================= */
.section-title {
    font-size: 2.5rem;
    font-weight: 800;
    color: var(--primary-color);
    text-align: center;
    margin-bottom: 60px;
    position: relative;
}

.section-title::after {
    content: '';
    position: absolute;
    bottom: -15px;
    left: 50%;
    transform: translateX(-50%);
    width: 80px;
    height: 4px;
    background: linear-gradient(90deg, var(--secondary-color), var(--accent-color));
    border-radius: 2px;
}

/* =============================================
   ABOUT SECTION - تصميم حديث
============================================= */
.about {
    padding: 120px 0;
    background: var(--white);
    position: relative;
    overflow: hidden;
}

.about::before {
    content: '';
    position: absolute;
    top: 0;
    right: 0;
    width: 40%;
    height: 100%;
    background: linear-gradient(135deg, rgba(233, 69, 96, 0.03) 0%, rgba(255, 107, 107, 0.05) 100%);
    clip-path: polygon(15% 0, 100% 0, 100% 100%, 0 100%);
}

.about-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: center;
    position: relative;
    z-index: 2;
}

.about-text {
    order: 1;
}

.about-text h2 {
    font-size: 2.5rem;
    font-weight: 800;
    color: var(--primary-color);
    margin-bottom: 25px;
    line-height: 1.4;
}

.about-text p {
    font-size: 1.1rem;
    line-height: 2;
    color: var(--text-light);
    margin-bottom: 30px;
}

.btn-about {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    background: linear-gradient(135deg, var(--primary-color) 0%, #16213e 100%);
    color: var(--white);
    padding: 15px 35px;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 600;
    font-size: 1rem;
    transition: var(--transition);
}

.btn-about:hover {
    transform: translateX(-10px);
    box-shadow: 0 10px 30px rgba(26, 26, 46, 0.3);
    color: var(--white);
}

.about-image {
    order: 2;
    position: relative;
}

.about-image img {
    width: 100%;
    border-radius: var(--border-radius);
    box-shadow: var(--card-shadow);
    transition: var(--transition);
}

.about-image img:hover {
    transform: scale(1.03) rotate(-1deg);
    box-shadow: var(--card-shadow-hover);
}

.about-image::before {
    content: '';
    position: absolute;
    top: -20px;
    right: -20px;
    width: 100%;
    height: 100%;
    border: 3px solid var(--secondary-color);
    border-radius: var(--border-radius);
    z-index: -1;
    opacity: 0.3;
}

.about-image-placeholder {
    width: 100%;
    height: 450px;
    background: linear-gradient(135deg, var(--secondary-color) 0%, var(--accent-color) 100%);
    border-radius: var(--border-radius);
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: var(--card-shadow);
}

.about-image-placeholder i {
    font-size: 6rem;
    color: rgba(255, 255, 255, 0.3);
}

/* =============================================
   CATEGORIES SECTION
============================================= */
.categories-section {
    padding: 120px 0;
    background: linear-gradient(180deg, var(--light-bg) 0%, var(--white) 100%);
}

.categories-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: 30px;
}

.category-card {
    background: var(--white);
    padding: 40px 30px;
    border-radius: var(--border-radius);
    text-align: center;
    box-shadow: var(--card-shadow);
    transition: var(--transition);
    position: relative;
    overflow: hidden;
}

.category-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 4px;
    background: linear-gradient(90deg, var(--secondary-color), var(--accent-color));
    transform: scaleX(0);
    transition: transform 0.4s ease;
}

.category-card:hover {
    transform: translateY(-15px);
    box-shadow: var(--card-shadow-hover);
}

.category-card:hover::before {
    transform: scaleX(1);
}

.category-icon {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, var(--secondary-color) 0%, var(--accent-color) 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 25px;
    transition: var(--transition);
}

.category-card:hover .category-icon {
    transform: scale(1.1) rotate(10deg);
}

.category-icon i {
    font-size: 2rem;
    color: var(--white);
}

.category-card h3 {
    font-size: 1.3rem;
    font-weight: 700;
    color: var(--primary-color);
    margin-bottom: 12px;
}

.category-card p {
    font-size: 0.95rem;
    color: var(--text-light);
    line-height: 1.7;
}

/* =============================================
   ARTWORKS SECTION
============================================= */
.artworks {
    padding: 120px 0;
    background: var(--white);
}

.artwork-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(320px, 1fr));
    gap: 35px;
}

.artwork-card {
    background: var(--white);
    border-radius: var(--border-radius);
    overflow: hidden;
    box-shadow: var(--card-shadow);
    transition: var(--transition);
}

.artwork-card:hover {
    transform: translateY(-15px);
    box-shadow: var(--card-shadow-hover);
}

.artwork-image {
    position: relative;
    height: 280px;
    overflow: hidden;
}

.artwork-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.6s ease;
}

.artwork-card:hover .artwork-image img {
    transform: scale(1.1);
}

.artwork-placeholder {
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    display: flex;
    align-items: center;
    justify-content: center;
}

.artwork-placeholder i {
    font-size: 5rem;
    color: rgba(255, 255, 255, 0.3);
}

.featured-badge {
    position: absolute;
    top: 15px;
    right: 15px;
    background: linear-gradient(135deg, var(--gold-color) 0%, #e76f51 100%);
    color: var(--white);
    width: 40px;
    height: 40px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1rem;
    box-shadow: 0 5px 15px rgba(244, 162, 97, 0.4);
}

.artwork-info {
    padding: 30px;
}

.artwork-info h3 {
    font-size: 1.25rem;
    font-weight: 700;
    color: var(--primary-color);
    margin-bottom: 12px;
}

.artwork-meta {
    display: flex;
    flex-wrap: wrap;
    gap: 15px;
    margin-bottom: 15px;
}

.artwork-meta span {
    font-size: 0.9rem;
    color: var(--text-light);
    display: flex;
    align-items: center;
    gap: 6px;
}

.artwork-meta i {
    color: var(--secondary-color);
}

.artwork-description {
    font-size: 0.95rem;
    color: var(--text-light);
    line-height: 1.7;
    margin-bottom: 20px;
}

.artwork-footer {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding-top: 20px;
    border-top: 1px solid #eee;
}

.artwork-price .price-label {
    display: block;
    font-size: 0.8rem;
    color: #999;
    margin-bottom: 3px;
}

.artwork-price .price-value {
    font-size: 1.5rem;
    font-weight: 800;
    color: var(--secondary-color);
}

.artwork-actions {
    display: flex;
    gap: 10px;
}

.artwork-actions .btn {
    width: 42px;
    height: 42px;
    padding: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    font-size: 1rem;
    transition: var(--transition);
}

.btn-whatsapp {
    background: #25d366;
    color: var(--white);
    border: none;
}

.btn-whatsapp:hover {
    background: #128c7e;
    color: var(--white);
    transform: scale(1.1);
}

.btn-primary {
    background: linear-gradient(135deg, var(--secondary-color), var(--accent-color));
    border: none;
    color: var(--white);
}

.btn-primary:hover {
    transform: scale(1.1);
}

.btn-outline {
    background: transparent;
    border: 2px solid var(--secondary-color);
    color: var(--secondary-color);
}

.btn-outline:hover {
    background: var(--secondary-color);
    color: var(--white);
}

/* =============================================
   CUSTOM ARTWORK SECTION
============================================= */
.custom-artwork-section {
    padding: 120px 0;
    background: linear-gradient(135deg, var(--light-bg) 0%, #e9ecef 100%);
    position: relative;
    overflow: hidden;
}

.custom-bg-pattern {
    position: absolute;
    top: 0;
    right: 0;
    width: 50%;
    height: 100%;
    background: radial-gradient(circle at 20% 50%, rgba(233, 69, 96, 0.05) 0%, transparent 50%);
    pointer-events: none;
}

.section-badge {
    display: inline-block;
    background: linear-gradient(135deg, var(--secondary-color) 0%, var(--accent-color) 100%);
    color: var(--white);
    padding: 10px 25px;
    border-radius: 30px;
    font-size: 0.9rem;
    font-weight: 700;
    margin-bottom: 20px;
}

.section-subtitle {
    font-size: 1.15rem;
    color: var(--text-light);
    max-width: 600px;
    margin: 0 auto 60px;
    text-align: center;
}

.custom-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: center;
    position: relative;
    z-index: 2;
}

.custom-illustration {
    position: relative;
}

.custom-image-wrapper {
    position: relative;
    border-radius: var(--border-radius);
    overflow: hidden;
    box-shadow: var(--card-shadow);
}

.custom-main-image {
    width: 100%;
    height: auto;
    display: block;
}

.floating-card {
    position: absolute;
    background: var(--white);
    padding: 15px 25px;
    border-radius: 12px;
    box-shadow: var(--card-shadow);
    display: flex;
    align-items: center;
    gap: 12px;
    animation: float 4s ease-in-out infinite;
}

.floating-card i {
    color: var(--secondary-color);
    font-size: 1.3rem;
}

.floating-card span {
    font-weight: 700;
    color: var(--primary-color);
    font-size: 0.95rem;
}

.card-1 { top: 30px; left: -30px; animation-delay: 0s; }
.card-2 { bottom: 100px; right: -40px; animation-delay: 1.5s; }
.card-3 { bottom: 30px; left: 30px; animation-delay: 3s; }

.custom-info {
    position: relative;
}

.custom-title {
    font-size: 2.2rem;
    font-weight: 800;
    color: var(--primary-color);
    margin-bottom: 20px;
    line-height: 1.4;
}

.custom-description {
    font-size: 1.1rem;
    line-height: 1.9;
    color: var(--text-light);
    margin-bottom: 35px;
}

.custom-steps {
    margin-bottom: 40px;
}

.step-item {
    display: flex;
    align-items: flex-start;
    gap: 20px;
    margin-bottom: 20px;
    padding: 20px;
    background: var(--white);
    border-radius: 15px;
    box-shadow: 0 5px 20px rgba(0,0,0,0.05);
    transition: var(--transition);
}

.step-item:hover {
    transform: translateX(-10px);
    box-shadow: var(--card-shadow);
}

.step-number {
    width: 45px;
    height: 45px;
    background: linear-gradient(135deg, var(--secondary-color), var(--accent-color));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--white);
    font-weight: 800;
    font-size: 1.2rem;
    flex-shrink: 0;
}

.step-text h4 {
    margin: 0 0 5px;
    font-size: 1.05rem;
    font-weight: 700;
    color: var(--primary-color);
}

.step-text p {
    margin: 0;
    font-size: 0.9rem;
    color: var(--text-light);
}

.custom-actions {
    display: flex;
    gap: 15px;
    flex-wrap: wrap;
}

.btn-custom-primary {
    background: linear-gradient(135deg, var(--secondary-color) 0%, var(--accent-color) 100%);
    color: var(--white);
    padding: 18px 40px;
    border-radius: 50px;
    font-weight: 700;
    font-size: 1.05rem;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    gap: 12px;
    transition: var(--transition);
    box-shadow: 0 10px 30px rgba(233, 69, 96, 0.3);
}

.btn-custom-primary:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 40px rgba(233, 69, 96, 0.4);
    color: var(--white);
}

.btn-custom-whatsapp {
    background: #25d366;
    color: var(--white);
    padding: 18px 40px;
    border-radius: 50px;
    font-weight: 700;
    font-size: 1.05rem;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    gap: 12px;
    transition: var(--transition);
}

.btn-custom-whatsapp:hover {
    background: #128c7e;
    color: var(--white);
    transform: translateY(-5px);
}

.paper-types-section {
    margin-top: 60px;
    text-align: center;
}

.paper-title {
    font-size: 1.2rem;
    font-weight: 700;
    color: var(--primary-color);
    margin-bottom: 25px;
}

.paper-title i {
    color: var(--secondary-color);
    margin-left: 10px;
}

.paper-types-grid {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 15px;
}

.paper-type-item {
    background: var(--white);
    padding: 12px 25px;
    border-radius: 30px;
    display: flex;
    align-items: center;
    gap: 10px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.06);
    transition: var(--transition);
}

.paper-type-item:hover {
    transform: translateY(-5px);
    box-shadow: var(--card-shadow);
}

.paper-type-item i {
    color: var(--secondary-color);
}

.paper-type-item span {
    font-weight: 600;
    color: var(--primary-color);
}

/* =============================================
   SIZES SECTION
============================================= */
.sizes-section {
    padding: 120px 0;
    background: var(--white);
}

.sizes-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(160px, 1fr));
    gap: 25px;
}

.size-card {
    background: linear-gradient(135deg, var(--primary-color) 0%, #16213e 100%);
    color: var(--white);
    padding: 35px 25px;
    border-radius: var(--border-radius);
    text-align: center;
    transition: var(--transition);
    position: relative;
    overflow: hidden;
}

.size-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, var(--secondary-color), var(--accent-color));
    opacity: 0;
    transition: opacity 0.4s ease;
}

.size-card:hover {
    transform: translateY(-10px);
}

.size-card:hover::before {
    opacity: 0.1;
}

.size-icon {
    margin-bottom: 20px;
    position: relative;
    z-index: 2;
}

.size-icon i {
    font-size: 2.5rem;
    color: var(--secondary-color);
}

.size-card h3 {
    font-size: 1.1rem;
    font-weight: 700;
    margin-bottom: 10px;
    position: relative;
    z-index: 2;
}

.size-dimensions {
    font-size: 0.95rem;
    color: rgba(255,255,255,0.7);
    margin-bottom: 15px;
    position: relative;
    z-index: 2;
}

.size-price {
    font-size: 1.5rem;
    font-weight: 800;
    color: var(--secondary-color);
    position: relative;
    z-index: 2;
}

/* =============================================
   CONTACT CTA SECTION
============================================= */
.contact-cta {
    padding: 100px 0;
    background: linear-gradient(135deg, var(--primary-color) 0%, #16213e 100%);
    color: var(--white);
    text-align: center;
    position: relative;
    overflow: hidden;
}

.contact-cta::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -20%;
    width: 60%;
    height: 200%;
    background: radial-gradient(circle, rgba(233, 69, 96, 0.1) 0%, transparent 70%);
    pointer-events: none;
}

.contact-cta h2 {
    font-size: 2.5rem;
    font-weight: 800;
    margin-bottom: 15px;
    position: relative;
    z-index: 2;
}

.contact-cta p {
    font-size: 1.2rem;
    color: rgba(255,255,255,0.7);
    margin-bottom: 35px;
    position: relative;
    z-index: 2;
}

.cta-buttons {
    display: flex;
    justify-content: center;
    gap: 20px;
    flex-wrap: wrap;
    position: relative;
    z-index: 2;
}

.btn-whatsapp {
    background: #25d366;
    color: var(--white);
    padding: 18px 40px;
    border-radius: 50px;
    font-weight: 700;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    gap: 10px;
    transition: var(--transition);
}

.btn-whatsapp:hover {
    background: #128c7e;
    color: var(--white);
    transform: translateY(-5px);
}

.btn-outline-light {
    background: transparent;
    border: 2px solid var(--white);
    color: var(--white);
    padding: 16px 38px;
    border-radius: 50px;
    font-weight: 700;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    gap: 10px;
    transition: var(--transition);
}

.btn-outline-light:hover {
    background: var(--white);
    color: var(--primary-color);
}

/* =============================================
   FOOTER
============================================= */
footer {
    background: linear-gradient(135deg, var(--primary-color), #0f0f1a);
    color: var(--white);
    padding: 80px 0 25px;
}

.footer-content {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 50px;
    margin-bottom: 50px;
}

.footer-column h3 {
    font-size: 1.3rem;
    font-weight: 700;
    margin-bottom: 25px;
    position: relative;
    padding-bottom: 12px;
}

.footer-column h3::after {
    content: '';
    position: absolute;
    bottom: 0;
    right: 0;
    width: 50px;
    height: 3px;
    background: linear-gradient(90deg, var(--secondary-color), var(--accent-color));
    border-radius: 2px;
}

.footer-column p {
    color: rgba(255,255,255,0.7);
    line-height: 1.8;
    margin-bottom: 20px;
}

.footer-column ul {
    list-style: none;
}

.footer-column ul li {
    margin-bottom: 15px;
}

.footer-column ul li a {
    color: rgba(255,255,255,0.7);
    text-decoration: none;
    transition: var(--transition);
    display: inline-block;
}

.footer-column ul li a:hover {
    color: var(--secondary-color);
    transform: translateX(-8px);
}

.social-links {
    display: flex;
    gap: 12px;
    margin-top: 25px;
}

.social-links a {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 45px;
    height: 45px;
    background: rgba(255,255,255,0.1);
    border-radius: 50%;
    color: var(--white);
    text-decoration: none;
    transition: var(--transition);
}

.social-links a:hover {
    background: var(--secondary-color);
    transform: translateY(-5px);
}

.copyright {
    text-align: center;
    padding-top: 30px;
    border-top: 1px solid rgba(255,255,255,0.1);
    font-size: 0.95rem;
    color: rgba(255,255,255,0.5);
}

/* =============================================
   RESPONSIVE DESIGN
============================================= */
@media (max-width: 1200px) {
    .hero-overlay {
        width: 30%;
    }
    
    .custom-content {
        gap: 60px;
    }
}

@media (max-width: 992px) {
    .about-content,
    .custom-content {
        grid-template-columns: 1fr;
        gap: 50px;
    }
    
    .about-image {
        order: -1;
    }
    
    .custom-illustration {
        order: -1;
    }
    
    .hero-overlay {
        display: none;
    }
    
    .hero-text h1 {
        font-size: 2.8rem;
    }
    
    .section-title {
        font-size: 2rem;
    }
    
    .about-text h2,
    .custom-title {
        font-size: 1.8rem;
    }
    
    .floating-card {
        display: none;
    }
}

@media (max-width: 768px) {
    header {
        padding: 15px 0;
    }
    
    .header-content {
        flex-direction: column;
        gap: 15px;
    }
    
    nav ul {
        flex-wrap: wrap;
        justify-content: center;
        gap: 20px;
    }
    
    .hero {
        min-height: 70vh;
        padding: 80px 0;
    }
    
    .hero-text h1 {
        font-size: 2.2rem;
    }
    
    .hero-text p {
        font-size: 1.1rem;
    }
    
    .about,
    .artworks,
    .custom-artwork-section,
    .sizes-section {
        padding: 80px 0;
    }
    
    .artwork-grid {
        grid-template-columns: 1fr;
    }
    
    .custom-actions {
        flex-direction: column;
    }
    
    .btn-custom-primary,
    .btn-custom-whatsapp {
        width: 100%;
        justify-content: center;
    }
    
    .contact-cta h2 {
        font-size: 1.8rem;
    }
    
    .cta-buttons {
        flex-direction: column;
        align-items: center;
    }
}

@media (max-width: 576px) {
    .hero-text h1 {
        font-size: 1.8rem;
    }
    
    .section-title {
        font-size: 1.6rem;
    }
    
    .categories-grid {
        grid-template-columns: 1fr 1fr;
    }
    
    .category-card {
        padding: 25px 20px;
    }
    
    .sizes-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 15px;
    }
    
    .size-card {
        padding: 25px 15px;
    }
}

/* =============================================
   ADMIN THEME - Not Affected
============================================= */
.wrapper, .sidebar, .main-content, .top-navbar, .page-content {
    all: initial;
}
