/* Reset and Base Styles */
*, *::before, *::after {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

:root {
    --primary-color: #d97706;
    --primary-dark: #b45309;
    --secondary-color: #1f2937;
    --text-color: #374151;
    --text-light: #6b7280;
    --bg-light: #f9fafb;
    --bg-white: #ffffff;
    --bg-yellow: #fffbeb;
    --border-color: #e5e7eb;
    --shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1), 0 2px 4px -1px rgba(0, 0, 0, 0.06);
    --shadow-lg: 0 10px 15px -3px rgba(0, 0, 0, 0.1), 0 4px 6px -2px rgba(0, 0, 0, 0.05);
    --transition: all 0.3s ease;
}

ol {
    margin-top: -1.25rem;
    margin-bottom: 1.5rem;
    list-style-position: inside;
    list-style-type:square;

}
html {
  font-size: 16px;
    scroll-behavior: smooth;
}

body {
  	font-family: system-ui, sans-serif;
    line-height: 1.6;
    color: var(--text-color);
    background-color: var(--bg-white);
}

.container {
    width: 100%;
    max-width: 1280px;
    margin: 0 auto;
    padding: 0 1.5rem;
}

.section {
    padding: 4rem 0;
}

/* Typography */
h1, h2, h3, h4 {
    color: var(--secondary-color);
    line-height: 1.2;
}

h1 {
      font-size: 4rem;
  font-weight: 400;
 
}

h2 {
    font-size: 3rem;
    font-weight: 400;
    margin-bottom: 1rem;
}

h3 {
    font-size: 1.5rem;
    font-weight: 400;
}

p {  font-size: 1rem;
  line-height: 1.6;
  font-weight: 400;
    color: var(--text-color);
}

a {
    text-decoration: none;
    color: inherit;
}

/* Buttons */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 0.75rem 1.5rem;
    font-size: 1rem;
    font-weight: 500;
    border-radius: 0.5rem;
    border: none;
    cursor: pointer;
    transition: var(--transition);
}

.btn-primary {
    background-color: var(--primary-color);
    color: white !important; 
}

.btn-primary:hover {
    background-color: var(--primary-dark);
}

.btn-secondary {
    background-color: #f3f4f6;
    color: var(--secondary-color);
}

.btn-secondary:hover {
    background-color: #e5e7eb;
}

.btn-outline {
    background-color: transparent;
    border: 2px solid white;
    color: white;
}

.btn-outline:hover {
    background-color: white;
    color: var(--secondary-color);
}

.btn-lg {
    padding: 0.5rem 2rem;
    font-size: 1.125rem;

}
.btn-blur {
    backdrop-filter: blur(5px);
    background-color: rgba(255, 255, 255, 0.2);
}
.btn-full {
    width: 100%;
}

/* Section Header */
.section-header {
    text-align: center;
    margin-bottom: 3rem;
}

.section-header p {
    font-size: 1.25rem;
    color: var(--text-light);
    max-width: 42rem;
    margin: 0 auto;
}

/* Header */
.header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    background-color: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(8px);
    z-index: 1000;
    border-bottom: 1px solid var(--border-color);
}

.nav {
    display: flex;
    align-items: center;
    justify-content: space-between;
    height: 5rem;
}

.logo {
   font-size: clamp(1.4rem, 4vw, 1.5rem);
    font-weight: bold;
    /* text-shadow: 1px 1px 1px #6b6161; */
    color: var(--primary-color);
}

.nav-links {
    display: flex;
    align-items: center;
    gap: 2rem;
    list-style: none;
}

.nav-links a {
    color: var(--text-color);
    font-weight: 500;
    transition: var(--transition);
}

.nav-links a:hover {
    color: var(--primary-color);
}


.mobile-menu-btn {
    display: none;
    flex-direction: column;
    gap: 5px;
    background: none;
    border: none;
    cursor: pointer;
    padding: 0.5rem;
}

.mobile-menu-btn span {
    width: 25px;
    height: 2px;
    background-color: var(--text-color);
    transition: var(--transition);
}

/* Hero Section */
.hero {
    position: relative;
    height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
}

.hero-bg {
    position: absolute;
    inset: 0;
    z-index: 0;
}

.hero-bg img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.hero-overlay {
    position: absolute;
    inset: 0;
    background-color: rgba(0, 0, 0, 0.5);
}

.hero-content {
    position: relative;
    z-index: 1;
    text-align: center;
    color: white;
}

.hero-content h1 {
    color: white;
    max-width: 56rem;
    margin: 0 auto 1.5rem;
}

.hero-content p {
    color: #ffffff;
    font-size: 1.25rem;
    max-width: 42rem;
    margin: 0 auto 2rem;
}

.hero-buttons {
    display: flex;
    gap: 1rem;
    justify-content: center;
    flex-wrap: wrap;
}

.scroll-indicator {
    position: absolute;
    bottom: 2rem;
    left: 50%;
    transform: translateX(-50%);
    z-index: 1;
}

.scroll-box {
    width: 1.5rem;
    height: 2.5rem;
    border: 2px solid white;
    border-radius: 1rem;
    display: flex;
    justify-content: center;
    padding-top: 0.25rem;
}

.scroll-dot {
    width: 4px;
    height: 8px;
    background-color: white;
    border-radius: 2px;
    animation: bounce 1.5s infinite;
}

@keyframes bounce {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(8px); }
}

/* Services Section */
.services {
    background-color: var(--bg-light);
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 2rem;
}

.service-card {
    background-color: var(--bg-white);
    padding: 2rem;
    border-radius: 0.75rem;
    box-shadow: var(--shadow);
    transition: var(--transition);
}

.service-card:hover {
    box-shadow: var(--shadow-lg);
    transform: translateY(-4px);
}

.service-icon {
    width: 4rem;
    height: 4rem;
    background-color: #fef3c7;
    border-radius: 0.5rem;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1.5rem;
    color: var(--primary-color);
}

.service-card h3 {
    margin-bottom: 0.75rem;
}

.service-card p {
    color: var(--text-light);
    font-size: 0.9375rem;
}

/* Projects Section */
.projects-slider {
    display: flex;
    gap: 1rem;
}

.project-card {
    padding: 0 0.5rem;
}

.project-image {
    position: relative;
    aspect-ratio: 4/3;
    overflow: hidden;
    border-radius: 0.5rem;
    cursor: pointer;
}

.project-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: var(--transition);
}

.project-card:hover .project-image img {
    transform: scale(1.05);
}

.project-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(to top, rgba(0, 0, 0, 0.8) 0%, rgba(0, 0, 0, 0.4) 50%, transparent 100%);
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    padding: 2rem;
    color: white;
}

.project-category {
    display: inline-block;
    padding: 0.25rem 0.75rem;
    background-color: var(--primary-color);
    border-radius: 9999px;
    font-size: 0.75rem;
    margin-bottom: 0.75rem;
    width: fit-content;
}

.project-overlay h3 {
    color: white;
    margin-bottom: 0.5rem;
}

.project-overlay p {
    color: #d1d5db;
    font-size: 1rem;
}

/* Slick Carousel Custom Styles */
.slick-prev,
.slick-next {
    z-index: 10;
}

.slick-prev {
    left: -3rem;
}

.slick-next {
    right: -3rem;
}

.slick-prev::before,
.slick-next::before {
    display: none;
}

/* About/Pricing Section */
.about {
    background-color: var(--bg-light);
}

.pricing-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
    max-width: 72rem;
    margin: 0 auto;
}

.pricing-card {
    background-color: var(--bg-white);
    padding: 2rem;
    border-radius: 0.75rem;
    box-shadow: var(--shadow-lg);
    position: relative;
    text-align: center;
}

.pricing-card.featured {
    border: 2px solid var(--primary-color);
    transform: scale(1.05);
}

.popular-badge {
    position: absolute;
    top: -0.75rem;
    left: 50%;
    transform: translateX(-50%);
    background-color: var(--primary-color);
    color: white;
    padding: 0.25rem 1rem;
    border-radius: 9999px;
    font-size: 0.875rem;
}

.pricing-card h3 {
    margin-bottom: 0.5rem;
}

.pricing-desc {
    color: var(--text-light);
    font-size: 0.875rem;
    margin-bottom: 1.5rem;
}

.pricing-price {
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--primary-color);
    margin-bottom: 0.25rem;
}

.pricing-unit {
    font-size: 0.875rem;
    color: var(--text-light);
    font-weight: 400;
}

.pricing-features {
    list-style: none;
    margin: 1.5rem 0;
    text-align: left;
}

.pricing-features li {
    display: flex;
    align-items: flex-start;
    gap: 0.75rem;
    padding: 0.5rem 0;
    font-size: 0.9375rem;
    color: var(--text-color);
}

.pricing-features .check {
    color: var(--primary-color);
    font-weight: bold;
}

/* Blog Section */
.blog-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
    padding: 2rem 0 2rem 0;
}

.blog-card {
    background-color: var(--bg-white);
    border-radius: 0.75rem;
    overflow: hidden;
    box-shadow: var(--shadow);
    transition: var(--transition);
}
.blog-card a {
    display: flex;
    flex-direction: column;
    height: 100%; /* Чтобы все карточки в ряду были одной высоты */
    text-decoration: none; /* Убираем подчеркивание ссылки */
    color: inherit;
}
.blog-card:hover {
    box-shadow: var(--shadow-lg);
    transform: translateY(-4px);
}

.blog-image {
    aspect-ratio: 16/10;
    overflow: hidden;
}

.blog-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: var(--transition);
}

.blog-card:hover .blog-image img {
    transform: scale(1.1);
}

.blog-content {
    padding: 1.5rem;
    display: flex;
    flex-direction: column;
    flex-grow: 1; /* Этот блок заполнит все свободное место */
    padding: 15px; /* Настройте отступы под себя */
}
.blog-content h3{
    color:oklch(0.145 0 0);
}

.blog-meta {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-bottom: 0.75rem;
    font-size: 0.75rem;
}

.blog-category {
    background-color: #fef3c7;
    color: #92400e;
    padding: 0.25rem 0.75rem;
    border-radius: 9999px;
}

.blog-date {
    color: var(--text-light);
}

.blog-content h3 {
    font-size: 1.125rem;
    margin-bottom: 0.75rem;
    line-height: 1.4;
    transition: var(--transition);
}

.blog-card:hover .blog-content h3 {
    color: var(--primary-color);
}

.blog-content p {
    color: oklch(0.145 0 0);
    font-size: 0.875rem;
    margin-bottom: 1rem;
    display: -webkit-box;
    -webkit-line-clamp: 3;
    -webkit-box-orient: vertical;
    overflow: hidden;
    flex-grow: 1; 
    margin-bottom: 15px; /* Отступ от текста до кнопки */
}

.read-more {
    color: var(--primary-color);
    font-weight: 500;
    font-size: 0.875rem;
    transition: var(--transition);
}

.read-more:hover {
    color: var(--primary-dark);
}

/* Social Media Section */
.social-media {
    background-color: var(--bg-white);
}

.social-links {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 1.5rem;
    flex-wrap: wrap;
}

.social-link {
    width: 4rem;
    height: 4rem;
    background-color: #f3f4f6;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--text-color);
    transition: var(--transition);
}

.social-link:hover {
    background-color: white;
    color: white;
    transform: scale(1.1);
}

.social-cta {
    text-align: center;
    margin-top: 3rem;
    color: var(--text-light);
}

.social-cta span {
    color: var(--primary-color);
    font-weight: 600;
}

/* Contact Section */
.contact-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
}

.contact-info h3 {
    margin-bottom: 1.5rem;
}

.contact-item {
    display: flex;
    align-items: flex-start;
    gap: 1rem;
    margin-bottom: 1.5rem;
}

.contact-icon {
    width: 3rem;
    height: 3rem;
    background-color: #fef3c7;
    border-radius: 0.5rem;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--primary-color);
    flex-shrink: 0;
}

.contact-label {
    color: var(--text-light);
    font-size: 0.875rem;
    margin-bottom: 0.25rem;
}

.contact-value {
    font-size: 1.125rem;
    color: var(--secondary-color);
}

.business-hours {
    background-color: var(--bg-light);
    padding: 1.5rem;
    border-radius: 0.5rem;
    margin-top: 2rem;
}

.business-hours h4 {
    margin-bottom: 1rem;
}

.hours-row {
    display: flex;
    justify-content: space-between;
    padding: 0.5rem 0;
    border-bottom: 1px solid var(--border-color);
    color: var(--text-color);
}

.hours-row:last-child {
    border-bottom: none;
}

/* Contact Form */
.contact-form {
    background-color: var(--bg-light);
    padding: 2rem;
    border-radius: 0.75rem;
}

.form-group {
    margin-bottom: 1.5rem;
}

.form-group label {
    display: block;
    font-weight: 500;
    margin-bottom: 0.5rem;
    color: var(--secondary-color);
}

.form-group input,
.form-group textarea {
    width: 100%;
    padding: 0.75rem 1rem;
    border: 1px solid var(--border-color);
    border-radius: 0.5rem;
    font-size: 1rem;
    font-family: inherit;
    transition: var(--transition);
}

.form-group input:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--primary-color);
    box-shadow: 0 0 0 3px rgba(217, 119, 6, 0.1);
}

.form-group textarea {
    resize: vertical;
}

/* Footer */
.tel-link {
    color: var(--primary-color);
}
.footer {
    background-color: #111827;
    color: #9ca3af;
    padding: 3rem 0 1.5rem;
}

.footer-grid {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr;
    gap: 3rem;
    margin-bottom: 2rem;
}

.footer-logo {
    font-size: 1.5rem;
    font-weight: 600;
    color: var(--primary-color);
    margin-bottom: 1rem;
}

.footer-brand p {
    color: #9ca3af;
    margin-bottom: 0.5rem;
}

.footer-license {
    font-size: 0.875rem;
    color: #6b7280;
}

.footer-links h4 {
    color: white;
    margin-bottom: 1rem;
    font-weight: 600;
}

.footer-links ul {
    list-style: none;
}

.footer-links li {
    margin-bottom: 0.5rem;
}

.footer-links a,
.footer-links span {
    color: oklch(87.2% 0.01 258.338);
    transition: var(--transition);
}

.footer-links a:hover {
    color: var(--primary-color);
}

.footer-bottom {
    border-top: 1px solid #374151;
    padding-top: 1.5rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.footer-legal {
    display: flex;
    gap: 1.5rem;
}

.footer-legal a {
    color: #6b7280;
    font-size: 0.875rem;
    transition: var(--transition);
}

.footer-legal a:hover {
    color: var(--primary-color);
}

/* Mobile Menu Active State */
.nav-links.active {
    display: flex;
}

/* Responsive Styles */
@media (max-width: 1024px) {
    .services-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .pricing-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .pricing-card.featured {
        transform: none;
    }
    
    .blog-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 768px) {
    .nav-links {
        position: fixed;
        top: 5rem;
        left: 0;
        right: 0;
        background-color: white;
        flex-direction: column;
        padding: 2rem;
        gap: 1.5rem;
        display: none;
        box-shadow: var(--shadow-lg);
    }
    
    .nav-links.active {
        display: flex;
    }
    
    .mobile-menu-btn {
        display: flex;
    }
    
    .mobile-menu-btn.active span:nth-child(1) {
        transform: rotate(45deg) translate(5px, 5px);
    }
    
    .mobile-menu-btn.active span:nth-child(2) {
        opacity: 0;
    }
    
    .mobile-menu-btn.active span:nth-child(3) {
        transform: rotate(-45deg) translate(5px, -5px);
    }
    
    h1 {
        font-size: 2.5rem;
    }
    
    h2 {
        font-size: 2rem;
    }
    
    .hero-content h1 {
        font-size: 2.5rem;
    }
    
    .hero-content p {
        font-size: 1.125rem;
    }
    
    .services-grid {
        grid-template-columns: 1fr;
    }
    
    .pricing-grid {
        grid-template-columns: 1fr;
    }
    
    .blog-grid {
        grid-template-columns: 1fr;
    }
    
    .contact-grid {
        grid-template-columns: 1fr;
    }
    
    .footer-grid {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .footer-bottom {
        flex-direction: column;
        gap: 1rem;
        text-align: center;
    }
    
    .footer-legal {
        flex-wrap: wrap;
        justify-content: center;
    }
    
    .slick-prev {
        left: 0.5rem;
    }
    
    .slick-next {
        right: 0.5rem;
    }
}

@media (max-width: 480px) {
    h1 {
        font-size: 2rem;
    }
    
    .hero-content h1 {
        font-size: 2rem;
    }
    
    .hero-buttons {
        flex-direction: column;
    }
    
    .btn-lg {
        width: 100%;
    }
}

/* Blog Page Styles */
.blog-hero {
    background: var(--bg-light);
    padding: 8rem 0 4rem;
    text-align: center;
}
.blog-hero a{
    color: var(--primary-color);
}

.blog-hero a:hover{
    color: var(--primary-dark);
}
.blog-section{
   background-color: var(--bg-light);
}
.blog-hero-content {
    max-width: 42rem;
    margin: 0 auto;
}

.blog-hero h1 {
    color: var(--secondary-color);
    margin-bottom: 1rem;
}

.blog-hero p {
    color: var(--text-color);
    font-size: 1.25rem;
}
.blog-hero .back-link {
  display: block;
  text-align: left;
  width: 100%;
    padding:  0 0 0 2rem;
  
}
.blog-posts-section {
    padding: 4rem 0;
}

.blog-posts-grid {
    display: flex;
    flex-direction: column;
    gap: 3rem;
}

.blog-post-full {
    display: grid;
    grid-template-columns: 400px 1fr;
    gap: 2rem;
    background-color: white;
    border-radius: 0.75rem;
    overflow: hidden;
    box-shadow: var(--shadow);
    padding: 0;
}

.blog-post-full .blog-post-image {
    aspect-ratio: auto;
    height: 100%;
    min-height: 280px;
}

.blog-post-full .blog-post-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.blog-post-full .blog-post-content {
    padding: 2rem;
}

.blog-post-full .blog-meta {
    margin-bottom: 1rem;
}

.read-time {
    color: var(--text-light);
    font-size: 0.875rem;
}

.post-excerpt {
    color: var(--text-color);
    margin-bottom: 1.5rem;
    font-size: 1rem;
    line-height: 1.6;
}

.post-full-content {
    display: none;
}

.post-full-content h3 {
    margin-top: 1.5rem;
    margin-bottom: 0.75rem;
    font-size: 1.25rem;
}

.post-full-content p {
    margin-bottom: 1rem;
    line-height: 1.8;
}

.post-full-content h3:first-child {
    margin-top: 0;
}

.blog-post-full .read-more-btn,
.blog-post-full .read-less {
    margin-top: 1.5rem;
}

@media (max-width: 768px) {
    .blog-post-full {
        grid-template-columns: 1fr;
    }
    
    .blog-post-full .blog-post-image {
        min-height: 250px;
    }
}

/* Blog Post Hero */
.blog-post-hero {
    background: var(--bg-white);
    padding: 8rem 0 0;
}

.blog-post-hero .container {
    max-width: 900px;
}

.back-link {
    display: inline-block;
    color: #d1d5db;
    margin-bottom: 1.5rem;
    font-size: 0.9375rem;
    transition: var(--transition);
}

.back-link:hover {
    color: var(--primary-color);
}

.blog-post-meta {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-bottom: 1rem;
    flex-wrap: wrap;
}

.blog-post-meta .blog-category {
    background-color: #fef3c7;
    color: #92400e;
    padding: 0.25rem 0.75rem;
    border-radius: 9999px;
    font-size: 0.875rem;
}

.blog-post-meta .blog-date,
.blog-post-meta .read-time {
    color: #d1d5db;
    font-size: 0.9375rem;
}

.blog-post-hero h1 {
    color: var(--secondary-color);
    font-size: 2.5rem;
    margin-bottom: 2rem;
}
.blog-post-hero a {
    color: var(--primary-color);
}
.blog-post-hero a:hover {
    color: var(--primary-dark);
}

/* Blog Post Content Section */

.get-in-touch{
display: grid;
gap: 1rem;
justify-items: center;
background-color: var(--bg-yellow);
padding: 3rem;
}
.blog-post-content-section {
    padding: 1rem 0;
}

.blog-post-main {
    max-width: 900px;
    margin: 0 auto;
}

.blog-post-image-full {
    margin-bottom: 2rem;
    border-radius: 0.75rem;
   
}

.blog-post-image-full img {
    float: left; /* Картинка слева, текст справа */
    margin-right: 20px; /* Важно! Без этого текст прилипнет к картинке */
    margin-bottom: 10px;
}

.blog-post-body {
    font-size: 1.125rem;
    line-height: 1.8;
}

.blog-post-body h2 {
    margin-top: 2.5rem;
    margin-bottom: 1rem;
    font-size: 1.75rem;
}

.blog-post-body h2:first-child {
    margin-top: 0;
}

.blog-post-body p {
    text-indent: 1.5rem;
    margin-bottom: 1.5rem;
    color: var(--text-color);
    text-align: justify;
}
.blog-post-body h4 {
    text-align: center;
    text-indent: 1.5rem;
}


/* Lightbox Styles */
.lightbox {
    position: fixed;
    inset: 0;
    background-color: rgba(0, 0, 0, 0.95);
    z-index: 9999;
    display: none;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.lightbox.active {
    display: flex;
    opacity: 1;
}

.lightbox-close {
    position: absolute;
    top: 1rem;
    right: 1rem;
    background: none;
    border: none;
    color: white;
    font-size: 2.5rem;
    cursor: pointer;
    z-index: 10;
    padding: 0.5rem;
    line-height: 1;
    transition: transform 0.3s ease, color 0.3s ease;
}

.lightbox-close:hover {
    transform: rotate(90deg);
    color: var(--primary-color);
}

.lightbox-prev,
.lightbox-next {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background: rgba(255, 255, 255, 0.9);
    border: none;
    width: 3.5rem;
    height: 3.5rem;
    border-radius: 50%;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--secondary-color);
    transition: all 0.3s ease;
    z-index: 10;
}

.lightbox-prev {
    left: 1rem;
}

.lightbox-next {
    right: 1rem;
}

.lightbox-prev:hover,
.lightbox-next:hover {
    background-color: var(--primary-color);
    color: white;
    transform: translateY(-50%) scale(1.1);
}

.lightbox-content {
    max-width: 90vw;
    max-height: 85vh;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.lightbox-content img {
    max-width: 100%;
    max-height: 70vh;
    object-fit: contain;
    border-radius: 0.5rem;
}

.lightbox-info {
    text-align: center;
    color: white;
    margin-top: 1.5rem;
    padding: 0 2rem;
}

.lightbox-info .lightbox-category {
    display: inline-block;
    background-color: var(--primary-color);
    padding: 0.25rem 0.75rem;
    border-radius: 9999px;
    font-size: 0.875rem;
    margin-bottom: 0.75rem;
}

.lightbox-info h3 {
    color: white;
    font-size: 1.75rem;
    margin-bottom: 0.5rem;
}

.lightbox-info p {
    color: #d1d5db;
    font-size: 1.125rem;
}

/* Custom slick carousel arrows */
.slick-prev.custom-arrow,
.slick-next.custom-arrow {
    width: 3rem;
    height: 3rem;
    background: rgba(255, 255, 255, 0.9);
    border-radius: 50%;
    display: flex !important;
    align-items: center;
    justify-content: center;
    color: var(--secondary-color) !important;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    transition: background-color 0.3s ease, color 0.3s ease, transform 0.1s ease !important;
    z-index: 10;
    border: none;
    cursor: pointer;
    position: absolute;
    top: 50%;
    transform: translateY(-50%) !important;
}

.slick-prev.custom-arrow {
    left: -3.5rem;
}

.slick-next.custom-arrow {
    right: -3.5rem;
}

.slick-prev.custom-arrow:hover,
.slick-next.custom-arrow:hover {
    background-color: var(--primary-color) !important;
    color: white !important;
}

.slick-prev.custom-arrow:active,
.slick-next.custom-arrow:active {
    transform: translateY(-50%) scale(0.95) !important;
}

.slick-prev.custom-arrow svg,
.slick-next.custom-arrow svg {
    width: 24px;
    height: 24px;
    stroke: currentColor !important;
    stroke-width: 2;
    fill: none;
    display: block !important;
    opacity: 1 !important;
    visibility: visible !important;
}

/* Override any slick defaults */
.slick-prev, .slick-next {
    transform: none !important;
    transition: none !important;
}

@media (max-width: 1024px) {
    .slick-prev.custom-arrow {
        left: 0.5rem;
    }
    
    .slick-next.custom-arrow {
        right: 0.5rem;
    }
    
    .lightbox-prev,
    .lightbox-next {
        width: 2.5rem;
        height: 2.5rem;
    }
    
    .lightbox-info h3 {
        font-size: 1.25rem;
    }
    
    .lightbox-info p {
        font-size: 1rem;
    }
}
