/**
 * Gulnara Style - Main Frontend CSS
 * Modern Minimalist Design
 */

/* Font Awesome Import */
@import url('https://cdnjs.cloudflare.com/ajax/libs/font-awesome/6.4.0/css/all.min.css');

:root {
    /* Color Palette */
    --color-primary: #111111;
    --color-secondary: #c9a86c;
    --color-white: #ffffff;
    --color-light: #f8f8f8;
    --color-gray: #8a8a8a;
    --color-border: #e5e5e5;

    /* Typography */
    --font-heading: 'Playfair Display', Georgia, serif;
    --font-body: 'Inter', -apple-system, sans-serif;

    /* Spacing */
    --space-xs: 0.5rem;
    --space-sm: 1rem;
    --space-md: 1.5rem;
    --space-lg: 2rem;
    --space-xl: 3rem;
    --space-2xl: 5rem;

    /* Transitions */
    --transition-fast: 0.2s ease;
    --transition-normal: 0.3s ease;
    --transition-slow: 0.5s ease;
}

/* ===== RESET & BASE ===== */
*,
*::before,
*::after {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    font-size: 16px;
    scroll-behavior: smooth;
}

body {
    font-family: var(--font-body);
    font-size: 1rem;
    line-height: 1.6;
    color: var(--color-primary);
    background: var(--color-white);
    -webkit-font-smoothing: antialiased;
}

a {
    color: inherit;
    text-decoration: none;
}

img {
    max-width: 100%;
    height: auto;
    display: block;
}

button {
    font-family: inherit;
    cursor: pointer;
    border: none;
    background: none;
}

ul,
ol {
    list-style: none;
}

/* ===== CONTAINER ===== */
.container {
    width: 100%;
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 var(--space-md);
}

/* ===== ANNOUNCEMENT BAR ===== */
.announcement-bar {
    background: var(--color-primary);
    color: var(--color-white);
    text-align: center;
    padding: 10px;
    font-size: 0.85rem;
    letter-spacing: 0.5px;
}

/* ===== HEADER ===== */
.site-header {
    background: var(--color-white);
    border-bottom: 1px solid var(--color-border);
    position: sticky;
    top: 0;
    z-index: 1000;
}

.header-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    height: 80px;
}

/* Logo */
.logo,
.footer-logo {
    display: flex;
    flex-direction: column;
    align-items: center;
    line-height: 1.1;
}

.logo-main {
    font-family: var(--font-heading);
    font-size: 1.75rem;
    font-weight: 600;
    letter-spacing: 3px;
}

.logo-sub {
    font-size: 0.65rem;
    font-weight: 500;
    letter-spacing: 6px;
    color: var(--color-secondary);
}

/* Header Actions */
.header-actions {
    display: flex;
    align-items: center;
    gap: var(--space-sm);
}

.action-btn {
    width: 44px;
    height: 44px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    transition: background var(--transition-fast);
}

.action-btn:hover {
    background: var(--color-light);
}

.cart-btn {
    position: relative;
}

.cart-count {
    position: absolute;
    top: 2px;
    right: 2px;
    width: 18px;
    height: 18px;
    background: var(--color-primary);
    color: var(--color-white);
    font-size: 0.65rem;
    font-weight: 600;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
}

/* Mobile Menu Toggle */
.mobile-menu-toggle {
    display: none;
    flex-direction: column;
    gap: 5px;
    width: 44px;
    height: 44px;
    align-items: center;
    justify-content: center;
}

.mobile-menu-toggle span {
    width: 22px;
    height: 2px;
    background: var(--color-primary);
    transition: var(--transition-fast);
}

/* ===== MEGA MENU (New Structure) ===== */
.nav-list {
    display: flex;
    gap: var(--space-lg);
    list-style: none;
    margin: 0;
    padding: 0;
}

.nav-item {
    position: relative;
}

.nav-link {
    display: flex;
    align-items: center;
    gap: 6px;
    padding: var(--space-sm) 0;
    font-size: 0.9rem;
    font-weight: 500;
    letter-spacing: 0.5px;
    text-transform: uppercase;
    position: relative;
}

.nav-link::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--color-secondary);
    transition: width var(--transition-normal);
}

.nav-item:hover .nav-link::after {
    width: 100%;
}

.nav-link svg {
    transition: transform var(--transition-fast);
}

.nav-item:hover .nav-link svg {
    transform: rotate(180deg);
}

/* Mega Menu Dropdown */
.nav-item .mega-menu {
    position: absolute;
    top: 100%;
    left: 50%;
    transform: translateX(-50%);
    background: var(--color-white);
    border: 1px solid var(--color-border);
    box-shadow: 0 15px 50px rgba(0, 0, 0, 0.15);
    min-width: 500px;
    padding: var(--space-lg);
    opacity: 0;
    visibility: hidden;
    transition: all var(--transition-fast);
    z-index: 1000;
}

.nav-item:hover .mega-menu {
    opacity: 1;
    visibility: visible;
}

.mega-menu-inner {
    display: flex;
    gap: var(--space-xl);
}

.mega-menu-column {
    flex: 1;
    min-width: 150px;
}

.mega-menu-group {
    margin-bottom: var(--space-md);
}

.mega-menu-title {
    display: block;
    font-weight: 600;
    font-size: 0.9rem;
    color: var(--color-primary);
    margin-bottom: var(--space-sm);
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.mega-menu-title:hover {
    color: var(--color-secondary);
}

.mega-menu-list {
    list-style: none;
    padding: 0;
    margin: 0;
}

.mega-menu-list li a {
    display: block;
    padding: 6px 0;
    font-size: 0.85rem;
    color: var(--color-gray);
    transition: color var(--transition-fast);
}

.mega-menu-list li a:hover {
    color: var(--color-primary);
}

.mega-menu-image {
    width: 200px;
    flex-shrink: 0;
}

.mega-menu-image img {
    width: 100%;
    height: auto;
    border-radius: 8px;
}

/* ===== HERO SECTION ===== */
.hero-section {
    height: 85vh;
    min-height: 600px;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    overflow: hidden;
    background: var(--color-light);
}

.hero-background {
    position: absolute;
    inset: 0;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
}

.hero-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(to bottom, rgba(0, 0, 0, 0.1), rgba(0, 0, 0, 0.4));
}

.hero-content {
    position: relative;
    z-index: 1;
    text-align: center;
    color: var(--color-white);
    max-width: 700px;
    padding: var(--space-lg);
}

.hero-content h1 {
    font-family: var(--font-heading);
    font-size: clamp(2.5rem, 6vw, 4.5rem);
    font-weight: 400;
    line-height: 1.1;
    margin-bottom: var(--space-md);
    letter-spacing: 2px;
}

.hero-content p {
    font-size: 1.1rem;
    opacity: 0.9;
    margin-bottom: var(--space-lg);
}

/* ===== BUTTONS ===== */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    padding: 16px 40px;
    font-size: 0.85rem;
    font-weight: 600;
    letter-spacing: 1.5px;
    text-transform: uppercase;
    border: none;
    cursor: pointer;
    transition: all var(--transition-normal);
}

.btn-primary {
    background: var(--color-primary);
    color: var(--color-white);
}

.btn-primary:hover {
    background: #333;
}

.btn-secondary {
    background: transparent;
    color: var(--color-primary);
    border: 2px solid var(--color-primary);
}

.btn-secondary:hover {
    background: var(--color-primary);
    color: var(--color-white);
}

.btn-white {
    background: var(--color-white);
    color: var(--color-primary);
}

.btn-white:hover {
    background: var(--color-light);
}

/* ===== SECTIONS ===== */
.section {
    padding: var(--space-2xl) 0;
}

.section-header {
    text-align: center;
    margin-bottom: var(--space-xl);
}

.section-header h2 {
    font-family: var(--font-heading);
    font-size: clamp(1.75rem, 4vw, 2.5rem);
    font-weight: 400;
    margin-bottom: var(--space-xs);
}

.section-header p {
    color: var(--color-gray);
    font-size: 1rem;
}

/* ===== PRODUCT GRID ===== */
.product-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
    gap: var(--space-lg);
}

.product-card {
    position: relative;
}

.product-image {
    position: relative;
    aspect-ratio: 3/4;
    overflow: hidden;
    background: var(--color-light);
}

.product-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform var(--transition-slow);
}

.product-card:hover .product-image img {
    transform: scale(1.05);
}

.product-badge {
    position: absolute;
    top: var(--space-sm);
    left: var(--space-sm);
    padding: 6px 12px;
    background: var(--color-primary);
    color: var(--color-white);
    font-size: 0.7rem;
    font-weight: 600;
    letter-spacing: 1px;
    text-transform: uppercase;
}

.product-actions {
    position: absolute;
    bottom: var(--space-sm);
    left: 50%;
    transform: translateX(-50%) translateY(20px);
    opacity: 0;
    transition: all var(--transition-normal);
}

.product-card:hover .product-actions {
    opacity: 1;
    transform: translateX(-50%) translateY(0);
}

.product-info {
    padding: var(--space-md) 0;
    text-align: center;
}

.product-info h3 {
    font-family: var(--font-body);
    font-size: 0.95rem;
    font-weight: 500;
    margin-bottom: var(--space-xs);
}

.product-info h3 a:hover {
    color: var(--color-secondary);
}

.product-category {
    font-size: 0.8rem;
    color: var(--color-gray);
    margin-bottom: var(--space-xs);
}

.product-price {
    font-weight: 600;
}

.product-price .old-price {
    text-decoration: line-through;
    color: var(--color-gray);
    font-weight: 400;
    margin-right: 8px;
}

.product-price .sale-price {
    color: #c41e3a;
}

/* ===== CATEGORY SHOWCASE ===== */
.category-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: var(--space-md);
}

.category-card {
    position: relative;
    aspect-ratio: 4/5;
    overflow: hidden;
}

.category-card img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform var(--transition-slow);
}

.category-card:hover img {
    transform: scale(1.08);
}

.category-card .overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(to top, rgba(0, 0, 0, 0.6), transparent);
    display: flex;
    align-items: flex-end;
    padding: var(--space-lg);
}

.category-card h3 {
    color: var(--color-white);
    font-family: var(--font-heading);
    font-size: 1.5rem;
    font-weight: 400;
}

/* ===== FOOTER ===== */
.site-footer {
    background: var(--color-primary);
    color: var(--color-white);
    padding: var(--space-2xl) 0 var(--space-lg);
}

.footer-grid {
    display: grid;
    grid-template-columns: 1.5fr repeat(3, 1fr) 1.5fr;
    gap: var(--space-xl);
    margin-bottom: var(--space-xl);
}

.footer-tagline {
    color: var(--color-gray);
    margin: var(--space-sm) 0;
}

.social-links {
    display: flex;
    gap: var(--space-sm);
}

.social-links a {
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 50%;
    transition: all var(--transition-fast);
}

.social-links a:hover {
    background: var(--color-white);
    color: var(--color-primary);
}

.footer-links h4,
.footer-contact h4 {
    font-size: 0.9rem;
    font-weight: 600;
    margin-bottom: var(--space-md);
    letter-spacing: 1px;
    text-transform: uppercase;
}

.footer-links ul li {
    margin-bottom: var(--space-xs);
}

.footer-links a {
    color: rgba(255, 255, 255, 0.7);
    font-size: 0.9rem;
    transition: color var(--transition-fast);
}

.footer-links a:hover {
    color: var(--color-white);
}

.footer-contact address {
    font-style: normal;
    color: rgba(255, 255, 255, 0.7);
    font-size: 0.9rem;
}

.footer-contact a:hover {
    color: var(--color-white);
}

.footer-bottom {
    padding-top: var(--space-lg);
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-size: 0.85rem;
    color: rgba(255, 255, 255, 0.5);
}

/* ===== COOKIE BANNER ===== */
.cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background: var(--color-white);
    box-shadow: 0 -5px 30px rgba(0, 0, 0, 0.1);
    padding: var(--space-md);
    z-index: 9999;
}

.cookie-content {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: var(--space-lg);
}

.cookie-content p {
    font-size: 0.9rem;
    color: var(--color-gray);
}

.cookie-content a {
    text-decoration: underline;
}

.cookie-actions {
    display: flex;
    gap: var(--space-sm);
}

.cookie-actions .btn {
    padding: 10px 20px;
    font-size: 0.8rem;
}

/* ===== RESPONSIVE ===== */
@media (max-width: 1024px) {
    .footer-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 768px) {
    .main-nav {
        display: none;
        position: absolute;
        top: 100%;
        left: 0;
        width: 100%;
        background: var(--color-white);
        border-top: 1px solid var(--color-border);
        box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
        padding: var(--space-md);
    }

    .main-nav.active {
        display: block;
    }

    .nav-list {
        flex-direction: column;
        gap: var(--space-sm);
    }

    .mobile-menu-toggle {
        display: flex;
    }

    .category-grid {
        grid-template-columns: 1fr;
    }

    .footer-grid {
        grid-template-columns: 1fr;
        text-align: center;
    }

    .footer-brand {
        align-items: center;
    }

    .social-links {
        justify-content: center;
    }

    .footer-bottom {
        flex-direction: column;
        gap: var(--space-sm);
        text-align: center;
    }

    .cookie-content {
        flex-direction: column;
        text-align: center;
    }
}

/* ===== TOAST NOTIFICATION ===== */
.toast-notification {
    position: fixed;
    bottom: 30px;
    left: 50%;
    transform: translateX(-50%) translateY(100px);
    background: var(--color-primary);
    color: var(--color-white);
    padding: 15px 25px;
    border-radius: 8px;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.2);
    z-index: 10000;
    opacity: 0;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    gap: 10px;
}

.toast-notification.show {
    opacity: 1;
    transform: translateX(-50%) translateY(0);
}

.toast-notification a {
    color: var(--color-white);
}

.toast-error {
    background: #c41e3a;
}

/* ===== MOBILE BOTTOM NAVIGATION (App Style) ===== */
.mobile-bottom-nav {
    display: none;
    position: fixed;
    bottom: 0;
    left: 0;
    width: 100%;
    /* Glassmorphism Effect */
    background: rgba(17, 17, 17, 0.95);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);

    padding: 10px 20px 25px 20px;
    /* Extra padding at bottom for iPhone home indicator */
    justify-content: space-around;
    align-items: center;
    z-index: 9999;
    box-shadow: 0 -5px 20px rgba(0, 0, 0, 0.15);
    border-top: 1px solid rgba(255, 255, 255, 0.05);
}

.mobile-bottom-nav .nav-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 4px;
    color: rgba(255, 255, 255, 0.5);
    font-size: 10px;
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    width: 60px;
    height: 50px;
    border-radius: 12px;
}

.mobile-bottom-nav .nav-item i {
    font-size: 20px;
    margin-bottom: 2px;
    transition: transform 0.2s ease;
}

/* Active State */
.mobile-bottom-nav .nav-item.active {
    color: var(--color-secondary);
    background: rgba(255, 255, 255, 0.05);
    /* Subtle highlight */
}

.mobile-bottom-nav .nav-item.active i {
    color: var(--color-secondary);
    transform: translateY(-2px);
}

.mobile-bottom-nav .nav-item:hover {
    color: var(--color-white);
}

/* Cart Icon Badge */
.mobile-bottom-nav .icon-wrapper {
    position: relative;
    display: flex;
    justify-content: center;
}

.mobile-bottom-nav .cart-count {
    position: absolute;
    top: -6px;
    right: -8px;
    background: var(--color-secondary);
    color: var(--color-primary);
    font-size: 10px;
    font-weight: 700;
    min-width: 16px;
    height: 16px;
    padding: 0 4px;
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    border: 2px solid var(--color-primary);
    /* Border for better separation */
}

/* Media Queries */
@media (max-width: 768px) {
    .mobile-bottom-nav {
        display: flex;
    }

    .site-footer {
        padding-bottom: 100px;
        /* Push footer content up */
    }

    /* Adjust floating elements position */
    .cookie-banner {
        bottom: 85px;
    }

    .toast-notification {
        bottom: 95px;
    }

    /* Hide scroll-to-top button if exists */
    #scrollToTop {
        bottom: 90px;
    }
}

/* Cart Pulse Animation */
.cart-count.pulse {
    animation: cartPulse 0.3s ease;
}

@keyframes cartPulse {
    0% {
        transform: scale(1);
    }

    100% {
        transform: scale(1);
    }
}

/* PWA Install Banner */
.pwa-install-container {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    z-index: 10000;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    padding: 10px 15px;
    animation: slideDown 0.5s ease;
    display: none;
    /* Initially hidden */
}

@keyframes slideDown {
    from {
        transform: translateY(-100%);
    }

    to {
        transform: translateY(0);
    }
}

.pwa-install-content {
    display: flex;
    align-items: center;
    justify-content: space-between;
    max-width: 600px;
    margin: 0 auto;
    width: 100%;
}

.pwa-icon {
    width: 40px;
    height: 40px;
    border-radius: 8px;
    margin-right: 12px;
}

.pwa-text {
    flex: 1;
    display: flex;
    flex-direction: column;
}

.pwa-title {
    font-weight: 600;
    font-size: 14px;
    color: var(--color-primary);
}

.pwa-desc {
    font-size: 11px;
    color: #666;
}

.pwa-btn {
    background: var(--color-gold);
    color: #fff;
    border: none;
    padding: 6px 16px;
    border-radius: 20px;
    font-size: 12px;
    font-weight: 600;
    cursor: pointer;
    margin-left: 10px;
    white-space: nowrap;
}

.pwa-close {
    background: none;
    border: none;
    font-size: 24px;
    color: #999;
    margin-left: 10px;
    cursor: pointer;
    line-height: 1;
    padding: 0 5px;
}/ *   F o o t e r   S i g n a t u r e   -   M K O   * /  
 . f o o t e r - s i g n a t u r e   {  
         m a r g i n - t o p :   1 5 p x ;  
         f o n t - s i z e :   0 . 8 5 r e m ;  
         c o l o r :   r g b a ( 2 5 5 ,   2 5 5 ,   2 5 5 ,   0 . 4 ) ;  
         f o n t - f a m i l y :   ' I n t e r ' ,   s a n s - s e r i f ;  
         l e t t e r - s p a c i n g :   0 . 5 p x ;  
 }  
  
 . m k o - b r a n d   {  
         f o n t - w e i g h t :   7 0 0 ;  
         c o l o r :   r g b a ( 2 5 5 ,   2 5 5 ,   2 5 5 ,   0 . 7 ) ;  
         p o s i t i o n :   r e l a t i v e ;  
         d i s p l a y :   i n l i n e - b l o c k ;  
         t r a n s i t i o n :   a l l   0 . 3 s   e a s e ;  
         c u r s o r :   d e f a u l t ;  
 }  
  
 . m k o - b r a n d : : a f t e r   {  
         c o n t e n t :   ' ' ;  
         p o s i t i o n :   a b s o l u t e ;  
         w i d t h :   0 ;  
         h e i g h t :   1 p x ;  
         b o t t o m :   - 2 p x ;  
         l e f t :   0 ;  
         b a c k g r o u n d - c o l o r :   v a r ( - - c o l o r - p r i m a r y ) ;  
         / *   v e y a   i s t e d i Ä xi n   p a r l a k   b i r   r e n k   # c 4 1 e 3 a   * /  
         t r a n s i t i o n :   w i d t h   0 . 3 s   e a s e ;  
 }  
  
 . f o o t e r - s i g n a t u r e : h o v e r   . m k o - b r a n d   {  
         c o l o r :   # f f f ;  
         t e x t - s h a d o w :   0   0   1 0 p x   r g b a ( 2 5 5 ,   2 5 5 ,   2 5 5 ,   0 . 3 ) ;  
 }  
  
 . f o o t e r - s i g n a t u r e : h o v e r   . m k o - b r a n d : : a f t e r   {  
         w i d t h :   1 0 0 % ;  
 }  
 
/* override signature */
.mko-brand {
    background: linear-gradient(to right, #fff 0%, #ffd700 50%, #fff 100%);
    background-size: 200% auto;
    color: #fff;
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
    animation: shine 3s linear infinite;
    font-weight: bold;
}
@keyframes shine {
    to {
        background-position: 200% center;
    }
}

/ *   M K O   S i g n a t u r e   -   U l t i m a t e   S h i n e   E f f e c t   * /  
 . f o o t e r - s i g n a t u r e   {  
         m a r g i n - t o p :   1 5 p x ;  
         f o n t - s i z e :   0 . 9 r e m ;  
         c o l o r :   r g b a ( 2 5 5 ,   2 5 5 ,   2 5 5 ,   0 . 5 ) ;  
         f o n t - f a m i l y :   ' I n t e r ' ,   s a n s - s e r i f ;  
         l e t t e r - s p a c i n g :   0 . 5 p x ;  
         d i s p l a y :   i n l i n e - b l o c k ;  
 }  
  
 . m k o - b r a n d   {  
         f o n t - w e i g h t :   9 0 0 ;  
         p o s i t i o n :   r e l a t i v e ;  
         d i s p l a y :   i n l i n e - b l o c k ;  
  
         / *   C a n l Ä ±   A l t Ä ± n - B e y a z   G r a d y a n   * /  
         b a c k g r o u n d :   l i n e a r - g r a d i e n t ( 1 2 0 d e g ,  
                         # b f 9 5 3 f   - 2 0 % ,  
                         # f c f 6 b a   2 0 % ,  
                         # b 3 8 7 2 8   4 0 % ,  
                         # f b f 5 b 7   6 0 % ,  
                         # a a 7 7 1 c   8 0 % ) ;  
         b a c k g r o u n d - s i z e :   2 0 0 %   a u t o ;  
  
         / *   M e t i n   M a s k e l e m e   * /  
         c o l o r :   t r a n s p a r e n t ;  
         - w e b k i t - b a c k g r o u n d - c l i p :   t e x t ;  
         b a c k g r o u n d - c l i p :   t e x t ;  
         - w e b k i t - t e x t - f i l l - c o l o r :   t r a n s p a r e n t ;  
  
         / *   S Ã ¼ r e k l i   A n i m a s y o n   * /  
         a n i m a t i o n :   g o l d S h i n e   3 s   l i n e a r   i n f i n i t e ;  
 }  
  
 @ k e y f r a m e s   g o l d S h i n e   {  
         t o   {  
                 b a c k g r o u n d - p o s i t i o n :   2 0 0 %   c e n t e r ;  
         }  
 }  
  
 / *   H o v e r ' d a   e k s t r a   p a r Ä ± l t Ä ±   * /  
 . f o o t e r - s i g n a t u r e : h o v e r   . m k o - b r a n d   {  
         f i l t e r :   d r o p - s h a d o w ( 0   0   5 p x   r g b a ( 2 5 5 ,   2 1 5 ,   0 ,   0 . 8 ) ) ;  
         t r a n s f o r m :   s c a l e ( 1 . 1 ) ;  
         t r a n s i t i o n :   t r a n s f o r m   0 . 3 s   e a s e ;  
 }  
 
/* PWA Button Fix */
.pwa-btn {
    background-color: #d4af37 !important; /* Altın Sarısı */
    color: #000 !important; /* Siyah Yazı */
    border: none !important;
    font-weight: bold !important;
    box-shadow: 0 0 10px rgba(212, 175, 55, 0.5);
}
.pwa-btn:hover {
    background-color: #ffd700 !important; /* Daha parlak sarı */
    transform: scale(1.05);
}


/* PWA Button Fix - ID Based for Priority */
#pwa-install-prompt button {
    background-color: #d4af37 !important;
    color: #000 !important;
    opacity: 1 !important; /* Görünürlük garantisi */
    visibility: visible !important;
}


/* PWA Button FINAL CORRECT FIX */
#pwa-install-btn {
    background-color: #d4af37 !important;
    color: #000 !important;
    opacity: 1 !important;
    visibility: visible !important;
    box-shadow: 0 0 10px rgba(212, 175, 55, 0.5);
    display: inline-block !important; /* Block edilmesin */
}


/* SEO Accessibility - Hidden but readable by screen readers and bots */
.visually-hidden {
    position: absolute;
    width: 1px;
    height: 1px;
    padding: 0;
    margin: -1px;
    overflow: hidden;
    clip: rect(0, 0, 0, 0);
    white-space: nowrap;
    border: 0;
}

/* Mobile Mega Menu Fix */
@media (max-width: 768px) {
    .mega-menu-inner {
        flex-direction: column !important;
        overflow-x: hidden;
    }
    .mega-menu-column {
        width: 100% !important;
        min-width: 100% !important;
        flex: 1 1 100% !important;
    }
    .mega-menu {
        max-height: 70vh;
        overflow-y: auto;
    }
}
