/* Genel Reset ve Temel Stiller */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

:root {
    --primary-color: #8B1538;
    --secondary-color: #C41E3A;
    --text-dark: #2C2C2C;
    --text-light: #666;
    --bg-light: #F5F5F5;
    --white: #FFFFFF;
    --border-color: #E0E0E0;
    --shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    --shadow-lg: 0 10px 30px rgba(0, 0, 0, 0.15);
}

body {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    line-height: 1.6;
    color: var(--text-dark);
    background-color: var(--white);
    position: relative;
    min-height: 100vh;
}

/* Arkaplan Overlay */
.background-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: url('../images/background.jpg');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    background-attachment: fixed;
    opacity: 0.35;
    z-index: -1;
    filter: blur(0px);
}

/* Navigasyon */
.main-nav {
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    box-shadow: var(--shadow);
    position: sticky;
    top: 0;
    z-index: 1000;
    padding: 1rem 0;
}

.nav-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 2rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo h1 {
    font-size: 1.6rem;
    background: linear-gradient(135deg, #8B1538 0%, #A91D3A 50%, #C41E3A 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    font-weight: 800;
    letter-spacing: 2px;
    margin-bottom: 0;
    line-height: 1.2;
    text-shadow: 0 2px 10px rgba(139, 21, 56, 0.2);
}

.logo p {
    font-size: 0.9rem;
    background: linear-gradient(135deg, #C41E3A 0%, #A91D3A 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin-top: -3px;
    letter-spacing: 1.5px;
    line-height: 1;
    font-weight: 600;
}

.nav-menu {
    display: flex;
    list-style: none;
    gap: 2rem;
}

.nav-menu a {
    text-decoration: none;
    background: linear-gradient(135deg, #8B1538 0%, #C41E3A 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    font-weight: 600;
    font-size: 1.05rem;
    letter-spacing: 0.5px;
    transition: all 0.3s ease;
    position: relative;
    padding: 0.5rem 1rem;
    border-radius: 25px;
}

.nav-menu a::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(139, 21, 56, 0.1) 0%, rgba(196, 30, 58, 0.1) 100%);
    border-radius: 25px;
    opacity: 0;
    transition: opacity 0.3s ease;
    z-index: -1;
}

.nav-menu a::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 0;
    height: 3px;
    background: linear-gradient(90deg, #8B1538 0%, #C41E3A 100%);
    border-radius: 2px;
    transition: width 0.3s ease;
}

.nav-menu a:hover {
    -webkit-text-fill-color: #8B1538;
    transform: translateY(-2px);
}

.nav-menu a:hover::before {
    opacity: 1;
}

.nav-menu a:hover::after {
    width: 80%;
}

/* Instagram Nav Link */
.instagram-nav-link {
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 0.5rem !important;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: linear-gradient(45deg, #f09433 0%, #e6683c 25%, #dc2743 50%, #cc2366 75%, #bc1888 100%);
    -webkit-background-clip: unset;
    -webkit-text-fill-color: var(--white);
    background-clip: unset;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(225, 48, 108, 0.3);
}

.instagram-nav-link::before {
    display: none;
}

.instagram-nav-link::after {
    display: none;
}

.instagram-nav-link:hover {
    -webkit-text-fill-color: var(--white);
    transform: translateY(-3px) scale(1.1);
    box-shadow: 0 6px 20px rgba(225, 48, 108, 0.5);
}

.instagram-nav-link svg {
    width: 22px;
    height: 22px;
    fill: currentColor;
}

/* Ana İçerik */
.main-content {
    padding-top: 0.5rem;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 2rem;
}

/* Hero Section */
.hero-section {
    min-height: 35vh;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    padding: 2rem 2rem 1rem;
}

.hero-content {
    max-width: 800px;
}

.hero-title {
    font-size: 4rem;
    background: linear-gradient(135deg, #8B1538 0%, #A91D3A 50%, #C41E3A 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin-bottom: 0.5rem;
    font-weight: 800;
    letter-spacing: 2px;
    text-shadow: 0 4px 20px rgba(139, 21, 56, 0.3);
}

.hero-subtitle {
    font-size: 1.4rem;
    background: linear-gradient(135deg, #722F37 0%, #8B1538 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin-bottom: 1.5rem;
    font-weight: 600;
    letter-spacing: 0.5px;
}

.cta-button {
    display: inline-block;
    padding: 1rem 2.5rem;
    background: var(--primary-color);
    color: var(--white);
    text-decoration: none;
    border-radius: 50px;
    font-weight: 600;
    transition: all 0.3s ease;
    box-shadow: var(--shadow);
}

.cta-button:hover {
    background: var(--secondary-color);
    transform: translateY(-2px);
    box-shadow: var(--shadow-lg);
}

/* Kategoriler Bölümü */
.categories-section {
    position: fixed;
    right: 20px;
    top: 50%;
    transform: translateY(-50%);
    width: 320px;
    height: 600px;
    z-index: 998;
    display: flex;
    flex-direction: column;
    overflow: hidden;
    background: var(--white);
    border-radius: 15px;
    box-shadow: 0 15px 40px rgba(139, 21, 56, 0.3);
    backdrop-filter: blur(10px);
    transition: all 0.3s ease;
}

.categories-section:hover {
    box-shadow: 0 20px 50px rgba(139, 21, 56, 0.4);
    transform: translateY(-50%) scale(1.02);
}

.categories-header {
    background: linear-gradient(135deg, #8B1538 0%, #722F37 25%, #8B1538 50%, #A91D3A 75%, #C41E3A 100%);
    padding: 1rem 1.25rem;
    display: flex;
    align-items: center;
    gap: 0.75rem;
    color: var(--white);
    font-weight: 600;
    flex-shrink: 0;
}

.categories-icon {
    width: 24px;
    height: 24px;
    flex-shrink: 0;
    stroke: currentColor;
}

.categories-header-text {
    flex: 1;
    font-size: 1rem;
    letter-spacing: 0.5px;
}

.categories-section .container {
    flex: 1;
    display: flex;
    flex-direction: column;
    padding: 1rem 0.75rem;
    overflow-y: auto;
    overflow-x: hidden;
}

.section-title {
    display: none;
}

.categories-grid {
    display: flex;
    flex-direction: column;
    gap: 1rem;
    flex: 1;
    justify-content: center;
}

.category-card {
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.95) 0%, rgba(255, 255, 255, 0.98) 100%);
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 4px 15px rgba(139, 21, 56, 0.2);
    transition: all 0.3s ease;
    cursor: pointer;
    width: 100%;
    backdrop-filter: blur(10px);
    border: 2px solid rgba(139, 21, 56, 0.1);
    position: relative;
}

.category-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: linear-gradient(90deg, #8B1538 0%, #C41E3A 100%);
    opacity: 0;
    transition: opacity 0.3s ease;
}

.category-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 25px rgba(139, 21, 56, 0.35);
    border-color: rgba(139, 21, 56, 0.3);
}

.category-card:hover::before {
    opacity: 1;
}

.category-card-inner {
    padding: 1.5rem;
    text-align: center;
}

.category-card h3 {
    font-size: 1.4rem;
    background: linear-gradient(135deg, #8B1538 0%, #C41E3A 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin-bottom: 0.5rem;
    font-weight: 700;
}

.category-card p {
    color: var(--text-light);
    margin-bottom: 0.75rem;
    font-size: 0.85rem;
}

.category-link {
    display: inline-block;
    color: var(--primary-color);
    text-decoration: none;
    font-weight: 600;
    transition: all 0.3s ease;
    padding: 0.5rem 1rem;
    border-radius: 20px;
    background: rgba(139, 21, 56, 0.1);
    margin-top: 0.5rem;
}

.category-link:hover {
    background: linear-gradient(135deg, #8B1538 0%, #C41E3A 100%);
    color: var(--white);
    transform: translateX(5px);
    box-shadow: 0 4px 10px rgba(139, 21, 56, 0.3);
}

/* Breadcrumb */
.breadcrumb {
    padding: 1rem 0;
    font-size: 1rem;
    font-weight: 500;
}

.breadcrumb a {
    background: linear-gradient(135deg, #8B1538 0%, #C41E3A 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    text-decoration: none;
    font-weight: 600;
    transition: all 0.3s ease;
    padding: 0.25rem 0.5rem;
    border-radius: 5px;
}

.breadcrumb a:hover {
    background: linear-gradient(135deg, #C41E3A 0%, #A91D3A 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.breadcrumb span {
    background: linear-gradient(135deg, #8B1538 0%, #C41E3A 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    font-weight: 700;
}

/* Sayfa Başlığı */
.page-title {
    font-size: 3rem;
    background: linear-gradient(135deg, #8B1538 0%, #A91D3A 50%, #C41E3A 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin-bottom: 2rem;
    font-weight: 800;
    letter-spacing: 1px;
    text-shadow: 0 4px 15px rgba(139, 21, 56, 0.2);
}

/* Alt Kategoriler Grid */
.subcategories-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
    gap: 1.5rem;
    margin-top: 2rem;
}

.subcategory-card {
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.95) 0%, rgba(255, 255, 255, 0.98) 100%);
    padding: 0;
    border-radius: 12px;
    box-shadow: 0 4px 15px rgba(139, 21, 56, 0.15);
    transition: all 0.3s ease;
    border: 2px solid rgba(139, 21, 56, 0.1);
    backdrop-filter: blur(10px);
    overflow: hidden;
}

.subcategory-cover {
    width: 100%;
    height: 200px;
    overflow: hidden;
    background: var(--bg-light);
}

.subcategory-cover img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s ease;
}

.subcategory-card:hover .subcategory-cover img {
    transform: scale(1.05);
}

.subcategory-content {
    padding: 1.5rem 2rem 2rem;
}

.subcategory-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 8px 25px rgba(139, 21, 56, 0.3);
    border-color: rgba(139, 21, 56, 0.3);
    background: linear-gradient(135deg, rgba(255, 255, 255, 1) 0%, rgba(255, 255, 255, 1) 100%);
}

.subcategory-content h3 {
    background: linear-gradient(135deg, #8B1538 0%, #C41E3A 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin-bottom: 1rem;
    font-size: 1.5rem;
    font-weight: 700;
    letter-spacing: 0.5px;
}

.subcategory-link {
    display: inline-block;
    background: linear-gradient(135deg, #8B1538 0%, #C41E3A 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    text-decoration: none;
    font-weight: 600;
    margin-top: 0.5rem;
    padding: 0.5rem 1rem;
    border-radius: 20px;
    border: 2px solid rgba(139, 21, 56, 0.2);
    transition: all 0.3s ease;
}

.subcategory-link:hover {
    background: linear-gradient(135deg, #8B1538 0%, #C41E3A 100%);
    -webkit-background-clip: unset;
    -webkit-text-fill-color: white;
    background-clip: unset;
    color: white;
    border-color: transparent;
    box-shadow: 0 4px 15px rgba(139, 21, 56, 0.3);
    transform: translateX(5px);
}

/* Görseller Grid */
.images-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
    gap: 2rem;
    margin-top: 2rem;
}

.image-card {
    background: var(--white);
    border-radius: 10px;
    overflow: hidden;
    box-shadow: var(--shadow);
    transition: all 0.3s ease;
}

.image-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-lg);
}

.image-wrapper {
    position: relative;
    width: 100%;
    padding-top: 75%; /* 4:3 Aspect Ratio */
    overflow: hidden;
}

.image-wrapper img {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s ease;
}

.image-card:hover .image-wrapper img {
    transform: scale(1.05);
}

.image-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.7);
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.image-card:hover .image-overlay {
    opacity: 1;
}

.download-menu {
    position: relative;
}

.download-btn {
    background: linear-gradient(135deg, #8B1538 0%, #C41E3A 100%);
    color: var(--white);
    border: none;
    padding: 0.8rem 1.5rem;
    border-radius: 25px;
    font-size: 1rem;
    font-weight: 700;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(139, 21, 56, 0.3);
    letter-spacing: 0.5px;
}

.download-btn:hover {
    background: linear-gradient(135deg, #C41E3A 0%, #A91D3A 100%);
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(139, 21, 56, 0.4);
}

.download-options {
    position: absolute;
    bottom: 100%;
    left: 50%;
    transform: translateX(-50%);
    margin-bottom: 0.5rem;
    background: var(--white);
    border-radius: 5px;
    box-shadow: var(--shadow-lg);
    overflow: hidden;
    min-width: 200px;
}

.download-option {
    display: block;
    padding: 0.8rem 1.5rem;
    color: var(--text-dark);
    text-decoration: none;
    transition: background 0.3s ease;
    border-bottom: 1px solid var(--border-color);
}

.download-option:last-child {
    border-bottom: none;
}

.download-option:hover {
    background: linear-gradient(135deg, rgba(139, 21, 56, 0.1) 0%, rgba(196, 30, 58, 0.1) 100%);
    color: var(--primary-color);
    font-weight: 600;
}

.image-title {
    padding: 1rem;
    background: linear-gradient(135deg, #8B1538 0%, #C41E3A 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    font-size: 1.3rem;
    font-weight: 700;
    letter-spacing: 0.3px;
}

.image-description {
    padding: 0 1rem 1rem;
    color: var(--text-light);
    font-size: 0.95rem;
    line-height: 1.6;
}

/* Empty State */
.empty-state {
    text-align: center;
    padding: 3rem;
    color: var(--text-light);
    font-size: 1.2rem;
}

.empty-state p {
    background: linear-gradient(135deg, #8B1538 0%, #C41E3A 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    font-weight: 600;
}

/* Footer */
.main-footer {
    background: var(--text-dark);
    color: var(--white);
    text-align: center;
    padding: 2rem 0;
    margin-top: 4rem;
}

/* Kategori ve Alt Kategori Sayfaları */
.category-page-section,
.subcategory-page-section {
    padding: 2rem 0 4rem;
}

/* Instagram Widget */
.instagram-widget {
    position: fixed;
    left: 20px;
    top: 50%;
    transform: translateY(-50%);
    width: 320px;
    height: 600px;
    max-height: 600px;
    background: var(--white);
    border-radius: 15px;
    box-shadow: var(--shadow-lg);
    z-index: 999;
    display: flex;
    flex-direction: column;
    overflow: hidden;
    transition: all 0.3s ease;
    backdrop-filter: blur(10px);
}

.instagram-widget:hover {
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.2);
    transform: translateY(-50%) scale(1.02);
}

.instagram-widget-header {
    background: linear-gradient(45deg, #f09433 0%, #e6683c 25%, #dc2743 50%, #cc2366 75%, #bc1888 100%);
    padding: 1rem 1.25rem;
    display: flex;
    align-items: center;
    gap: 0.75rem;
    color: var(--white);
    font-weight: 600;
}

.instagram-logo {
    width: 24px;
    height: 24px;
    fill: currentColor;
    flex-shrink: 0;
}

.instagram-text {
    flex: 1;
    font-size: 1rem;
    letter-spacing: 0.5px;
}

.instagram-link-btn {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 32px;
    height: 32px;
    background: rgba(255, 255, 255, 0.2);
    border-radius: 8px;
    color: var(--white);
    text-decoration: none;
    transition: all 0.3s ease;
    backdrop-filter: blur(5px);
}

.instagram-link-btn:hover {
    background: rgba(255, 255, 255, 0.3);
    transform: scale(1.1);
}

.instagram-link-btn svg {
    width: 16px;
    height: 16px;
}

.instagram-widget-content {
    flex: 1;
    overflow: hidden;
    position: relative;
    background: var(--white);
    padding: 0.75rem;
    display: flex;
    flex-direction: column;
}

.instagram-profile-info {
    width: 100%;
    height: 100%;
    display: flex;
    flex-direction: column;
}

.instagram-profile-header {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    margin-bottom: 0.75rem;
    padding-bottom: 0.75rem;
    border-bottom: 1px solid var(--border-color);
}

.instagram-avatar {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    background: linear-gradient(45deg, #f09433 0%, #e6683c 25%, #dc2743 50%, #cc2366 75%, #bc1888 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    padding: 2px;
}

.instagram-avatar img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 50%;
}

.instagram-profile-details {
    flex: 1;
    min-width: 0;
}

.instagram-username {
    font-size: 0.9rem;
    color: var(--text-dark);
    margin-bottom: 0.2rem;
    font-weight: 600;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
}

.instagram-bio {
    font-size: 0.8rem;
    color: var(--text-light);
    margin: 0;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
}

.instagram-stats {
    display: flex;
    justify-content: space-around;
    margin-bottom: 0.75rem;
    padding: 0.75rem 0;
    border-bottom: 1px solid var(--border-color);
}

.instagram-stat {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.25rem;
}

.stat-number {
    font-size: 1rem;
    font-weight: 700;
    color: var(--primary-color);
}

.stat-label {
    font-size: 0.7rem;
    color: var(--text-light);
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.instagram-recent-posts {
    margin-bottom: 0.75rem;
    flex: 1;
    min-height: 0;
    display: flex;
    align-items: center;
}

.instagram-single-image {
    width: 100%;
    border-radius: 8px;
    overflow: hidden;
    aspect-ratio: 1;
    background: var(--bg-light);
    flex-shrink: 0;
}

.instagram-single-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.instagram-loading {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding: 2rem;
    color: var(--text-light);
}

.loading-spinner {
    width: 40px;
    height: 40px;
    border: 3px solid var(--border-color);
    border-top-color: var(--primary-color);
    border-radius: 50%;
    animation: spin 1s linear infinite;
    margin-bottom: 1rem;
}

@keyframes spin {
    to { transform: rotate(360deg); }
}

.instagram-loading p {
    font-size: 0.85rem;
    margin: 0;
}

.instagram-posts-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 0.5rem;
}

.instagram-post-thumb {
    aspect-ratio: 1;
    background: var(--bg-light);
    border-radius: 4px;
    overflow: hidden;
    position: relative;
    cursor: pointer;
    transition: transform 0.2s ease;
}

.instagram-post-thumb:hover {
    transform: scale(1.05);
}

.instagram-post-thumb img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.instagram-post-thumb::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0);
    transition: background 0.2s ease;
}

.instagram-post-thumb:hover::after {
    background: rgba(0, 0, 0, 0.1);
}

.instagram-view-profile {
    margin-top: auto;
    padding-top: 0.75rem;
    border-top: 1px solid var(--border-color);
    flex-shrink: 0;
}

.instagram-profile-btn {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    width: 100%;
    padding: 0.75rem 1rem;
    background: linear-gradient(45deg, #f09433 0%, #e6683c 25%, #dc2743 50%, #cc2366 75%, #bc1888 100%);
    color: var(--white);
    text-decoration: none;
    border-radius: 8px;
    font-weight: 600;
    font-size: 0.9rem;
    transition: all 0.3s ease;
    box-shadow: var(--shadow);
}

.instagram-profile-btn:hover {
    transform: translateY(-2px);
    box-shadow: var(--shadow-lg);
}

.instagram-profile-btn svg {
    width: 18px;
    height: 18px;
}

/* Responsive */
@media (max-width: 1024px) {
    .instagram-widget {
        width: 280px;
        left: 15px;
    }
    
    .instagram-iframe {
        height: 450px;
    }
}

@media (max-width: 768px) {
    .instagram-widget {
        display: none; /* Mobilde Instagram widget'ı gizle */
    }
    
    .hero-title {
        font-size: 2.5rem;
    }
    
    .nav-menu {
        gap: 1rem;
        font-size: 0.9rem;
    }
    
    .instagram-nav-link {
        width: 36px;
        height: 36px;
    }
    
    .instagram-nav-link svg {
        width: 20px;
        height: 20px;
    }
    
    .categories-section {
        position: relative;
        right: auto;
        top: auto;
        transform: none;
        width: 100%;
        height: auto;
        margin: 2rem 0;
        padding-right: 0;
    }
    
    .categories-grid {
        align-items: center;
    }
    
    .section-title {
        text-align: center;
    }
    
    .category-card {
        width: 100%;
        max-width: 100%;
    }
    
    .subcategories-grid,
    .images-grid {
        grid-template-columns: 1fr;
    }
    
}

