/* Contact Section Header Styles */
.contact-info h3 {
    color: var(--primary-color);
    font-size: 1.8rem;
    font-weight: 700;
    margin-bottom: 1.5rem;
    position: relative;
    display: inline-block;
    padding-bottom: 0.5rem;
}

.contact-info h3::before {
    content: '';
    position: absolute;
    bottom: 0;
    right: 0;
    width: 100%;
    height: 3px;
    background: linear-gradient(to left, var(--primary-color), transparent);
}

.contact-info h3::after {
    content: '';
    position: absolute;
    bottom: -2px;
    right: 0;
    width: 50%;
    height: 1px;
    background: linear-gradient(to left, var(--primary-color), transparent);
}

/* Extended Contact Social Links */
.contact-info .social-links {
    position: relative !important;
    z-index: 5 !important;
    pointer-events: auto !important;
    display: flex;
    gap: 1.2rem;
    margin-top: 2.5rem;
}

.contact-info .social-link {
    position: relative !important;
    z-index: 6 !important;
    pointer-events: auto !important;
    cursor: pointer !important;
    width: 45px;
    height: 45px;
    background: var(--light-bg);
    border-radius: 15px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--primary-color);
    text-decoration: none;
    overflow: hidden;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    border: 1px solid rgba(212, 175, 55, 0.1);
}

.contact-info .social-link::before {
    z-index: 6 !important;
    content: '';
    position: absolute;
    inset: 0;
    background: var(--gold-gradient);
    opacity: 0;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.contact-info .social-link .social-icon {
    position: relative !important;
    z-index: 7 !important;
    pointer-events: auto !important;
    font-size: 1.3rem;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.contact-info .social-link:hover {
    transform: translateY(-5px) scale(1.15) !important;
    border-color: rgba(212, 175, 55, 0.3) !important;
    box-shadow: 0 15px 30px rgba(212, 175, 55, 0.2) !important;
}

.contact-info .social-link:hover::before {
    opacity: 1 !important;
}

.contact-info .social-link:hover .social-icon {
    transform: rotate(360deg) scale(1.2) !important;
    color: white !important;
}

.contact-info .social-link:hover .social-hover {
    display: none;
}

/* Platform Specific Colors */
.contact-info .social-link.facebook:hover {
    background: linear-gradient(45deg, #1877f2, #0099ff) !important;
    border-color: rgba(255, 255, 255, 0.3) !important;
}

.contact-info .social-link.instagram:hover {
    background: linear-gradient(45deg, #f09433 0%, #e6683c 25%, #dc2743 50%, #cc2366 75%, #bc1888 100%) !important;
    border-color: rgba(255, 255, 255, 0.3) !important;
}

.contact-info .social-link.whatsapp:hover {
    background: linear-gradient(45deg, #25d366, #128c7e) !important;
    border-color: rgba(255, 255, 255, 0.3) !important;
}

.contact-info .social-link.telegram:hover {
    background: linear-gradient(45deg, #0088cc, #229ed9) !important;
    border-color: rgba(255, 255, 255, 0.3) !important;
}

/* Responsive Adjustments */
@media (max-width: 767.98px) {
    .contact-info .social-links {
        justify-content: center;
    }
    
    .contact-info .social-link:hover {
        transform: translateY(-3px) scale(1.1);
    }
}

/* Header Phone Number Fixes */
.nav-phones {
    display: flex;
    gap: 1rem;
    padding: 0.5rem;
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.1) 0%, rgba(212, 175, 55, 0.1) 100%);
    border-radius: 12px;
    border: 1px solid rgba(212, 175, 55, 0.2);
    backdrop-filter: blur(10px);
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
    max-width: 100%;
    overflow: hidden;
}

.nav-phone {
    display: flex;
    align-items: center;
    gap: 0.8rem;
    text-decoration: none;
    transition: all 0.4s ease;
    padding: 0.5rem 0.8rem;
    border-radius: 10px;
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.8) 0%, rgba(255, 255, 255, 0.9) 100%);
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.05);
    border: 1px solid rgba(212, 175, 55, 0.1);
    min-width: 180px;
    max-width: 200px;
}

.nav-phone i {
    font-size: 1.1rem;
    color: var(--primary-color);
    background: var(--light-bg);
    width: 35px;
    height: 35px;
    min-width: 35px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 8px;
    transition: all 0.4s ease;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
}

.phone-info {
    display: flex;
    flex-direction: column;
    gap: 0.2rem;
    overflow: hidden;
}

.phone-label {
    font-size: 0.8rem;
    color: var(--primary-color);
    font-weight: 600;
    transition: all 0.3s ease;
    opacity: 0.9;
    white-space: nowrap;
}

.phone-number {
    font-size: 1rem;
    color: var(--secondary-color);
    font-weight: 700;
    transition: all 0.3s ease;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

@media (max-width: 991.98px) {
    .nav-phones {
        display: none;
    }

    .navbar-collapse .nav-phones {
        display: flex !important;
        flex-direction: column;
        gap: 0.5rem;
        padding: 0.5rem;
        margin-top: 1rem;
        width: 100%;
        background: rgba(255, 255, 255, 0.05);
        border-radius: 8px;
    }

    .nav-phone {
        width: 100%;
        max-width: none;
        justify-content: center;
        background: rgba(255, 255, 255, 0.1);
        border: 1px solid rgba(255, 255, 255, 0.1);
    }

    .nav-phone i {
        background: var(--primary-color);
        color: white;
    }
    
    .phone-info {
        text-align: center;
    }

    .phone-label {
        color: rgba(255, 255, 255, 0.8);
    }

    .phone-number {
        color: white;
    }

    .nav-phone:hover {
        background: rgba(212, 175, 55, 0.1);
        border-color: var(--primary-color);
    }

    .nav-phone:hover i {
        background: var(--primary-color);
        transform: rotate(15deg);
    }

    /* Contact Section Phone Numbers */
    .contact-info .nav-phones {
        display: flex !important;
        flex-direction: column;
        gap: 0.5rem;
        padding: 0.5rem;
        width: 100%;
        background: rgba(255, 255, 255, 0.05);
        border-radius: 8px;
        margin: 1rem 0;
    }

    .contact-info .nav-phone {
        width: 100%;
        max-width: none;
        justify-content: center;
        background: rgba(255, 255, 255, 0.1);
        border: 1px solid rgba(255, 255, 255, 0.1);
        padding: 0.8rem;
        display: flex !important;
        align-items: center;
        gap: 0.8rem;
    }

    .contact-info .nav-phone i {
        background: var(--primary-color);
        color: white;
        width: 35px;
        height: 35px;
        min-width: 35px;
        display: flex;
        align-items: center;
        justify-content: center;
        border-radius: 8px;
    }

    .contact-info .phone-info {
        display: flex !important;
        flex-direction: column;
        gap: 0.2rem;
        text-align: center;
        overflow: visible;
    }

    .contact-info .phone-label {
        color: rgba(255, 255, 255, 0.8);
        font-size: 0.9rem;
        display: block;
        white-space: nowrap;
    }

    .contact-info .phone-number {
        color: white;
        font-size: 1.1rem;
        display: block;
        white-space: nowrap;
    }

    .contact-info .nav-phone:hover {
        background: rgba(212, 175, 55, 0.1);
        border-color: var(--primary-color);
    }

    .contact-info .nav-phone:hover i {
        background: var(--primary-color);
        transform: rotate(15deg);
    }
}

/* Old Name Text Style */
.old-name {
    display: block;
    font-size: 1.2rem;
    color: rgba(255, 255, 255, 0.7);
    margin-top: 0.5rem;
    font-weight: 500;
    font-style: italic;
}

@media (max-width: 767.98px) {
    .old-name {
        font-size: 1rem;
    }
}

/* Maps Section Styles */
.maps-section {
    position: relative;
    z-index: 1;
}

.map-container {
    background: white;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.1);
    border: 1px solid var(--primary-color);
    transition: all 0.3s ease;
    position: relative;
}

.map-container::before {
    content: '';
    position: absolute;
    inset: 0;
    border-radius: 20px;
    padding: 1px;
    background: linear-gradient(135deg, var(--primary-color), #ffd700);
    -webkit-mask: 
        linear-gradient(#fff 0 0) content-box, 
        linear-gradient(#fff 0 0);
    -webkit-mask-composite: xor;
    mask-composite: exclude;
    opacity: 0.3;
    transition: all 0.3s ease;
    pointer-events: none;
}

.map-container:hover {
    transform: translateY(-5px);
}

.map-container:hover::before {
    opacity: 0.8;
    box-shadow: 
        0 0 5px rgba(212, 175, 55, 0.4),
        0 0 10px rgba(212, 175, 55, 0.2),
        0 0 15px rgba(212, 175, 55, 0.1);
}

.map-title {
    padding: 1.5rem;
    margin: 0;
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.9) 0%, rgba(248, 249, 250, 0.9) 100%);
    border-bottom: 1px solid rgba(212, 175, 55, 0.1);
    font-size: 1.3rem;
    font-weight: 700;
    color: var(--secondary-color);
    display: flex;
    align-items: center;
    gap: 1rem;
}

.map-title i {
    color: var(--primary-color);
    font-size: 1.4rem;
}

.map-frame {
    width: 100%;
    height: 400px;
    border: none;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--light-bg);
    position: relative;
    z-index: 1;
}

.map-frame iframe {
    width: 100%;
    height: 100%;
    border: none;
    position: relative;
    z-index: 2;
}

.map-placeholder {
    color: #666;
    font-size: 1.1rem;
    text-align: center;
    padding: 2rem;
}

@media (max-width: 991.98px) {
    .map-frame {
        height: 300px;
    }
    
    .map-title {
        font-size: 1.2rem;
        padding: 1.2rem;
    }
}

@media (max-width: 767.98px) {
    .map-frame {
        height: 250px;
    }
    
    .map-title {
        font-size: 1.1rem;
        padding: 1rem;
    }
}

/* Product Categories Styles */
.categories-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
    gap: 1.5rem;
    margin-top: 2rem;
}

.category-card {
    position: relative;
    text-decoration: none;
    color: inherit;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    width: 100%;
    height: 100%;
    padding: 2rem;
    text-align: center;
    transition: all 0.3s ease;
    cursor: pointer;
    background: white;
    border-radius: 15px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
    border: 1px solid rgba(212, 175, 55, 0.1);
    min-height: 200px;
}

.category-card:hover {
    color: inherit;
    transform: translateY(-5px);
    border-color: var(--primary-color);
    box-shadow: 0 8px 25px rgba(212, 175, 55, 0.15);
}

.category-card .category-icon {
    font-size: 2.5rem;
    margin-bottom: 1rem;
    color: var(--primary-color);
    transition: all 0.3s ease;
}

.category-card .category-title {
    margin: 0;
    font-size: 1.2rem;
    font-weight: 600;
    transition: all 0.3s ease;
}

.category-card:hover .category-icon {
    transform: scale(1.1);
}

/* İkon Animasyonları */
.category-card:hover .category-icon {
    transform: scale(1.2) translateZ(30px);
}

/* Kategori Özel İkon Animasyonları */
.category-card[data-category="محابس"]:hover .category-icon {
    animation: ringWiggle 1s ease infinite;
}

.category-card[data-category="حلقات"]:hover .category-icon {
    animation: ringRotate 1s ease infinite;
}

.category-card[data-category="تراجيات"]:hover .category-icon {
    animation: crownFloat 1s ease infinite;
}

.category-card[data-category="زناجيل"]:hover .category-icon {
    animation: chainMove 1s ease infinite;
}

.category-card[data-category="مداليات"]:hover .category-icon {
    animation: medalSpin 1s ease infinite;
}

.category-card[data-category="قلادات"]:hover .category-icon {
    animation: necklaceSway 1s ease infinite;
}

.category-card[data-category="شالات"]:hover .category-icon {
    animation: scarfWave 1s ease infinite;
}

.category-card[data-category="سيتات"]:hover .category-icon {
    animation: setsPulse 1s ease infinite;
}

.category-card[data-category="مفردات"]:hover .category-icon {
    animation: singlesSpin 1s ease infinite;
}

.category-card[data-category="سوارات"]:hover .category-icon {
    animation: braceletRotate 1s ease infinite;
}

.category-card[data-category="كلبيات"]:hover .category-icon {
    animation: clipBounce 1s ease infinite;
}

.category-card[data-category="خلاخيل"]:hover .category-icon {
    animation: ankletSwing 1s ease infinite;
}

.category-card[data-category="شباحيات"]:hover .category-icon {
    animation: broochSparkle 1s ease infinite;
}

.category-card[data-category="اطفال"]:hover .category-icon {
    animation: babyBounce 1s ease infinite;
}

.category-card[data-category="حجول"]:hover .category-icon {
    animation: footRing 1s ease infinite;
}

/* Animasyon Tanımlamaları */
@keyframes ringWiggle {
    0%, 100% { transform: rotate(-10deg) translateZ(30px); }
    50% { transform: rotate(10deg) translateZ(30px); }
}

@keyframes ringRotate {
    0% { transform: rotate(0deg) translateZ(30px); }
    100% { transform: rotate(360deg) translateZ(30px); }
}

@keyframes crownFloat {
    0%, 100% { transform: translateY(0) translateZ(30px); }
    50% { transform: translateY(-10px) translateZ(30px); }
}

@keyframes chainMove {
    0%, 100% { transform: translateX(0) translateZ(30px); }
    50% { transform: translateX(10px) translateZ(30px); }
}

@keyframes medalSpin {
    0% { transform: rotateY(0deg) translateZ(30px); }
    100% { transform: rotateY(360deg) translateZ(30px); }
}

@keyframes necklaceSway {
    0%, 100% { transform: rotate(-5deg) translateZ(30px); }
    50% { transform: rotate(5deg) translateZ(30px); }
}

@keyframes scarfWave {
    0%, 100% { transform: skew(-10deg) translateZ(30px); }
    50% { transform: skew(10deg) translateZ(30px); }
}

@keyframes setsPulse {
    0%, 100% { transform: scale(1) translateZ(30px); }
    50% { transform: scale(1.2) translateZ(30px); }
}

@keyframes singlesSpin {
    0% { transform: rotate(0deg) scale(1) translateZ(30px); }
    100% { transform: rotate(360deg) scale(1.2) translateZ(30px); }
}

@keyframes braceletRotate {
    0% { transform: rotate(0deg) translateZ(30px); }
    100% { transform: rotate(-360deg) translateZ(30px); }
}

@keyframes clipBounce {
    0%, 100% { transform: translateY(0) translateZ(30px); }
    50% { transform: translateY(-15px) translateZ(30px); }
}

@keyframes ankletSwing {
    0%, 100% { transform: rotate(-15deg) translateZ(30px); }
    50% { transform: rotate(15deg) translateZ(30px); }
}

@keyframes broochSparkle {
    0%, 100% { transform: scale(1) rotate(0deg) translateZ(30px); }
    50% { transform: scale(1.2) rotate(180deg) translateZ(30px); }
}

@keyframes babyBounce {
    0%, 100% { transform: translateY(0) scale(1) translateZ(30px); }
    50% { transform: translateY(-10px) scale(1.1) translateZ(30px); }
}

@keyframes footRing {
    0%, 100% { transform: translateX(0) rotate(0deg) translateZ(30px); }
    50% { transform: translateX(10px) rotate(180deg) translateZ(30px); }
}

/* Mobil Uyumluluk */
@media (max-width: 768px) {
    .category-card {
        padding: 1.5rem 1rem;
    }
    
    .category-card:hover {
        transform: translateY(-5px) rotateX(5deg) rotateY(-5deg);
    }
    
    .category-icon {
        font-size: 2rem;
    }
}

/* Products Page Styles */
.page-header {
    padding-top: 100px;
    padding-bottom: 40px;
    margin-top: 76px;
    background: linear-gradient(to bottom, rgba(0, 0, 0, 0.8), rgba(0, 0, 0, 0.6)), url('../images/bg1.jpeg');
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
    color: white;
    position: relative;
}

.page-header::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: radial-gradient(circle at center, rgba(255, 215, 0, 0.2), transparent 70%);
    pointer-events: none;
}

.page-header .container {
    position: relative;
    z-index: 2;
}

.products-badge {
    display: inline-block;
    padding: 8px 25px;
    background: linear-gradient(135deg, #ffd700 0%, #ffb300 100%);
    border-radius: 50px;
    color: white;
    font-size: 1.5rem;
    font-weight: 700;
    margin-bottom: 1.5rem;
    box-shadow: 0 5px 15px rgba(255, 215, 0, 0.3);
    text-align: center;
    text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.2);
    transition: all 0.3s ease;
    border: 2px solid rgba(255, 255, 255, 0.2);
}

.products-badge:hover {
    transform: translateY(-2px);
    box-shadow: 
        0 0 20px rgba(255, 215, 0, 0.5),
        0 0 40px rgba(255, 215, 0, 0.3),
        0 0 60px rgba(255, 215, 0, 0.1);
    text-shadow: 
        0 0 10px rgba(255, 255, 255, 0.8),
        0 0 20px rgba(255, 255, 255, 0.4);
}

.products-title {
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 2rem;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.3);
    color: #fff;
}

@media (max-width: 767.98px) {
    .products-badge {
        font-size: 1.2rem;
        padding: 6px 16px;
    }
    
    .products-title {
        font-size: 2rem;
    }
}

.category-filter {
    position: relative;
    z-index: 1;
    backdrop-filter: blur(5px);
    -webkit-backdrop-filter: blur(5px);
    background: rgba(0, 0, 0, 0.3);
    padding: 1.5rem;
    border-radius: 15px;
    margin-bottom: 2rem;
}

.filter-buttons {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    justify-content: center;
}

.btn-filter {
    padding: 8px 16px;
    border-radius: 20px;
    background: linear-gradient(135deg, #ffd700, #ffb300);
    color: #000;
    border: none;
    font-weight: 600;
    display: flex;
    align-items: center;
    gap: 8px;
    transition: all 0.3s ease;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
    position: relative;
    overflow: hidden;
}

.btn-filter::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.2), transparent);
    opacity: 0;
    transition: opacity 0.3s ease;
}

.btn-filter:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.2);
}

.btn-filter:hover::before {
    opacity: 1;
}

.btn-filter.active {
    background: linear-gradient(135deg, #ffa500, #ff8c00);
    color: #fff;
    box-shadow: 0 4px 15px rgba(255, 165, 0, 0.3);
}

.btn-filter i {
    font-size: 1rem;
    color: inherit;
}

@media (max-width: 991.98px) {
    .btn-filter {
        font-size: 0.9rem;
        padding: 6px 12px;
    }
    
    .btn-filter i {
        font-size: 0.9rem;
    }
}

@media (max-width: 767.98px) {
    .category-filter {
        padding: 1rem;
    }
    
    .btn-filter {
        font-size: 0.8rem;
        padding: 5px 10px;
    }
    
    .btn-filter i {
        font-size: 0.8rem;
    }
}

.products-section {
    position: relative;
    z-index: 1;
    padding: 40px 0;
}

.product-card {
    height: 100%;
    background: white;
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
    transition: all 0.3s ease;
    position: relative;
    border: 2px solid rgba(212, 175, 55, 0.3);
}

.product-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 25px rgba(212, 175, 55, 0.15);
    border-color: rgba(212, 175, 55, 0.8);
}

.product-image {
    height: 200px;
    width: 100%;
    object-fit: cover;
    border-bottom: 1px solid rgba(212, 175, 55, 0.1);
}

.hidden-product {
    display: none !important;
}

#loadMoreBtn {
    padding: 12px 30px;
    border-radius: 25px;
    background: linear-gradient(135deg, #ffd700, #ffb300);
    color: #000;
    border: none;
    font-weight: 600;
    display: inline-flex;
    align-items: center;
    gap: 10px;
    transition: all 0.3s ease;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
    position: relative;
    overflow: hidden;
    font-size: 1.1rem;
}

#loadMoreBtn::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.2), transparent);
    opacity: 0;
    transition: opacity 0.3s ease;
}

#loadMoreBtn:hover {
    transform: translateY(-3px);
    box-shadow: 0 4px 15px rgba(255, 165, 0, 0.3);
}

#loadMoreBtn:hover::before {
    opacity: 1;
}

#loadMoreBtn i {
    font-size: 1.2rem;
    transition: transform 0.3s ease;
}

#loadMoreBtn:hover i {
    transform: rotate(180deg);
}

@media (max-width: 767.98px) {
    #loadMoreBtn {
        padding: 10px 25px;
        font-size: 1rem;
    }
    
    #loadMoreBtn i {
        font-size: 1rem;
    }
}

.product-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.5);
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: all 0.3s ease;
}

.product-card:hover .product-overlay {
    opacity: 1;
}

.product-overlay .btn {
    transform: translateY(20px);
    transition: all 0.3s ease;
    background: var(--gold);
    border: none;
    padding: 10px 20px;
    font-weight: 500;
}

.product-card:hover .product-overlay .btn {
    transform: translateY(0);
}

.product-info {
    padding: 1.5rem;
    display: flex;
    flex-direction: column;
    gap: 1rem;
    align-items: center;
    text-align: center;
}

.product-title {
    font-size: 1.3rem;
    font-weight: 700;
    color: #333;
    margin: 0;
    transition: all 0.3s ease;
    line-height: 1.4;
}

.product-card:hover .product-title {
    color: var(--primary-color);
}

.product-category {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: linear-gradient(135deg, #ffd700, #ffb300);
    color: #000;
    padding: 6px 15px;
    border-radius: 50px;
    font-size: 0.9rem;
    font-weight: 600;
    box-shadow: 0 2px 10px rgba(212, 175, 55, 0.2);
    transition: all 0.3s ease;
}

.product-category i {
    font-size: 1rem;
}

.product-card:hover .product-category {
    transform: translateY(-2px);
    box-shadow: 0 4px 15px rgba(212, 175, 55, 0.3);
}

.product-features {
    display: none;
}

.whatsapp-btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: #25d366;
    color: white;
    padding: 8px 20px;
    border-radius: 50px;
    font-size: 1rem;
    font-weight: 600;
    text-decoration: none;
    transition: all 0.3s ease;
    border: none;
    margin-top: 0.5rem;
}

.whatsapp-btn i {
    font-size: 1.2rem;
}

.whatsapp-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 15px rgba(37, 211, 102, 0.3);
    color: white;
}

/* Responsive Styles */
@media (max-width: 991.98px) {
    .btn-filter {
        font-size: 0.85rem;
        padding: 6px 12px;
    }
    
    .product-image {
        height: 180px;
    }
    
    .product-title {
        font-size: 1.2rem;
    }
    
    .product-info {
        padding: 1.2rem;
    }
}

@media (max-width: 767.98px) {
    .page-header {
        padding-top: 80px;
        padding-bottom: 30px;
    }
    
    .filter-buttons {
        gap: 8px;
    }
    
    .btn-filter {
        font-size: 0.8rem;
        padding: 5px 10px;
    }
    
    .btn-filter i {
        font-size: 0.9rem;
    }
    
    .product-image {
        height: 160px;
    }
    
    .product-title {
        font-size: 1.1rem;
    }
    
    .product-info {
        padding: 1rem;
    }
    
    .whatsapp-btn {
        padding: 6px 15px;
        font-size: 0.9rem;
    }
}

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

.page-header .section-title {
    color: #fff;
}

/* Footer Styles */
.footer-social-links {
    display: flex;
    gap: 10px;
}

.footer-social-link {
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 10px;
    background: rgba(255, 255, 255, 0.1);
    color: white;
    transition: all 0.3s ease;
}

.footer-social-link:hover {
    transform: translateY(-3px);
}

.footer-social-link.facebook:hover {
    background: #1877f2;
    box-shadow: 0 5px 15px rgba(24, 119, 242, 0.4);
}

.footer-social-link.instagram:hover {
    background: linear-gradient(45deg, #f09433 0%, #e6683c 25%, #dc2743 50%, #cc2366 75%, #bc1888 100%);
    box-shadow: 0 5px 15px rgba(225, 48, 108, 0.4);
}

.footer-social-link.whatsapp:hover {
    background: #25d366;
    box-shadow: 0 5px 15px rgba(37, 211, 102, 0.4);
}

.footer-social-link.telegram:hover {
    background: #0088cc;
    box-shadow: 0 5px 15px rgba(0, 136, 204, 0.4);
}

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

.footer-links a {
    color: rgba(255, 255, 255, 0.8);
    text-decoration: none;
    transition: all 0.3s ease;
}

.footer-links a:hover {
    color: var(--primary-color);
    padding-right: 10px;
}

.footer-contact li {
    margin-bottom: 15px;
    display: flex;
    align-items: center;
    color: rgba(255, 255, 255, 0.8);
    background: rgba(255, 255, 255, 0.1);
    padding: 12px 15px;
    border-radius: 10px;
    transition: all 0.3s ease;
}

.footer-contact li:hover {
    background: rgba(212, 175, 55, 0.1);
    transform: translateX(-5px);
}

.footer-contact li i {
    width: 30px;
    height: 30px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, var(--primary-color), #ffd700);
    color: white;
    border-radius: 8px;
    margin-left: 12px;
    font-size: 14px;
    transition: all 0.3s ease;
}

.footer-contact li:hover i {
    transform: scale(1.1) rotate(5deg);
}

@media (max-width: 768px) {
    .footer-social-links {
        justify-content: center;
        margin-bottom: 2rem;
    }
    
    .footer h5 {
        text-align: center;
        margin-top: 1.5rem;
    }
    
    .footer-links,
    .footer-contact {
        text-align: center;
    }
    
    .footer-contact li {
        width: fit-content;
        margin: 0 auto 15px;
    }
}

.developer-link {
    color: var(--primary-color);
    text-decoration: none;
    font-weight: 600;
    position: relative;
}

.developer-link::after {
    content: '';
    position: absolute;
    width: 0;
    height: 2px;
    bottom: -2px;
    right: 0;
    background: linear-gradient(to left, var(--primary-color), transparent);
    transition: width 0.3s ease;
}

.developer-link:hover::after {
    width: 100%;
}

@media (max-width: 991.98px) {
    .navbar {
        background: rgba(0, 0, 0, 0.95);
        padding: 0.5rem 1rem;
    }
    
    .navbar-collapse {
        background: rgba(0, 0, 0, 0.95);
        padding: 1rem;
        border-radius: 10px;
        margin-top: 1rem;
    }
    
    .navbar-nav {
        padding: 1rem 0;
        border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    }
    
    .nav-link {
        padding: 0.8rem 1rem !important;
        border-radius: 8px;
        color: white !important;
    }
    
    .nav-link:hover,
    .nav-link.active {
        background: rgba(212, 175, 55, 0.1);
        color: var(--primary-color) !important;
    }
    
    .navbar .nav-phones {
        display: none;
    }

    .navbar-collapse .nav-phones {
        display: flex !important;
        flex-direction: column;
        gap: 0.5rem;
        padding: 0.5rem;
        margin-top: 1rem;
        width: 100%;
        background: rgba(255, 255, 255, 0.05);
        border-radius: 8px;
    }

    .navbar-collapse .nav-phone {
        width: 100%;
        max-width: none;
        justify-content: center;
        background: rgba(255, 255, 255, 0.1);
        border: 1px solid rgba(255, 255, 255, 0.1);
    }

    .navbar-collapse .nav-phone i {
        background: var(--primary-color);
    }
    
    .navbar-collapse .phone-info {
        text-align: center;
    }

    .navbar-collapse .phone-label {
        color: rgba(255, 255, 255, 0.8);
    }

    .navbar-collapse .phone-number {
        color: white;
    }

    .navbar-collapse .nav-phone:hover {
        background: rgba(212, 175, 55, 0.1);
        border-color: var(--primary-color);
    }

    .navbar-collapse .nav-phone:hover i {
        background: var(--primary-color);
        transform: rotate(15deg);
    }
}

/* Phone Numbers in Contact Section */
.phone-numbers {
    display: flex;
    flex-direction: column;
    gap: 0.8rem;
    margin: 1rem 0;
}

.phone-numbers .nav-phones {
    display: flex !important;
    flex-direction: column;
    gap: 0.5rem;
    width: 100%;
    background: rgba(255, 255, 255, 0.95);
    border-radius: 8px;
    padding: 0.8rem;
    border: 1px solid rgba(0, 0, 0, 0.1);
}

.phone-numbers .nav-phone {
    display: flex !important;
    align-items: center;
    gap: 0.8rem;
    padding: 0.8rem;
    background: rgba(255, 255, 255, 0.98);
    border: 1px solid rgba(0, 0, 0, 0.1);
    border-radius: 8px;
    width: 100%;
    max-width: none;
    text-decoration: none;
}

.phone-numbers .nav-phone i {
    width: 32px;
    height: 32px;
    min-width: 32px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--primary-color);
    color: white;
    border-radius: 6px;
    font-size: 1rem;
    transition: all 0.3s ease;
}

.phone-numbers .phone-info {
    display: flex !important;
    flex-direction: column;
    gap: 0.2rem;
}

.phone-numbers .phone-label {
    display: block;
    color: rgba(0, 0, 0, 0.7);
    font-size: 0.9rem;
    white-space: nowrap;
}

.phone-numbers .phone-number {
    display: block;
    color: rgba(0, 0, 0, 0.9);
    font-size: 1.1rem;
    font-weight: 600;
    white-space: nowrap;
}

.phone-numbers .nav-phone:hover .phone-label,
.phone-numbers .nav-phone:hover .phone-number {
    color: var(--primary-color);
    transition: all 0.3s ease;
}

.phone-numbers .nav-phone:hover {
    background: rgba(212, 175, 55, 0.05);
    border-color: var(--primary-color);
    transform: translateY(-2px);
}

.phone-numbers .nav-phone:hover i {
    transform: rotate(15deg);
    background: var(--primary-color);
}

@media (max-width: 991.98px) {
    .phone-numbers {
        margin: 1rem 0;
    }
    
    .phone-numbers .nav-phones {
        background: rgba(255, 255, 255, 0.05);
    }
    
    .phone-numbers .nav-phone {
        background: rgba(255, 255, 255, 0.1);
    }
}

/* Location Info Styles */
.location-info {
    display: flex;
    flex-direction: column;
    gap: 0.8rem;
    margin: 1rem 0;
}

.location-item {
    display: flex;
    align-items: flex-start;
    gap: 1rem;
    padding: 1rem;
    background: rgba(255, 255, 255, 0.95);
    border: 1px solid rgba(0, 0, 0, 0.1);
    border-radius: 8px;
    transition: all 0.3s ease;
}

.location-item i {
    width: 32px;
    height: 32px;
    min-width: 32px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--primary-color);
    color: white;
    border-radius: 6px;
    font-size: 1rem;
    transition: all 0.3s ease;
}

.location-text {
    flex: 1;
}

.location-text h4 {
    color: rgba(0, 0, 0, 0.9);
    font-size: 1.1rem;
    font-weight: 600;
    margin: 0 0 0.3rem 0;
}

.location-text p {
    color: rgba(0, 0, 0, 0.7);
    font-size: 0.9rem;
    margin: 0;
}

.location-item:hover {
    background: rgba(212, 175, 55, 0.05);
    border-color: var(--primary-color);
    transform: translateY(-2px);
}

.location-item:hover i {
    transform: rotate(15deg);
    background: var(--primary-color);
}

@media (max-width: 991.98px) {
    .location-info {
        margin: 0.8rem 0;
    }
    
    .location-item {
        padding: 0.8rem;
    }
    
    .location-text h4 {
        font-size: 1rem;
    }
    
    .location-text p {
        font-size: 0.85rem;
    }
}

/* Form Element Fixes */
.contact-section {
    position: relative;
    z-index: auto !important;
}

.contact-section::before {
    z-index: 0 !important;
}

.contact-form {
    position: relative;
    z-index: 1 !important;
}

.contact-form .form-floating {
    position: relative !important;
    z-index: 2 !important;
}

.contact-form .form-control {
    position: relative !important;
    z-index: 3 !important;
    color: #000 !important;
    background: #fff !important;
    cursor: text !important;
    pointer-events: auto !important;
    caret-color: #000 !important;
    border: 2px solid rgba(212, 175, 55, 0.2) !important;
    height: auto !important;
    padding: 1.2rem !important;
    font-size: 1.2rem !important;
}

/* Label Styles */
.contact-form .form-floating > label {
    position: absolute !important;
    left: 0 !important;
    right: 0 !important;
    width: 100% !important;
    height: 100% !important;
    padding: 1rem 0.75rem !important;
    overflow: hidden !important;
    text-align: start !important;
    text-overflow: ellipsis !important;
    white-space: nowrap !important;
    pointer-events: none !important;
    border: 1px solid transparent !important;
    transform-origin: 0 0 !important;
    transition: opacity .1s ease-in-out,transform .1s ease-in-out !important;
    color: #000 !important;
    font-size: 1.2rem !important;
    display: flex !important;
    align-items: center !important;
    opacity: 0.8 !important;
    z-index: 4 !important;
}

/* Label Animation */
.contact-form .form-floating > .form-control:focus ~ label,
.contact-form .form-floating > .form-control:not(:placeholder-shown) ~ label {
    opacity: 1 !important;
    transform: scale(.85) translateY(-1rem) translateX(.15rem) !important;
    background-color: white !important;
    height: auto !important;
    padding: 0 0.5rem !important;
    color: var(--primary-color) !important;
}

/* Placeholder */
.contact-form .form-control::placeholder {
    color: transparent !important;
}

/* Textarea Specific */
.contact-form textarea.form-control {
    min-height: 150px !important;
    resize: vertical !important;
}

.contact-form textarea.form-control ~ label {
    height: auto !important;
    padding-top: 1rem !important;
}

.contact-form .invalid-feedback {
    position: relative;
    z-index: 3 !important;
}

.submit-btn {
    position: relative;
    z-index: 3 !important;
    pointer-events: auto !important;
}

.submit-btn .submit-btn-loader {
    display: none !important;
}

.submit-btn.loading .submit-btn-loader {
    display: inline-flex !important;
}

.submit-btn.loading .submit-btn-content {
    display: none !important;
}

.submit-btn-content {
    display: inline-flex !important;
    align-items: center !important;
    justify-content: center !important;
    gap: 0.5rem !important;
}

.submit-btn-loader {
    display: none !important;
    align-items: center !important;
    justify-content: center !important;
}

/* Form Control Specific Styles */
.contact-form input.form-control,
.contact-form textarea.form-control {
    padding: 1.2rem !important;
}

.contact-form input.form-control::placeholder,
.contact-form textarea.form-control::placeholder {
    color: #000 !important;
    opacity: 0.7 !important;
    font-size: 1.2rem !important;
}

/* Contact Info Hover Fix */
.contact-info {
    position: relative;
    z-index: 1 !important;
}

.contact-info .nav-phones {
    position: relative;
    z-index: 2 !important;
}

.contact-info .nav-phone {
    position: relative;
    z-index: 3 !important;
    pointer-events: auto !important;
    cursor: pointer !important;
}

.contact-info .location-info {
    position: relative;
    z-index: 2 !important;
}

.contact-info .location-item {
    position: relative;
    z-index: 3 !important;
    pointer-events: auto !important;
    cursor: pointer !important;
}

.category-link {
    text-decoration: none;
    color: inherit;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    width: 100%;
    height: 100%;
    padding: 2rem;
    text-align: center;
    transition: all 0.3s ease;
    cursor: pointer;
}

.category-link:hover {
    color: inherit;
    transform: translateY(-5px);
}

.category-link .category-icon {
    font-size: 2.5rem;
    margin-bottom: 1rem;
    color: var(--primary-color);
}

.category-link .category-title {
    margin: 0;
    font-size: 1.2rem;
    font-weight: 600;
} 