/* BABAOĞUL Mutfak & Banyo - Ana Stil Dosyası */
/* Renk Paleti: Logo tonları - Dark Blue (#1a3a5c), Golden Yellow (#d4af37), White */

:root {
    --primary-blue: #1a3a5c;
    --dark-blue: #0f2537;
    --golden-yellow: #d4af37;
    --light-gold: #f4d03f;
    --white: #ffffff;
    --light-gray: #f5f5f5;
    --dark-gray: #333333;
    --text-gray: #666666;
    --border-gray: #e0e0e0;
    --shadow: rgba(0, 0, 0, 0.1);
    --shadow-hover: rgba(0, 0, 0, 0.2);
}

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

body {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    line-height: 1.6;
    color: var(--dark-gray);
    background-color: var(--white);
    overflow-x: hidden;
}

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

/* Kapı Açılış Animasyonu */
.door-animation {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 10000;
    background: var(--primary-blue);
    display: flex;
    justify-content: center;
    align-items: center;
    overflow: hidden;
}

.door-animation.hidden {
    display: none;
}

.door-left,
.door-right {
    position: absolute;
    top: 0;
    width: 50%;
    height: 100%;
    background: var(--primary-blue);
    transition: transform 2s ease-in-out;
    z-index: 2;
}

.door-left {
    left: 0;
    border-right: 2px solid var(--golden-yellow);
}

.door-right {
    right: 0;
    border-left: 2px solid var(--golden-yellow);
}

.door-animation.active .door-left {
    transform: translateX(-100%);
}

.door-animation.active .door-right {
    transform: translateX(100%);
}

.door-logo {
    position: relative;
    z-index: 3;
    animation: logoZoom 2s ease-in-out;
    opacity: 0;
    animation-fill-mode: forwards;
}

.door-logo img {
    width: 200px;
    height: 200px;
    object-fit: contain;
    filter: drop-shadow(0 0 20px var(--golden-yellow));
}

@keyframes logoZoom {
    0% {
        transform: scale(0.5);
        opacity: 0;
    }
    50% {
        transform: scale(1.2);
        opacity: 1;
    }
    100% {
        transform: scale(1);
        opacity: 1;
    }
}

/* Sabit İkonlar (Sağ Taraf) */
.fixed-icons {
    position: fixed;
    right: 20px;
    top: 50%;
    transform: translateY(-50%);
    z-index: 1000;
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.icon-btn {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--white);
    text-decoration: none;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px var(--shadow);
    position: relative;
}

.icon-btn svg {
    width: 24px;
    height: 24px;
}

.whatsapp-btn {
    background: #25D366;
}

.whatsapp-btn:hover {
    background: #20BA5A;
    transform: scale(1.1);
    box-shadow: 0 6px 20px rgba(37, 211, 102, 0.4);
}

.instagram-btn {
    background: linear-gradient(45deg, #f09433 0%, #e6683c 25%, #dc2743 50%, #cc2366 75%, #bc1888 100%);
}

.instagram-btn:hover {
    transform: scale(1.1);
    box-shadow: 0 6px 20px rgba(188, 24, 136, 0.4);
}

.phone-btn {
    background: var(--golden-yellow);
    color: var(--primary-blue);
}

.phone-btn:hover {
    background: var(--light-gold);
    transform: scale(1.1);
    box-shadow: 0 6px 20px rgba(212, 175, 55, 0.4);
}

.facebook-btn {
    background: #1877F2;
}

.facebook-btn:hover {
    background: #166FE5;
    transform: scale(1.1);
    box-shadow: 0 6px 20px rgba(24, 119, 242, 0.4);
}

/* Navigasyon */
.navbar {
    background: var(--white);
    box-shadow: 0 2px 10px var(--shadow);
    position: sticky;
    top: 0;
    z-index: 999;
    padding: 15px 0;
    margin-bottom: 0;
}

.navbar + .home-section {
    margin-top: 0;
}

.navbar .container {
    display: flex;
    justify-content: center;
    align-items: center;
    width: 100%;
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 60px;
    position: relative;
}

.nav-brand {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-left: 0;
    margin-right: auto;
    text-decoration: none;
    cursor: pointer;
    transition: opacity 0.3s ease;
    position: relative;
    flex-shrink: 0;
}

.nav-brand:hover {
    opacity: 0.8;
}

.logo {
    width: 50px;
    height: 50px;
    object-fit: contain;
    filter: drop-shadow(0 2px 8px rgba(26, 58, 92, 0.2));
    transition: transform 0.3s ease;
}

.nav-brand:hover .logo {
    transform: scale(1.05);
}

.brand-text {
    font-size: 24px;
    font-weight: 800;
    margin-left: 0;
    display: flex;
    align-items: center;
    gap: 2px;
    letter-spacing: 0.8px;
}

.brand-baba {
    color: var(--primary-blue);
    text-shadow: 0 2px 4px rgba(26, 58, 92, 0.2);
}

.brand-ogul {
    color: var(--golden-yellow);
    text-shadow: 0 2px 4px rgba(212, 175, 55, 0.3);
}

.nav-menu {
    display: flex;
    list-style: none;
    gap: 35px;
    align-items: center;
    margin-left: auto;
    margin-right: 0;
    padding-right: 0;
    position: relative;
    flex-shrink: 0;
}

.nav-link {
    text-decoration: none;
    color: var(--dark-gray);
    font-weight: 500;
    transition: color 0.3s ease;
    position: relative;
}

.nav-link:hover,
.nav-link.active {
    color: var(--golden-yellow);
}

.nav-link.active::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 100%;
    height: 2px;
    background: var(--golden-yellow);
}

.admin-link {
    background: var(--primary-blue);
    color: var(--white);
    padding: 8px 20px;
    border-radius: 5px;
}

.admin-link:hover {
    background: var(--dark-blue);
    color: var(--white);
}

.hamburger {
    display: none;
    flex-direction: column;
    gap: 5px;
    cursor: pointer;
    z-index: 1001;
}

.hamburger span {
    width: 25px;
    height: 3px;
    background: var(--primary-blue);
    transition: all 0.3s ease;
}

.hamburger.active span:nth-child(1) {
    transform: rotate(45deg) translate(8px, 8px);
}

.hamburger.active span:nth-child(2) {
    opacity: 0;
}

.hamburger.active span:nth-child(3) {
    transform: rotate(-45deg) translate(7px, -7px);
}

/* Bölümler */
.section {
    padding: 0;
    min-height: auto;
    margin: 0;
}

.home-section {
    padding: 0;
    margin: 0;
}

.products-section {
    padding: 60px 0;
    margin: 0;
}

.about-section {
    padding: 60px 0;
    margin: 0;
}

.contact-section {
    padding: 60px 0;
    margin: 0;
}

.section-title {
    text-align: center;
    font-size: 36px;
    color: var(--primary-blue);
    margin-bottom: 50px;
    position: relative;
    padding-bottom: 20px;
}

.section-title::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 80px;
    height: 3px;
    background: var(--golden-yellow);
}

/* Slider */
.slider-container {
    position: relative;
    width: 100%;
    height: 520px;
    max-height: 70vh;
    overflow: hidden;
    margin-top: 0;
    margin-bottom: 0;
    padding: 0;
}

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

.slider-slide {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    opacity: 0;
    transition: opacity 1s ease-in-out;
}

.slider-slide.active {
    opacity: 1;
    z-index: 1;
}

.slider-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
    background: var(--dark-blue);
}

/* Slider görseli ilk yüklendiğinde tam boyutta göster, sonra animasyonlu küçült */
.slider-slide.active .slider-image {
    animation: sliderImageZoom 3s ease-in-out;
}

@keyframes sliderImageZoom {
    0% {
        transform: scale(1);
    }
    50% {
        transform: scale(1);
    }
    100% {
        transform: scale(0.98);
    }
}

/* Logo slider için özel stil */
.slider-slide[data-logo="true"] .slider-image {
    object-fit: contain;
    background: linear-gradient(135deg, var(--primary-blue) 0%, var(--dark-blue) 100%);
    padding: 28px;
    animation: sliderImageZoom 3s ease-in-out;
    max-height: 90%;
    width: 100%;
}

.slider-content {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    background: linear-gradient(to top, rgba(26, 58, 92, 0.9), transparent);
    padding: 60px 40px 40px;
    color: var(--white);
    z-index: 2;
}

.slider-title {
    font-size: 48px;
    font-weight: bold;
    margin-bottom: 15px;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
}

.slider-description {
    font-size: 20px;
    line-height: 1.6;
    text-shadow: 1px 1px 3px rgba(0, 0, 0, 0.5);
}

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

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

.dot.active {
    background: var(--golden-yellow);
    width: 30px;
    border-radius: 6px;
}

.slider-btn {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background: rgba(255, 255, 255, 0.3);
    border: none;
    color: var(--white);
    font-size: 40px;
    width: 50px;
    height: 50px;
    border-radius: 50%;
    cursor: pointer;
    z-index: 3;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
}

.slider-btn:hover {
    background: rgba(255, 255, 255, 0.5);
}

.prev-btn {
    left: 20px;
}

.next-btn {
    right: 20px;
}

/* Ürünler Grid */
.products-section {
    background: var(--light-gray);
}

/* Filtreleme Alanı */
.products-filters {
    background: var(--white);
    padding: 25px;
    border-radius: 10px;
    margin-bottom: 30px;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
    display: flex;
    flex-wrap: wrap;
    gap: 20px;
    align-items: flex-end;
}

.filter-group {
    display: flex;
    flex-direction: column;
    gap: 8px;
    flex: 1;
    min-width: 150px;
}

.filter-group label {
    font-size: 14px;
    font-weight: 600;
    color: var(--primary-blue);
}

.filter-select,
.filter-input {
    padding: 10px 15px;
    border: 2px solid var(--border-gray);
    border-radius: 5px;
    font-size: 14px;
    transition: all 0.3s ease;
    background: var(--white);
    color: var(--dark-gray);
}

.filter-select:focus,
.filter-input:focus {
    outline: none;
    border-color: var(--golden-yellow);
    box-shadow: 0 0 0 3px rgba(212, 175, 55, 0.1);
}

.price-range {
    display: flex;
    align-items: center;
    gap: 10px;
}

.price-input {
    flex: 1;
    min-width: 100px;
}

.price-separator {
    color: var(--text-gray);
    font-weight: 600;
}

.btn-clear-filters {
    padding: 10px 20px;
    background: var(--primary-blue);
    color: var(--white);
    border: none;
    border-radius: 5px;
    font-size: 14px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    white-space: nowrap;
}

.btn-clear-filters:hover {
    background: var(--dark-blue);
    transform: translateY(-2px);
    box-shadow: 0 4px 10px rgba(26, 58, 92, 0.3);
}

.products-grid {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    gap: 15px;
    margin-top: 0;
}

@media (max-width: 1600px) {
    .products-grid {
        grid-template-columns: repeat(4, 1fr);
    }
}

@media (max-width: 1200px) {
    .products-grid {
        grid-template-columns: repeat(3, 1fr);
    }
}

@media (max-width: 768px) {
    .products-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 12px;
    }
}

@media (max-width: 480px) {
    .products-grid {
        grid-template-columns: 1fr;
    }
}

.product-card {
    background: var(--white);
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.06);
    transition: all 0.3s ease;
    cursor: pointer;
    position: relative;
    border: 1px solid rgba(26, 58, 92, 0.08);
}

.product-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, var(--golden-yellow), var(--light-gold));
    transform: scaleX(0);
    transition: transform 0.3s ease;
}

.product-card:hover::before {
    transform: scaleX(1);
}

.product-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 4px 15px rgba(26, 58, 92, 0.15);
    border-color: var(--golden-yellow);
}

.product-image {
    width: 100%;
    height: 160px;
    object-fit: contain;
    display: block;
    transition: transform 0.3s ease;
    background: var(--light-gray);
}

.product-card:hover .product-image {
    transform: scale(1.03);
}

@media (max-width: 768px) {
    .product-image {
        height: 150px;
    }
}

@media (max-width: 480px) {
    .product-image {
        height: 200px;
    }
}

.product-info {
    padding: 12px;
    background: linear-gradient(to bottom, var(--white), var(--light-gray));
}

.product-name {
    font-size: 14px;
    font-weight: 700;
    color: var(--primary-blue);
    margin-bottom: 8px;
    line-height: 1.3;
    min-height: 36px;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.product-price {
    font-size: 18px;
    color: var(--golden-yellow);
    font-weight: 800;
    text-shadow: 0 1px 3px rgba(212, 175, 55, 0.2);
    position: relative;
    display: inline-block;
    padding: 2px 0;
    margin-bottom: 5px;
}

.product-price::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 35px;
    height: 2px;
    background: var(--golden-yellow);
    border-radius: 2px;
}

.product-category {
    font-size: 12px;
    color: var(--text-gray);
    font-style: italic;
    margin-top: 5px;
}

@media (max-width: 768px) {
    .product-info {
        padding: 10px;
    }
    
    .product-name {
        font-size: 13px;
        min-height: 32px;
        margin-bottom: 6px;
    }
    
    .product-price {
        font-size: 16px;
    }
    
    .product-price::after {
        width: 30px;
    }
}

@media (max-width: 480px) {
    .product-info {
        padding: 12px;
    }
    
    .product-name {
        font-size: 14px;
        min-height: 36px;
    }
    
    .product-price {
        font-size: 18px;
    }
}

/* Modal */
.modal {
    display: none;
    position: fixed;
    z-index: 2000;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.8);
    overflow: auto;
    animation: fadeIn 0.3s ease;
}

.modal.show {
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 20px;
}

@keyframes fadeIn {
    from {
        opacity: 0;
    }
    to {
        opacity: 1;
    }
}

.modal-content {
    background: var(--white);
    border-radius: 10px;
    max-width: 900px;
    width: 100%;
    max-height: 90vh;
    overflow-y: auto;
    position: relative;
    animation: slideUp 0.3s ease;
}

@keyframes slideUp {
    from {
        transform: translateY(50px);
        opacity: 0;
    }
    to {
        transform: translateY(0);
        opacity: 1;
    }
}

.modal-close {
    position: absolute;
    top: 15px;
    right: 20px;
    font-size: 35px;
    font-weight: bold;
    color: var(--text-gray);
    cursor: pointer;
    z-index: 10;
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.9);
    transition: all 0.3s ease;
}

.modal-close:hover {
    background: var(--primary-blue);
    color: var(--white);
}

.modal-body {
    padding: 30px;
}

.modal-main-image {
    width: 100%;
    margin-bottom: 15px;
    border-radius: 10px;
    overflow: hidden;
    background: var(--light-gray);
    display: flex;
    align-items: center;
    justify-content: center;
    max-height: 250px;
    min-height: 180px;
}

.modal-main-image img {
    width: 100%;
    height: auto;
    max-height: 250px;
    object-fit: contain;
    display: block;
}

@media (max-width: 768px) {
    .modal-main-image {
        max-height: 200px;
        min-height: 150px;
    }
    
    .modal-main-image img {
        max-height: 200px;
    }
}

.modal-info h2 {
    font-size: 26px;
    color: var(--primary-blue);
    margin-bottom: 12px;
}

.modal-price {
    font-size: 22px;
    color: var(--golden-yellow);
    font-weight: bold;
    margin-bottom: 18px;
}

@media (max-width: 768px) {
    .modal-info h2 {
        font-size: 22px;
    }
    
    .modal-price {
        font-size: 20px;
    }
}

@media (max-width: 480px) {
    .modal-info h2 {
        font-size: 20px;
    }
    
    .modal-price {
        font-size: 18px;
    }
}

.modal-gallery {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(120px, 1fr));
    gap: 15px;
    margin-bottom: 25px;
    padding-bottom: 25px;
    border-bottom: 2px solid var(--border-gray);
}

.gallery-item {
    cursor: pointer;
    border-radius: 10px;
    overflow: hidden;
    border: 3px solid transparent;
    transition: all 0.3s ease;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
}

.gallery-item:hover {
    transform: translateY(-3px);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
}

.gallery-item:hover,
.gallery-item.active {
    border-color: var(--golden-yellow);
    box-shadow: 0 4px 15px rgba(212, 175, 55, 0.3);
}

.gallery-item img {
    width: 100%;
    height: 120px;
    object-fit: cover;
    display: block;
    transition: transform 0.3s ease;
}

.gallery-item:hover img {
    transform: scale(1.1);
}

.gallery-item:hover img {
    transform: scale(1.1);
}

.modal-description {
    margin-bottom: 25px;
    line-height: 1.8;
    color: var(--text-gray);
}

.modal-description p {
    margin-bottom: 15px;
}

.modal-description strong {
    color: var(--primary-blue);
    font-weight: bold;
}

.modal-description em {
    font-style: italic;
}

.btn-whatsapp {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    background: #25D366;
    color: var(--white);
    padding: 15px 30px;
    border-radius: 8px;
    text-decoration: none;
    font-weight: bold;
    transition: all 0.3s ease;
    margin-top: 20px;
}

.btn-whatsapp:hover {
    background: #20BA5A;
    transform: translateY(-2px);
    box-shadow: 0 4px 15px rgba(37, 211, 102, 0.4);
}

.btn-whatsapp svg {
    width: 24px;
    height: 24px;
}

/* Hakkımızda */
.about-section {
    background: var(--white);
}

.about-content {
    max-width: 800px;
    margin: 0 auto;
    font-size: 18px;
    line-height: 1.8;
    color: var(--text-gray);
    text-align: justify;
}

.about-content p {
    margin-bottom: 20px;
}

/* İletişim */
.contact-section {
    background: var(--light-gray);
}

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

.contact-info {
    display: flex;
    flex-direction: column;
    gap: 30px;
}

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

.contact-item svg {
    width: 30px;
    height: 30px;
    color: var(--golden-yellow);
    flex-shrink: 0;
    margin-top: 5px;
}

.contact-item h3 {
    font-size: 20px;
    color: var(--primary-blue);
    margin-bottom: 10px;
}

.contact-item p {
    color: var(--text-gray);
    line-height: 1.6;
}

.contact-map {
    width: 100%;
    height: 400px;
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 4px 15px var(--shadow);
}

.contact-map iframe {
    width: 100%;
    height: 100%;
    border: none;
}

/* Footer */
.footer {
    background: var(--primary-blue);
    color: var(--white);
    padding: 50px 0 25px;
}

.footer-main {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 30px;
    margin-bottom: 30px;
}

.footer-brand {
    display: flex;
    align-items: center;
    gap: 12px;
    text-decoration: none;
}

.footer-logo {
    width: 50px;
    height: 50px;
    object-fit: contain;
}

.footer-brand-text {
    font-size: 24px;
    font-weight: 800;
    display: flex;
    align-items: center;
    gap: 2px;
}

.footer-brand-text .brand-baba {
    color: var(--white);
}

.footer-brand-text .brand-ogul {
    color: var(--golden-yellow);
}

.footer-nav {
    display: flex;
    gap: 25px;
    align-items: center;
    flex-wrap: wrap;
}

.footer-nav-link {
    color: var(--white);
    text-decoration: none;
    font-size: 15px;
    font-weight: 500;
    transition: color 0.3s ease;
}

.footer-nav-link:hover {
    color: var(--golden-yellow);
}

.footer-social {
    display: flex;
    gap: 12px;
    align-items: center;
}

.footer-icon {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
    text-decoration: none;
}

.footer-icon svg {
    width: 20px;
    height: 20px;
    fill: var(--white);
}

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

.footer-icon.instagram-btn {
    background: linear-gradient(45deg, #f09433 0%, #e6683c 25%, #dc2743 50%, #cc2366 75%, #bc1888 100%);
}

.footer-icon.facebook-btn {
    background: #1877F2;
}

.footer-icon.phone-btn {
    background: var(--golden-yellow);
    color: var(--primary-blue);
}

.footer-icon:hover {
    transform: translateY(-3px) scale(1.1);
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.3);
}

.footer-divider {
    height: 1px;
    background: rgba(255, 255, 255, 0.2);
    margin: 25px 0;
}

.footer-bottom {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 20px;
}

.footer-copyright {
    font-size: 14px;
    color: rgba(255, 255, 255, 0.8);
    margin: 0;
}

.uzalsoft-link {
    color: var(--golden-yellow);
    text-decoration: none;
    font-weight: 600;
    font-size: 14px;
    transition: all 0.3s ease;
    position: relative;
    display: inline-block;
    padding: 5px 15px;
    border-radius: 5px;
    overflow: hidden;
}

.uzalsoft-text {
    position: relative;
    display: inline-block;
    animation: shimmerGlow 3s ease-in-out infinite, slideInOut 4s ease-in-out infinite;
    background: linear-gradient(90deg, 
        var(--golden-yellow) 0%, 
        #ffd700 25%, 
        var(--light-gold) 50%, 
        #ffd700 75%, 
        var(--golden-yellow) 100%);
    background-size: 200% 100%;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    text-shadow: 0 0 10px rgba(212, 175, 55, 0.5);
}

.uzalsoft-link::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, 
        transparent, 
        rgba(255, 215, 0, 0.4), 
        transparent);
    animation: shine 2.5s ease-in-out infinite;
    z-index: 1;
}

.uzalsoft-link::after {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 0;
    height: 0;
    border-radius: 50%;
    background: radial-gradient(circle, 
        rgba(212, 175, 55, 0.3) 0%, 
        transparent 70%);
    transform: translate(-50%, -50%);
    animation: pulseGlow 2s ease-in-out infinite;
    z-index: 0;
}

@keyframes shimmerGlow {
    0%, 100% {
        background-position: -200% 0;
        filter: brightness(1);
    }
    50% {
        background-position: 200% 0;
        filter: brightness(1.5);
    }
}

@keyframes slideInOut {
    0%, 100% {
        transform: translateX(0);
    }
    25% {
        transform: translateX(-3px);
    }
    75% {
        transform: translateX(3px);
    }
}

@keyframes shine {
    0% {
        left: -100%;
    }
    50% {
        left: 100%;
    }
    100% {
        left: 100%;
    }
}

@keyframes pulseGlow {
    0%, 100% {
        width: 0;
        height: 0;
        opacity: 0;
    }
    50% {
        width: 150px;
        height: 150px;
        opacity: 0.6;
    }
}

.uzalsoft-link:hover .uzalsoft-text {
    animation: shimmerGlow 1.5s ease-in-out infinite, slideInOut 2s ease-in-out infinite;
}

.uzalsoft-link:hover::after {
    animation: pulseGlow 1s ease-in-out infinite;
}

/* Responsive */
@media (max-width: 768px) {
    .hamburger {
        display: flex;
    }

    .nav-menu {
        position: fixed;
        top: 70px;
        left: -100%;
        flex-direction: column;
        background: var(--white);
        width: 100%;
        padding: 20px;
        box-shadow: 0 4px 10px var(--shadow);
        transition: left 0.3s ease;
        z-index: 1000;
        gap: 0;
    }

    .nav-menu li {
        width: 100%;
        border-bottom: 1px solid var(--border-gray);
    }

    .nav-menu li:last-child {
        border-bottom: none;
    }

    .nav-menu .nav-link {
        display: block;
        padding: 15px 0;
        width: 100%;
    }

    .nav-menu.active {
        left: 0;
    }

    .nav-brand {
        gap: 8px;
    }

    .logo {
        width: 40px;
        height: 40px;
    }

    .brand-text {
        font-size: 18px;
    }

    .section {
        padding: 40px 0;
        margin: 0;
    }
    
    .home-section {
        padding: 0;
        margin: 0;
    }
    
    .products-section {
        padding: 40px 0;
        margin: 0;
    }
    
    .about-section {
        padding: 40px 0;
        margin: 0;
    }
    
    .contact-section {
        padding: 40px 0;
        margin: 0;
    }
    
    .navbar .container {
        padding: 0 20px;
        max-width: 100%;
    }
    
    .nav-brand {
        gap: 8px;
    }
    
    .nav-menu {
        gap: 15px;
    }

    .section-title {
        font-size: 28px;
        margin-bottom: 30px;
    }

    .slider-container {
        height: 400px;
    }

    .slider-title {
        font-size: 24px;
        margin-bottom: 10px;
    }

    .slider-description {
        font-size: 14px;
    }

    .slider-content {
        padding: 30px 20px 20px;
    }

    .slider-btn {
        width: 40px;
        height: 40px;
        font-size: 30px;
    }

    .prev-btn {
        left: 10px;
    }

    .next-btn {
        right: 10px;
    }

    .contact-wrapper {
        grid-template-columns: 1fr;
        gap: 30px;
    }

    .contact-map {
        height: 300px;
    }

    .fixed-icons {
        right: 10px;
        gap: 10px;
    }

    .icon-btn {
        width: 45px;
        height: 45px;
    }

    .icon-btn svg {
        width: 20px;
        height: 20px;
    }

    .modal-body {
        padding: 20px;
    }

    .modal-gallery {
        grid-template-columns: repeat(auto-fill, minmax(80px, 1fr));
        gap: 10px;
    }

    .gallery-item img {
        height: 80px;
    }

    .btn-whatsapp {
        padding: 12px 20px;
        font-size: 14px;
    }

    .about-content {
        font-size: 16px;
        padding: 0 10px;
    }
}

@media (max-width: 480px) {
    .container {
        padding: 0 15px;
    }

    .section-title {
        font-size: 24px;
    }

    .slider-container {
        height: 300px;
        margin-top: 0;
    }
    
    .slider-image {
        object-fit: cover;
    }

    .slider-title {
        font-size: 20px;
    }

    .slider-description {
        font-size: 12px;
    }

    .fixed-icons {
        right: 5px;
        gap: 8px;
    }

    .icon-btn {
        width: 40px;
        height: 40px;
    }

    .icon-btn svg {
        width: 18px;
        height: 18px;
    }

    .contact-item {
        flex-direction: column;
        gap: 10px;
    }

    .contact-item svg {
        width: 24px;
        height: 24px;
    }

    .contact-map {
        height: 250px;
    }

    .modal-content {
        max-width: 100%;
        max-height: 100vh;
        margin: 0;
        border-radius: 0;
    }

    .modal-body {
        padding: 15px;
    }

    .modal-info h2 {
        font-size: 20px;
    }

    .modal-price {
        font-size: 18px;
    }

    .modal-gallery {
        grid-template-columns: repeat(auto-fill, minmax(70px, 1fr));
    }

    .gallery-item img {
        height: 70px;
    }
    
    .products-filters {
        display: grid;
        grid-template-columns: 1fr 1fr;
        gap: 15px;
        padding: 20px;
    }
    
    .filter-group {
        min-width: 0;
    }
    
    .filter-group:first-child {
        grid-column: 1;
    }
    
    .filter-group:nth-child(2) {
        grid-column: 2;
    }
    
    .filter-group:nth-child(3) {
        grid-column: 1;
        grid-row: 2;
    }
    
    .price-range {
        display: flex;
        flex-direction: row;
        align-items: center;
        gap: 8px;
    }
    
    .price-input {
        flex: 1;
    }
    
    .price-separator {
        display: inline;
    }
    
    .btn-clear-filters {
        grid-column: 2;
        grid-row: 2;
        width: fit-content;
        max-width: 95px;
        min-width: 75px;
        align-self: end;
        justify-self: end;
        padding: 7px 10px;
        font-size: 11px;
        white-space: nowrap;
        text-align: center;
        line-height: 1.2;
    }
    
    .footer-content {
        gap: 20px;
    }
    
    .footer-social {
        gap: 12px;
    }
    
    .footer-icon {
        width: 40px;
        height: 40px;
    }
    
    .footer-icon svg {
        width: 20px;
        height: 20px;
    }
    
    .uzalsoft-logo {
        height: 18px;
    }
    
    .brand-text {
        font-size: 20px;
    }
    
    .brand-baba,
    .brand-ogul {
        font-size: 20px;
    }
    
    .footer-main {
        flex-direction: column;
        text-align: center;
        gap: 25px;
    }
    
    .footer-brand {
        justify-content: center;
    }
    
    .footer-nav {
        justify-content: center;
        gap: 15px;
        flex-wrap: wrap;
    }
    
    .footer-nav-link {
        font-size: 14px;
    }
    
    .footer-social {
        justify-content: center;
        gap: 10px;
    }
    
    .footer-icon {
        width: 38px;
        height: 38px;
    }
    
    .footer-icon svg {
        width: 18px;
        height: 18px;
    }
    
    .footer-bottom {
        flex-direction: column;
        text-align: center;
        gap: 15px;
    }
    
    .footer-brand-text {
        font-size: 20px;
    }
    
    .footer-copyright {
        font-size: 12px;
    }
    
    .uzalsoft-link {
        font-size: 12px;
        padding: 4px 10px;
    }
    
    .uzalsoft-text {
        font-size: 12px;
    }
}

