/* Global Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    line-height: 1.6;
    color: #333;
    background-color: #f9f9f9;
    overflow-x: hidden;
    max-width: 100vw;
}

html {
    overflow-x: hidden;
    max-width: 100vw;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* Top Bar */
.top-bar {
    background-color: #fff;
    padding: 10px 0;
    border-bottom: 1px solid #e0d8d1;
}

.top-bar-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.brand-slogan {
    font-size: 14px;
    color: #666;
    font-weight: 500;
}

.contact-info {
    display: flex;
    align-items: center;
    gap: 20px;
}

.phone {
    font-size: 14px;
    font-weight: 600;
    color: #333;
}

.social-links {
    display: flex;
    gap: 15px;
}

.social-link {
    color: #666;
    text-decoration: none;
    font-size: 14px;
    transition: color 0.3s ease;
}

.social-link:hover {
    color: #502f26;
}

/* Header */
.header {
    background-color: #fff;
    padding: 20px 0;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
    position: relative;
    z-index: 1002;
}

.header-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo a {
    text-decoration: none;
    display: inline-block;
}

.logo img {
    height: 40px;
    width: auto;
    max-width: 100%;
}

.main-nav {
    flex: 1;
    margin: 0 40px;
}

.mobile-menu-toggle {
    display: none;
}

.nav-menu {
    display: flex;
    list-style: none;
    gap: 30px;
    justify-content: center;
}

.nav-menu a {
    text-decoration: none;
    color: #333;
    font-weight: 500;
    font-size: 16px;
    transition: color 0.3s ease;
    position: relative;
}

.nav-menu a:hover {
    color: #502f26;
}

.nav-menu a.active {
    color: #502f26;
}

.dropdown {
    position: relative;
}

.dropdown-menu {
    position: absolute;
    top: 100%;
    left: 0;
    background-color: #fff;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
    padding: 10px 0;
    min-width: 150px;
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
    z-index: 1000;
    display: none;
}

.dropdown:hover .dropdown-menu,
.dropdown.active .dropdown-menu {
    display: block;
    opacity: 1;
    visibility: visible;
}

.dropdown-menu li {
    list-style: none;
}

.dropdown-menu a {
    display: block;
    padding: 8px 15px;
    font-size: 14px;
}

.search-container {
    position: relative;
    display: flex;
    align-items: center;
    background-color: #fff;
    border: 1px solid #e0d8d1;
    border-radius: 4px;
}

.custom-select {
    position: relative;
    height: 40px;
    z-index: 10;
}

.select-trigger {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 8px 12px;
    padding-right: 30px;
    background-color: #fff;
    font-size: 14px;
    cursor: pointer;
    border-right: 1px solid #e0d8d1;
    border-top-left-radius: 4px;
    border-bottom-left-radius: 4px;
    height: 100%;
}

.select-value {
    flex: 1;
}

.select-arrow {
    font-size: 10px;
    color: #666;
    pointer-events: none;
    margin-left: 10px;
}

.select-options {
    position: absolute;
    top: 100%;
    left: -1px;
    right: -1px;
    background-color: #fff;
    border: 1px solid #e0d8d1;
    border-top: none;
    border-radius: 0 0 4px 4px;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
    max-height: 200px;
    overflow-y: auto;
    display: none;
    z-index: 100;
}

.select-value {
    flex: 1;
    min-width: 50px;
}

.select-options.show {
    display: block;
}

.select-option {
    padding: 8px 12px;
    font-size: 14px;
    cursor: pointer;
    transition: background-color 0.3s ease;
}

.select-option:hover {
    background-color: #f8f5f2;
}

.select-option:active {
    background-color: #e0d8d1;
}



.search-container {
    display: flex;
    align-items: center;
    background-color: #fff;
    border: 1px solid #e0d8d1;
    border-radius: 4px;
}

.search-category:focus {
    outline: none;
    box-shadow: none;
}

.search-input {
    padding: 8px 15px;
    border: none;
    background-color: transparent;
    font-size: 14px;
    flex: 1;
    min-width: 150px;
    outline: none;
}

.search-input:focus {
    outline: none;
    box-shadow: none;
}

.search-button {
    padding: 0 12px;
    background-color: #502f26;
    color: #fff;
    border: none;
    cursor: pointer;
    transition: background-color 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
    height: 40px;
}

.search-button:hover {
    background-color: #8a7468;
}

.search-button svg {
    width: 16px;
    height: 16px;
    fill: currentColor;
}

/* Hero Slider */
.hero-slider {
    position: relative;
    height: 600px;
    overflow: hidden;
}

.slider-container {
    position: relative;
    height: 100%;
}

.slider-item {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    opacity: 0;
    visibility: hidden;
    transition: all 0.5s ease;
}

.slider-item.active {
    opacity: 1;
    visibility: visible;
}

.slider-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.slider-content {
    position: absolute;
    top: 50%;
    left: 10%;
    transform: translateY(-50%);
    max-width: 500px;
    background-color: rgba(255, 255, 255, 0.9);
    padding: 40px;
    border-radius: 8px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

.slider-content h1 {
    font-size: 36px;
    font-weight: 700;
    color: #333;
    margin-bottom: 15px;
}

.slider-content p {
    font-size: 18px;
    color: #666;
    margin-bottom: 25px;
}

.cta-button {
    display: inline-block;
    padding: 12px 30px;
    background-color: #502f26;
    color: #fff;
    text-decoration: none;
    border-radius: 4px;
    font-weight: 500;
    transition: background-color 0.3s ease;
}

.cta-button:hover {
    background-color: #8a7468;
}

.slider-dots {
    position: absolute;
    bottom: 30px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    gap: 10px;
}

.dot {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background-color: rgba(255, 255, 255, 0.6);
    cursor: pointer;
    transition: all 0.3s ease;
}

.dot:hover {
    background-color: rgba(255, 255, 255, 0.8);
}

.dot.active {
    background-color: #502f26;
    width: 30px;
    border-radius: 6px;
}

/* Product Categories */
.product-categories {
    padding: 60px 0;
    background-color: #fff;
}

.product-categories h2 {
    text-align: center;
    font-size: 32px;
    font-weight: 700;
    color: #333;
    margin-bottom: 40px;
}

.category-tabs {
    display: flex;
    justify-content: center;
    gap: 0;
    margin-bottom: 40px;
    flex-wrap: wrap;
}

.tab-button {
    padding: 12px 24px;
    background-color: #f8f5f2;
    border: 1px solid #e0d8d1;
    border-right: none;
    border-radius: 0;
    font-size: 14px;
    font-weight: 500;
    color: #333;
    text-decoration: none;
    display: inline-block;
    cursor: pointer;
}

.tab-button:first-child {
    border-top-left-radius: 4px;
    border-bottom-left-radius: 4px;
}

.tab-button:last-child {
    border-top-right-radius: 4px;
    border-bottom-right-radius: 4px;
    border-right: 1px solid #e0d8d1;
}

.tab-button:hover {
    background-color: #e0d8d1;
    color: #333;
}

.tab-button.active {
    background-color: #502f26;
    color: #fff;
    border-color: #502f26;
}

.tab-button:focus {
    outline: none;
    box-shadow: none;
}

.tab-content {
    display: none;
}

.tab-content.active {
    display: block;
}

.product-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 30px;
    margin-bottom: 40px;
}

.product-card {
    background-color: #f9f9f9;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
    transition: all 0.3s ease;
}

.product-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

.product-card img {
    width: 100%;
    height: 250px;
    object-fit: cover;
    transition: transform 0.3s ease;
}

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

.product-image {
    display: block;
    width: 100%;
}

.skeleton {
    background: linear-gradient(90deg, #f0f0f0 25%, #e0e0e0 50%, #f0f0f0 75%);
    background-size: 200% 100%;
    animation: skeleton-loading 1.5s infinite;
}

@keyframes skeleton-loading {
    0% {
        background-position: 200% 0;
    }
    100% {
        background-position: -200% 0;
    }
}

.skeleton-image {
    width: 100%;
    height: 250px;
    background-color: #f0f0f0;
}

.skeleton-title {
    height: 20px;
    width: 80%;
    margin: 15px;
    border-radius: 4px;
}

.skeleton-text {
    height: 14px;
    width: 90%;
    margin: 10px 15px;
    border-radius: 4px;
}

.skeleton-link {
    height: 16px;
    width: 100px;
    margin: 15px;
    border-radius: 4px;
}

/* News Card Skeleton */
.skeleton-news-image {
    width: 100%;
    height: 200px;
    background-color: #f0f0f0;
}

.skeleton-news-title {
    height: 20px;
    width: 80%;
    margin: 15px;
    border-radius: 4px;
}

.skeleton-news-date {
    height: 12px;
    width: 100px;
    margin: 0 15px 10px;
    border-radius: 4px;
}

.skeleton-news-text {
    height: 14px;
    width: 90%;
    margin: 0 15px 10px;
    border-radius: 4px;
}

.skeleton-news-link {
    height: 16px;
    width: 80px;
    margin: 15px;
    border-radius: 4px;
}

@media (max-width: 768px) {
    .skeleton-image {
        height: 200px;
    }
    
    .skeleton-title {
        height: 18px;
        margin: 12px;
    }
    
    .skeleton-text {
        height: 12px;
        margin: 8px 12px;
    }
    
    .skeleton-link {
        margin: 12px;
    }
}

@media (max-width: 480px) {
    .skeleton-image {
        height: auto;
        padding-bottom: 100%;
        aspect-ratio: 1/1;
    }
    
    .skeleton-title {
        height: 16px;
        margin: 10px;
    }
    
    .skeleton-text {
        height: 12px;
        margin: 6px 10px;
    }
    
    .skeleton-link {
        height: 14px;
        margin: 10px;
    }
}

.product-card h3 {
    font-size: 18px;
    font-weight: 600;
    color: #333;
    margin: 15px;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
}

.product-card p {
    font-size: 14px;
    color: #666;
    margin: 0 15px 15px;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
    text-overflow: ellipsis;
}

.product-link {
    display: inline-block;
    margin: 0 15px 15px;
    padding: 8px 15px;
    background-color: #502f26;
    color: #fff;
    text-decoration: none;
    border-radius: 4px;
    font-size: 14px;
    font-weight: 500;
    transition: background-color 0.3s ease;
}

.product-link:hover {
    background-color: #8a7468;
}

.more-products {
    text-align: center;
}

.more-button {
    display: inline-block;
    padding: 12px 30px;
    background-color: #f8f5f2;
    color: #333;
    text-decoration: none;
    border: 1px solid #e0d8d1;
    border-radius: 4px;
    font-weight: 500;
    transition: all 0.3s ease;
}

.more-button:hover {
    background-color: #502f26;
    color: #fff;
    border-color: #502f26;
}

/* Hot Products & New Arrivals */
.hot-products {
    padding: 60px 0;
    background-color: #f9f9f9;
}

.new-arrivals {
    padding: 60px 0;
    background-color: #fff;
}

.hot-products h2, .new-arrivals h2 {
    text-align: center;
    font-size: 32px;
    font-weight: 700;
    color: #333;
    margin-bottom: 40px;
}

/* Latest News */
.latest-news {
    padding: 60px 0;
    background-color: #f9f9f9;
}

.latest-news h2 {
    text-align: center;
    font-size: 32px;
    font-weight: 700;
    color: #333;
    margin-bottom: 40px;
}

.news-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
}

.news-card {
    background-color: #f9f9f9;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
    transition: all 0.3s ease;
}

.news-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

.news-card img {
    width: 100%;
    height: 200px;
    object-fit: cover;
    transition: transform 0.3s ease;
}

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

.news-card h3 {
    font-size: 18px;
    font-weight: 600;
    color: #333;
    margin: 15px;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
    text-overflow: ellipsis;
}

.news-date {
    font-size: 12px;
    color: #999;
    margin: 0 15px 10px;
}

.news-card p {
    font-size: 14px;
    color: #666;
    margin: 0 15px 15px;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
    text-overflow: ellipsis;
}

.news-link {
    display: inline-block;
    margin: 0 15px 15px;
    padding: 8px 15px;
    background-color: #502f26;
    color: #fff;
    text-decoration: none;
    border-radius: 4px;
    font-size: 14px;
    font-weight: 500;
    transition: background-color 0.3s ease;
}

.news-link:hover {
    background-color: #8a7468;
}

/* You May Also Like */
.you-may-also-like {
    padding: 80px 0 60px;
    background-color: #fff;
}

.you-may-also-like h2 {
    text-align: center;
    font-size: 32px;
    font-weight: 700;
    color: #333;
    margin-bottom: 40px;
}

/* Service Advantages */
.service-advantages {
    padding: 60px 0;
    background-color: #f8f5f2;
}

.service-advantages h2 {
    text-align: center;
    font-size: 32px;
    font-weight: 700;
    color: #333;
    margin-bottom: 40px;
}

.advantages-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 30px;
}

.advantage-item {
    text-align: center;
    padding: 30px;
    background-color: #fff;
    border-radius: 8px;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
    transition: all 0.3s ease;
}

.advantage-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

.advantage-icon {
    color: #502f26;
    margin-bottom: 20px;
}

.advantage-item h3 {
    font-size: 18px;
    font-weight: 600;
    color: #333;
    margin-bottom: 10px;
}

.advantage-item p {
    font-size: 14px;
    color: #666;
}

/* Footer */
.footer {
    background-color: #000;
    color: #fff;
    padding: 60px 0 30px;
}

.footer-content {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 40px;
    margin-bottom: 40px;
}

.footer-section h3 {
    font-size: 18px;
    font-weight: 600;
    margin-bottom: 20px;
}

.footer-logo {
    max-width: 200px;
    height: auto;
    margin-bottom: 20px;
}

.footer-section p {
    font-size: 14px;
    line-height: 1.6;
    color: #ccc;
}

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

.footer-section ul li {
    margin-bottom: 10px;
}

.footer-section ul li a {
    color: #ccc;
    text-decoration: none;
    font-size: 14px;
    transition: color 0.3s ease;
}

.footer-section ul li a:hover {
    color: #502f26;
}

.footer-bottom {
    border-top: 1px solid #444;
    padding-top: 30px;
    text-align: center;
    font-size: 14px;
    color: #ccc;
}

/* Product Detail Page */
.product-detail {
    padding: 60px 0;
    background-color: #fff;
}

.product-detail-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
    margin-bottom: 60px;
}

.product-images {
    position: relative;
}

.magnifier-container {
    position: relative;
    width: 100%;
    max-width: 100%;
    height: 500px;
    overflow: hidden;
    border-radius: 8px;
    margin-bottom: 20px;
}

.main-image {
    width: 100%;
    max-width: 100%;
    height: 100%;
    object-fit: cover;
    cursor: none;
}

.magnifier-glass {
    position: absolute;
    width: 200px;
    height: 200px;
    border: 3px solid #fff;
    border-radius: 50%;
    background-color: rgba(255, 255, 255, 0.2);
    background-repeat: no-repeat;
    cursor: none;
    display: none;
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.2);
}

.thumbnail-images {
    display: flex;
    gap: 10px;
    flex-wrap: wrap;
}

.thumbnail-images img {
    width: 80px;
    height: 80px;
    object-fit: cover;
    border-radius: 4px;
    cursor: pointer;
    border: 2px solid transparent;
    transition: border-color 0.3s ease;
}

.thumbnail-images img:hover {
    border-color: #502f26;
}

.product-info {
}

.product-info h1 {
    font-size: 32px;
    font-weight: 700;
    color: #333;
    margin-bottom: 20px;
}

.product-overview {
    font-size: 16px;
    color: #666;
    margin-bottom: 30px;
    line-height: 1.6;
}

.product-params {
    margin-bottom: 30px;
}

.product-params h3 {
    font-size: 18px;
    font-weight: 600;
    color: #333;
    margin-bottom: 15px;
}

.param-item {
    display: flex;
    justify-content: space-between;
    padding: 10px 0;
    border-bottom: 1px solid #e0d8d1;
}

.param-label {
    font-weight: 500;
    color: #333;
}

.param-value {
    color: #666;
}

.consult-button {
    display: inline-block;
    padding: 12px 30px;
    background-color: #502f26;
    color: #fff;
    text-decoration: none;
    border-radius: 4px;
    font-weight: 500;
    transition: background-color 0.3s ease;
}

.consult-button:hover {
    background-color: #8a7468;
}

.product-tabs {
    margin-top: 40px;
}

.tab-buttons {
    display: flex;
    border-bottom: 1px solid #e0d8d1;
    margin-bottom: 30px;
}

.product-tab-button {
    padding: 12px 24px;
    background: none;
    border: none;
    font-size: 16px;
    font-weight: 500;
    color: #666;
    cursor: pointer;
    transition: all 0.3s ease;
    border-bottom: 3px solid transparent;
}

.product-tab-button:hover {
    color: #502f26;
}

.product-tab-button.active {
    color: #502f26;
    border-bottom-color: #502f26;
}

.product-tab-content {
    display: none;
}

.product-tab-content.active {
    display: block;
}

/* Product Detail Tabs Content */
.product-tab-content h3 {
    font-size: 24px;
    font-weight: 600;
    color: #333;
    margin-bottom: 20px;
}

.product-tab-content p {
    font-size: 16px;
    color: #666;
    line-height: 1.6;
    margin-bottom: 15px;
}

/* Specifications Table */
.specs-table {
    width: 100%;
    border-collapse: collapse;
    margin-top: 20px;
}

.specs-table th,
.specs-table td {
    padding: 12px 15px;
    text-align: left;
    border-bottom: 1px solid #e0d8d1;
}

.specs-table th {
    background-color: #f8f5f2;
    font-weight: 600;
    color: #333;
}

.specs-table tr:hover {
    background-color: #f9f9f9;
}

/* Reviews */
.review-item {
    padding: 20px;
    background-color: #f9f9f9;
    border-radius: 8px;
    margin-bottom: 20px;
}

.review-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 10px;
}

.review-header h4 {
    font-size: 16px;
    font-weight: 600;
    color: #333;
}

.review-rating {
    color: #f39c12;
    font-size: 18px;
}

.review-date {
    font-size: 12px;
    color: #999;
    margin-bottom: 10px;
}

.review-content {
    font-size: 14px;
    color: #666;
    line-height: 1.6;
}

/* Page Title */
.page-title {
    background-color: #f8f5f2;
    padding: 40px 0;
    text-align: center;
}

.page-title h1 {
    font-size: 36px;
    font-weight: 700;
    color: #333;
    margin-bottom: 10px;
}

.page-title p {
    font-size: 18px;
    color: #666;
}

/* About Content */
.about-content {
    padding: 60px 0;
    background-color: #fff;
}

.about-section {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
    margin-bottom: 60px;
    align-items: center;
}

.about-section.reverse {
    direction: rtl;
}

.about-section.reverse .about-text {
    direction: ltr;
}

.about-section.reverse .about-image {
    direction: ltr;
}

.about-image img {
    width: 100%;
    height: 400px;
    object-fit: cover;
    border-radius: 8px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

.about-text h2 {
    font-size: 28px;
    font-weight: 700;
    color: #333;
    margin-bottom: 20px;
}

.about-text p {
    font-size: 16px;
    color: #666;
    line-height: 1.6;
    margin-bottom: 15px;
}

/* Team Section */
.team-section {
    margin-top: 60px;
}

.team-section h2 {
    font-size: 28px;
    font-weight: 700;
    color: #333;
    text-align: center;
    margin-bottom: 40px;
}

.team-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 30px;
}

.team-member {
    text-align: center;
    padding: 20px;
    background-color: #f9f9f9;
    border-radius: 8px;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
    transition: all 0.3s ease;
}

.team-member:hover {
    transform: translateY(-5px);
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

.team-member img {
    width: 150px;
    height: 150px;
    object-fit: cover;
    border-radius: 50%;
    margin-bottom: 15px;
}

.team-member h3 {
    font-size: 18px;
    font-weight: 600;
    color: #333;
    margin-bottom: 5px;
}

.team-member p {
    font-size: 14px;
    color: #666;
}

/* News Categories */
.news-categories {
    padding: 60px 0;
    background-color: #fff;
}

/* Responsive adjustments for about page */
@media (max-width: 1024px) {
    .about-section {
        grid-template-columns: 1fr;
        text-align: center;
    }
    
    .about-section.reverse {
        direction: ltr;
    }
    
    .team-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 768px) {
    .team-grid {
        grid-template-columns: 1fr;
    }
    
    .about-image img {
        height: 300px;
    }
}

/* Contact Content */
.contact-content {
    padding: 60px 0;
    background-color: #fff;
}

.contact-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
}

.contact-info-section h2,
.contact-form-section h2 {
    font-size: 28px;
    font-weight: 700;
    color: #333;
    margin-bottom: 30px;
}

.contact-item {
    display: flex;
    gap: 20px;
    margin-bottom: 30px;
    align-items: flex-start;
}

.contact-icon {
    color: #502f26;
    margin-top: 5px;
}

.contact-text h3 {
    font-size: 18px;
    font-weight: 600;
    color: #333;
    margin-bottom: 5px;
}

.contact-text p {
    font-size: 16px;
    color: #666;
    line-height: 1.6;
}

/* Contact Form */
.contact-form {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.form-group {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.form-group label {
    font-size: 16px;
    font-weight: 500;
    color: #333;
}

.form-group input,
.form-group textarea {
    padding: 12px 15px;
    border: 1px solid #e0d8d1;
    border-radius: 4px;
    font-size: 16px;
    font-family: inherit;
}

.form-group input:focus,
.form-group textarea:focus {
    outline: none;
    border-color: #502f26;
    box-shadow: 0 0 0 2px rgba(155, 133, 121, 0.1);
}

.submit-button {
    padding: 12px 30px;
    background-color: #502f26;
    color: #fff;
    border: none;
    border-radius: 4px;
    font-size: 16px;
    font-weight: 500;
    cursor: pointer;
    transition: background-color 0.3s ease;
    align-self: flex-start;
}

.submit-button:hover {
    background-color: #8a7468;
}

/* Responsive adjustments for contact page */
@media (max-width: 1024px) {
    .contact-grid {
        grid-template-columns: 1fr;
    }
    
    .submit-button {
        align-self: center;
    }
}

/* News Detail Content */
.news-detail-content {
    padding: 60px 0;
    background-color: #fff;
}

/* News Layout */
.news-layout {
    display: flex;
    gap: 40px;
}

.news-main {
    flex: 1;
    min-width: 0;
}

.news-sidebar {
    width: 350px;
    flex-shrink: 0;
}

.news-image img {
    width: 100%;
    height: 400px;
    object-fit: cover;
    border-radius: 8px;
    margin-bottom: 30px;
}

.news-body {
    margin: 0 0 40px;
}

.news-body p {
    font-size: 16px;
    color: #666;
    line-height: 1.8;
    margin-bottom: 20px;
}

.news-body h3 {
    font-size: 24px;
    font-weight: 600;
    color: #333;
    margin: 30px 0 20px;
}

.news-body ul {
    margin: 20px 0 30px 20px;
}

.news-body li {
    font-size: 16px;
    color: #666;
    line-height: 1.6;
    margin-bottom: 10px;
}

/* News Navigation */
.news-navigation {
    display: flex;
    justify-content: space-between;
    margin-top: 40px;
    padding-top: 40px;
    border-top: 1px solid #e0d8d1;
}

.prev-news, .next-news {
    flex: 1;
}

.prev-news {
    margin-right: 20px;
}

.next-news {
    margin-left: 20px;
    text-align: right;
}

.news-navigation a {
    display: block;
    text-decoration: none;
    color: #333;
    transition: color 0.3s ease;
}

.news-navigation a:hover {
    color: #502f26;
}

.nav-label {
    display: block;
    font-size: 14px;
    color: #999;
    margin-bottom: 5px;
}

.nav-title {
    display: block;
    font-size: 16px;
    font-weight: 500;
}

/* Sidebar Styles */
.sidebar-section {
    background-color: #f9f9f9;
    border-radius: 8px;
    padding: 25px;
    margin-bottom: 30px;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
}

.sidebar-section h3 {
    font-size: 18px;
    font-weight: 600;
    color: #333;
    margin-bottom: 20px;
    padding-bottom: 10px;
    border-bottom: 1px solid #e0d8d1;
}

/* Sidebar Products */
.sidebar-products {
    display: flex;
    flex-direction: column;
    gap: 25px;
}

.sidebar-product {
    display: flex;
    flex-direction: row;
    align-items: center;
    text-align: left;
    padding: 15px;
    background-color: #fff;
    border-radius: 8px;
    box-shadow: 0 1px 5px rgba(0, 0, 0, 0.05);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    min-height: 100px;
    gap: 15px;
}

.sidebar-product:hover {
    transform: translateY(-3px);
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

.sidebar-product img {
    width: 80px;
    height: 80px;
    object-fit: cover;
    border-radius: 6px;
    flex-shrink: 0;
}

.sidebar-product-content {
    flex: 1;
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.sidebar-product h4 {
    font-size: 15px;
    font-weight: 600;
    color: #333;
    margin: 0;
    min-height: auto;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

.sidebar-link {
    display: inline-block;
    padding: 6px 12px;
    background-color: #502f26;
    color: #fff;
    text-decoration: none;
    border-radius: 4px;
    font-size: 12px;
    font-weight: 500;
    transition: background-color 0.3s ease;
    width: auto;
    max-width: none;
    align-self: flex-start;
}

.sidebar-link:hover {
    background-color: #8a7468;
}

/* Sidebar News */
.sidebar-news {
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.sidebar-news-item {
    border-bottom: 1px solid #e0d8d1;
    padding-bottom: 15px;
}

.sidebar-news-item:last-child {
    border-bottom: none;
    padding-bottom: 0;
}

.sidebar-news-item a {
    text-decoration: none;
    color: #333;
    transition: color 0.3s ease;
}

.sidebar-news-item a:hover {
    color: #502f26;
}

.sidebar-news-item h4 {
    font-size: 14px;
    font-weight: 500;
    margin-bottom: 5px;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

.sidebar-news-date {
    font-size: 12px;
    color: #999;
}

/* Responsive adjustments for news detail */
@media (max-width: 1024px) {
    .news-layout {
        flex-direction: column;
    }
    
    .news-sidebar {
        width: 100%;
    }
    
    .sidebar-products {
        flex-direction: row;
        flex-wrap: wrap;
        justify-content: space-between;
    }
    
    .sidebar-product {
        flex: 0 0 calc(33.333% - 14px);
    }
}

@media (max-width: 768px) {
    .news-image img {
        height: 300px;
    }
    
    .news-navigation {
        flex-direction: column;
        gap: 20px;
    }
    
    .prev-news, .next-news {
        margin: 0;
        text-align: left;
    }
    
    .sidebar-product {
        flex: 0 0 100%;
    }
    
    .sidebar-products {
        flex-direction: column;
    }
}

/* Pagination */
.pagination {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 10px;
    margin-top: 40px;
    padding: 20px 0;
}

.pagination a {
    display: inline-block;
    padding: 8px 16px;
    background-color: #f8f5f2;
    color: #333;
    text-decoration: none;
    border-radius: 4px;
    transition: all 0.3s ease;
}

.pagination a:hover {
    background-color: #502f26;
    color: #fff;
}

.pagination a.active {
    background-color: #502f26;
    color: #fff;
}

/* Pagination Number Bar */
.page-num {
    display: inline-block;
    padding: 8px 16px;
    background-color: #f8f5f2;
    color: #333;
    text-decoration: none;
    border-radius: 4px;
    transition: all 0.3s ease;
}

.page-num:hover {
    background-color: #502f26;
    color: #fff;
}

.page-num-current {
    background-color: #502f26 !important;
    color: #fff !important;
}

.pagination .prev, .pagination .next {
    font-weight: 500;
}

/* Responsive adjustments for news detail */
@media (max-width: 768px) {
    .news-image img {
        height: 300px;
    }
    
    .news-navigation {
        flex-direction: column;
        gap: 20px;
    }
    
    .prev-news, .next-news {
        margin: 0;
        text-align: left;
    }
    
    .pagination {
        flex-wrap: wrap;
    }
}

/* Responsive Design */

@media (max-width: 1024px) {
    .search-container {
        display: none;
    }
}

@media (max-width: 768px) {
    .product-grid {
        grid-template-columns: repeat(3, 1fr);
    }
    
    .advantages-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .footer-content {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 768px) {
    .top-bar {
        display: none;
    }
    
    .container {
        padding: 0 15px;
    }
    
    .header-content {
        flex-direction: row;
        justify-content: space-between;
        align-items: center;
        gap: 15px;
        overflow: visible;
    }
    
    .logo a {
        display: inline-block;
    }
    
    .logo img {
        height: 30px;
        width: auto;
        max-width: 100%;
    }
    
    .mobile-menu-toggle {
        display: flex;
        flex-direction: column;
        justify-content: space-between;
        width: 28px;
        height: 20px;
        background: none;
        border: none;
        cursor: pointer;
        padding: 0;
        margin-right: 10px;
        z-index: 1002;
        position: relative;
    }
    
    .hamburger-line {
        width: 100%;
        height: 3px;
        background-color: #333;
        border-radius: 2px;
        transition: all 0.3s ease;
    }
    
    .mobile-menu-toggle.active .hamburger-line:nth-child(1) {
        transform: rotate(45deg) translate(5px, 5px);
    }
    
    .mobile-menu-toggle.active .hamburger-line:nth-child(2) {
        opacity: 0;
    }
    
    .mobile-menu-toggle.active .hamburger-line:nth-child(3) {
        transform: rotate(-45deg) translate(5px, -5px);
    }
    
    .main-nav {
        position: fixed;
        top: 0;
        right: -100%;
        width: 70%;
        max-width: 300px;
        height: 100vh;
        background-color: #fff;
        box-shadow: -2px 0 10px rgba(0, 0, 0, 0.1);
        margin: 0;
        padding: 80px 20px 20px;
        transition: right 0.3s ease;
        z-index: 1001;
        overflow-y: auto;
    }
    
    .main-nav.mobile-active {
        right: 0;
    }
    
    .nav-menu {
        flex-direction: column;
        gap: 0;
        align-items: flex-start;
    }
    
    .nav-menu li {
        width: 100%;
        border-bottom: 1px solid #eee;
    }
    
    .nav-menu li:last-child {
        border-bottom: none;
    }
    
    .nav-menu a {
        display: block;
        padding: 15px 0;
        font-size: 16px;
    }
    
    .dropdown .dropdown-menu {
        position: static;
        box-shadow: none;
        padding: 0;
        margin: 0;
        display: none;
    }
    
    .dropdown.active .dropdown-menu {
        display: block;
    }
    
    .dropdown-menu li {
        border-bottom: none;
    }
    
    .dropdown-menu a {
        padding: 10px 15px;
        font-size: 14px;
        color: #666;
        display: block;
    }
    
    .dropdown-menu a:hover {
        color: #502f26;
        background-color: #f9f7f5;
    }
    
    .search-container {
        display: none;
    }
    
    .header {
        position: fixed;
        top: 0;
        left: 0;
        right: 0;
        z-index: 1002;
        padding: 15px 0;
    }
    
    .hero-slider {
        margin-top: 70px;
        height: 300px;
    }
    
    .page-title {
        margin-top: 70px;
        padding: 30px 0;
    }
    
    .page-title h1 {
        font-size: 24px;
    }
    
    .page-title p {
        font-size: 16px;
    }
    
    .slider-content {
        left: 5%;
        right: 5%;
        padding: 20px;
    }
    
    .slider-content h1 {
        font-size: 24px;
    }
    
    .category-tabs {
        flex-direction: row;
        justify-content: center;
        flex-wrap: wrap;
        gap: 8px;
        margin-bottom: 30px;
    }
    
    .tab-button {
        width: auto;
        max-width: none;
        padding: 8px 14px;
        font-size: 13px;
    }
    
    .product-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 15px;
    }
    
    .product-card {
        padding: 0;
        position: relative;
    }
    
    .product-card a:first-child {
        display: block;
        position: relative;
        padding-bottom: 100%; /* 1:1 aspect ratio */
        overflow: hidden;
    }
    
    .product-card img {
        position: absolute;
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
        object-fit: cover;
    }
    
    .product-card h3 {
        font-size: 14px;
        margin: 10px;
        white-space: nowrap;
        overflow: hidden;
        text-overflow: ellipsis;
    }
    
    .product-card p {
        display: none;
    }
    
    .product-link {
        display: none;
    }
    
    .news-grid {
        grid-template-columns: repeat(1, 1fr);
        gap: 15px;
    }
    
    .news-card img {
        width: 100%;
        aspect-ratio: 16/9;
        object-fit: cover;
    }
    
    .news-card h3 {
        font-size: 14px;
        margin: 10px;
        -webkit-line-clamp: 2;
    }
    
    .news-card p {
        display: none;
    }
    
    .news-date {
        font-size: 11px;
        margin: 5px 10px;
    }
    
    .news-link {
        display: none;
    }
    
    .product-detail-content {
        grid-template-columns: 1fr;
    }
    
    .footer-content {
        grid-template-columns: 1fr;
        text-align: center;
    }
}

@media (max-width: 480px) {
    .logo a {
        display: inline-block;
    }
    
    .logo img {
        height: 25px;
        width: auto;
        max-width: 100%;
    }
    
    .mobile-menu-toggle {
        width: 24px;
        height: 18px;
    }
    
    .hamburger-line {
        height: 2px;
    }
    
    .main-nav {
        width: 80%;
    }
    
    .hero-slider {
        height: 250px;
    }
    
    .slider-content h1 {
        font-size: 20px;
    }
    
    .slider-content p {
        font-size: 14px;
    }
    
    .slider-content .cta-button {
        padding: 10px 20px;
        font-size: 14px;
    }
    
    .product-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 10px;
    }
    
    .product-card h3 {
        font-size: 13px;
        margin: 8px;
    }
    
    .news-grid {
        grid-template-columns: repeat(1, 1fr);
        gap: 10px;
    }
    
    .news-card img {
        width: 100%;
        aspect-ratio: 16/9;
        object-fit: cover;
    }
    
    .news-card h3 {
        font-size: 13px;
        margin: 8px;
    }
    
    .news-date {
        font-size: 10px;
        margin: 3px 8px;
    }
    
    .advantages-grid {
        grid-template-columns: 1fr;
    }
    
    .category-tabs {
        flex-direction: row;
        justify-content: center;
        flex-wrap: wrap;
    }
    
    .tab-button {
        width: auto;
        max-width: none;
        padding: 8px 16px;
        font-size: 13px;
    }
}

/* Mobile-specific styles */
@media (max-width: 768px) {
    .product-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

/* Floating Icons */
.floating-icons {
    position: fixed;
    bottom: 30px;
    right: 30px;
    z-index: 1000;
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.floating-icon {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    cursor: pointer;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
}

.floating-icon:hover {
    transform: translateY(-5px);
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
}

.icon-phone {
    background-color: #502f26;
}

.icon-whatsapp {
    background-color: #25D366;
}

.icon-top {
    background-color: #666;
}

/* Search Results */
.search-results {
    padding: 60px 0;
}

.results-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 40px;
}

.results-header p {
    font-size: 16px;
    color: #666;
}

.sort-options {
    display: flex;
    align-items: center;
    gap: 10px;
}

.sort-options label {
    font-size: 14px;
    color: #666;
}

.sort-select {
    padding: 6px 12px;
    border: 1px solid #e0d8d1;
    border-radius: 4px;
    font-size: 14px;
    background-color: #fff;
    cursor: pointer;
}

.sort-select:focus {
    outline: none;
    box-shadow: none;
}

/* Responsive for floating icons */
@media (max-width: 768px) {
    .floating-icons {
        bottom: 20px;
        right: 20px;
    }
    
    .floating-icon {
        width: 45px;
        height: 45px;
    }
    
    .results-header {
        flex-direction: column;
        align-items: flex-start;
        gap: 15px;
    }
}

/* Skeleton Placeholders */
.skeleton-wrapper {
    position: relative;
    width: 100%;
    height: 100%;
}

.skeleton {
    background: linear-gradient(90deg, #f0f0f0 25%, #e0e0e0 50%, #f0f0f0 75%);
    background-size: 200% 100%;
    animation: skeleton-loading 1.5s infinite;
    border-radius: 4px;
}

@keyframes skeleton-loading {
    0% {
        background-position: 200% 0;
    }
    100% {
        background-position: -200% 0;
    }
}

.skeleton-image {
    width: 100%;
    height: 250px;
    margin-bottom: 16px;
}

.skeleton-title {
    width: 70%;
    height: 24px;
    margin-bottom: 12px;
}

.skeleton-text {
    width: 90%;
    height: 16px;
    margin-bottom: 8px;
}

.skeleton-text:nth-child(2) {
    width: 80%;
}

.skeleton-link {
    width: 120px;
    height: 32px;
    margin-top: 8px;
}

/* News Card Skeletons */
.skeleton-news-image {
    width: 100%;
    height: 180px;
    margin-bottom: 16px;
}

.skeleton-news-title {
    width: 80%;
    height: 20px;
    margin-bottom: 8px;
}

.skeleton-news-date {
    width: 40%;
    height: 14px;
    margin-bottom: 12px;
}

.skeleton-news-text {
    width: 95%;
    height: 14px;
    margin-bottom: 8px;
}

.skeleton-news-text:nth-child(2) {
    width: 85%;
}

.skeleton-news-link {
    width: 100px;
    height: 14px;
    margin-top: 8px;
}

/* Product Detail Skeletons */
.skeleton-main-image {
    width: 100%;
    height: 400px;
    margin-bottom: 16px;
}

.skeleton-thumbnails {
    display: flex;
    gap: 12px;
    margin-top: 16px;
}

.skeleton-thumbnail {
    width: 80px;
    height: 80px;
    border-radius: 4px;
}

/* Responsive Skeleton Adjustments */
@media (max-width: 768px) {
    .skeleton-image {
        height: 200px;
    }
    
    .skeleton-news-image {
        height: 150px;
    }
    
    .skeleton-main-image {
        height: 300px;
    }
    
    .skeleton-thumbnail {
        width: 60px;
        height: 60px;
    }
    
    .skeleton-thumbnails {
        gap: 8px;
    }
}

@media (max-width: 480px) {
    .skeleton-image {
        height: 180px;
    }
    
    .skeleton-news-image {
        height: 120px;
    }
    
    .skeleton-main-image {
        height: 250px;
    }
    
    .skeleton-thumbnail {
        width: 50px;
        height: 50px;
    }
}

/* Video Card Styles */
.video-card .video-image-container {
    position: relative;
    overflow: hidden;
}
.video-card .play-icon {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 80px;
    height: 80px;
    background-color: rgba(0, 0, 0, 0.6);
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    opacity: 0;
    transition: all 0.3s ease;
    cursor: pointer;
}
.video-card .play-icon::before {
    content: '';
    width: 0;
    height: 0;
    border-top: 20px solid transparent;
    border-bottom: 20px solid transparent;
    border-left: 30px solid white;
    margin-left: 5px;
}
.video-card:hover .play-icon {
    opacity: 1;
}
.video-card:hover .video-image-container img {
    transform: scale(1.05);
}
.video-card .video-image-container img {
    transition: transform 0.3s ease;
}

/* Video Modal Styles */
.video-modal {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0,0,0,0.9);
    z-index: 1003;
    justify-content: center;
    align-items: center;
}
.video-modal.active {
    display: flex;
}
.modal-content {
    background-color: white;
    border-radius: 8px;
    width: 90%;
    max-width: 900px;
    max-height: 90vh;
    overflow: hidden;
    box-shadow: 0 0 20px rgba(0,0,0,0.3);
}
.modal-close {
    position: absolute;
    top: 10px;
    right: 20px;
    font-size: 30px;
    cursor: pointer;
    color: white;
    z-index: 1001;
}
.modal-body {
    padding: 20px;
}
.video-player-container {
    margin-bottom: 20px;
}
.modal-body h3 {
    margin: 0;
    font-size: 18px;
    font-weight: 600;
    color: #333;
}
@media (max-width: 768px) {
    #modalVideo {
        height: 300px;
    }
}

/* Album Page Styles */
.album-categories {
    padding: 60px 0;
    background-color: #fff;
}
.album-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(200px, 1fr));
    gap: 15px;
    margin-top: 30px;
}
.album-card {
    position: relative;
    border: 1px solid #ddd;
    border-radius: 4px;
    overflow: hidden;
    transition: all 0.3s ease;
    background-color: white;
    cursor: pointer;
}
.album-cover {
    position: relative;
    height: 150px;
    overflow: hidden;
}
.album-cover img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}
.album-date {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    background-color: rgba(0,0,0,0.6);
    color: white;
    padding: 5px;
    font-size: 12px;
    text-align: center;
}
.album-info {
    display: none;
}

/* Album Modal Styles */
.album-modal {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: black;
    z-index: 1003;
    justify-content: center;
    align-items: center;
}
.album-modal.active {
    display: flex;
}
.modal-main-content {
    width: 100%;
    height: 100%;
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
    align-items: center;
    padding-top: 60px;
}
.modal-close {
    position: absolute;
    top: 20px;
    right: 30px;
    font-size: 40px;
    cursor: pointer;
    color: white;
    z-index: 1001;
}
.main-photo-container {
    position: relative;
    max-width: 100%;
    max-height: 75vh;
    display: flex;
    justify-content: center;
    align-items: center;
}
.main-photo {
    max-width: 100%;
    max-height: 75vh;
    object-fit: contain;
}
.photo-nav {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 60px;
    height: 60px;
    color: white;
    background-color: rgba(0,0,0,0.3);
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    cursor: pointer;
    user-select: none;
    transition: all 0.3s ease;
    opacity: 0;
}
.main-photo-container:hover .photo-nav {
    opacity: 1;
}
.photo-nav:hover {
    background-color: rgba(0,0,0,0.6);
}
.photo-nav.prev {
    left: 20px;
}
.photo-nav.next {
    right: 20px;
}
.modal-bottom {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    background-color: rgba(0,0,0,0.8);
    color: white;
    padding: 10px;
    height: 90px;
}
#modalPhotoCounter {
    position: absolute;
    bottom: 10px;
    right: 20px;
    font-size: 14px;
}
.thumbnail-container {
    overflow-x: auto;
    white-space: nowrap;
    padding: 5px 0 10px;
    margin: 0 10px;
    display: flex;
    justify-content: center;
}
.thumbnail-scroll {
    display: inline-flex;
    gap: 8px;
}
.thumbnail-item {
    width: 70px;
    height: 70px;
    overflow: hidden;
    cursor: pointer;
    border: 2px solid transparent;
    transition: all 0.3s ease;
}
.thumbnail-item.active {
    border-color: white;
}
.thumbnail-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}
.thumbnail-item:hover {
    transform: scale(1.05);
}
.modal-controls {
    display: none;
}

/* Album Card Hover Effect */
.album-card {
    cursor: pointer;
    transition: all 0.3s ease;
}
.album-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 20px rgba(0,0,0,0.1);
}
.album-link.view-album {
    cursor: pointer;
}

/* Skeleton Placeholder Styles for Albums */
.skeleton-wrapper {
    position: relative;
    width: 100%;
    height: 150px;
}
.skeleton-album-image {
    width: 100%;
    height: 150px;
    background-color: #f0f0f0;
    border-radius: 4px;
}

/* Responsive Adjustments */
@media (max-width: 768px) {
    .album-grid {
        grid-template-columns: repeat(auto-fill, minmax(150px, 1fr));
        gap: 10px;
    }
    .album-cover {
        height: 120px;
    }
    .photo-nav {
        font-size: 40px;
        padding: 10px;
    }
    .thumbnail-item {
        width: 60px;
        height: 60px;
    }
    .modal-controls {
        gap: 15px;
    }
    .control-btn {
        font-size: 16px;
    }
    .skeleton-wrapper {
        height: 120px;
    }
    .skeleton-album-image {
        height: 120px;
    }
}