/* ==========================================================================
   Components (Buttons, Cards, Forms, Navbar, Footer, etc.)
   ========================================================================== */

/* Buttons */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 0.875rem 1.75rem;
    font-family: var(--font-heading);
    font-weight: 600;
    font-size: 1rem;
    border-radius: var(--radius-md);
    cursor: pointer;
    transition: var(--transition-normal);
    border: none;
    outline: none;
    gap: 0.5rem;
    text-align: center;
}

.btn-primary {
    background-color: var(--color-emerald);
    color: var(--color-white);
    box-shadow: var(--shadow-md);
}

.btn-primary:hover {
    background-color: var(--color-forest-dark);
    color: var(--color-white);
    transform: translateY(-2px);
    box-shadow: var(--shadow-hover);
}

.btn-secondary {
    background-color: transparent;
    color: var(--color-white);
    border: 2px solid var(--color-white);
}

.btn-secondary:hover {
    background-color: var(--color-white);
    color: var(--color-forest-dark);
    transform: translateY(-2px);
}

.btn-dark {
    background-color: var(--color-anthracite);
    color: var(--color-white);
}

.btn-dark:hover {
    background-color: var(--color-forest-dark);
    color: var(--color-white);
    transform: translateY(-2px);
}

.btn-whatsapp {
    background-color: #25D366;
    color: var(--color-white);
    box-shadow: var(--shadow-md);
}

.btn-whatsapp:hover {
    background-color: #128C7E;
    color: var(--color-white);
    transform: translateY(-2px);
}

/* Header & Navbar */

.map-overlay-buttons {
    position: absolute;
    bottom: 20px;
    left: 20px;
    background: white;
    padding: 1rem;
    border-radius: var(--radius-md);
    box-shadow: var(--shadow-lg);
    display: flex;
    gap: 1rem;
    z-index: 10;
}

.site-header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 1000;
    background-color: var(--glass-bg);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    border-bottom: 1px solid var(--glass-border);
    transition: var(--transition-normal);
}

.site-header.scrolled {
    padding: 0.5rem 0;
    box-shadow: var(--shadow-md);
}

.navbar {
    display: flex;
    align-items: center;
    justify-content: space-between;
    height: 90px;
    transition: var(--transition-normal);
}

.header-logo-img {
    height: 140px;
    max-height: none;
    width: auto;
    mix-blend-mode: multiply;
    margin-left: -15px;
    margin-top: 15px;
    transition: all 0.3s ease;
}

.site-header.scrolled .navbar {
    height: 95px;
}

.logo {
    font-family: var(--font-heading);
    font-size: 1.5rem;
    font-weight: 800;
    color: var(--color-forest-dark);
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.logo span {
    color: var(--color-emerald);
}

.nav-links {
    display: flex;
    align-items: center;
    gap: 2.5rem;
}

.nav-links a {
    color: var(--color-anthracite);
    font-weight: 500;
    font-size: 1rem;
    position: relative;
    white-space: nowrap;
}

.nav-links a::after {
    content: '';
    position: absolute;
    bottom: -4px;
    left: 0;
    width: 0;
    height: 2px;
    background-color: var(--color-emerald);
    transition: var(--transition-normal);
}

.nav-links a:hover::after,
.nav-links a.active::after {
    width: 100%;
}

.nav-links a:hover,
.nav-links a.active {
    color: var(--color-emerald);
}

.nav-actions {
    display: flex;
    gap: 1rem;
    align-items: center;
}

.mobile-menu-btn {
    display: none;
    background: none;
    border: none;
    font-size: 1.5rem;
    color: var(--color-anthracite);
    cursor: pointer;
}

/* Cards */



.card {
    background: var(--color-white);
    border-radius: var(--radius-lg);
    padding: 2rem;
    box-shadow: var(--shadow-sm);
    transition: var(--transition-normal);
    border: 1px solid var(--color-gray-light);
    height: 100%;
    display: flex;
    flex-direction: column;
}

.card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-lg);
    border-color: var(--color-emerald);
}

.card-icon {
    width: 60px;
    height: 60px;
    background: var(--color-gray-light);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1.5rem;
    color: var(--color-emerald);
    font-size: 1.5rem;
    transition: var(--transition-normal);
}

.card:hover .card-icon {
    background: var(--color-emerald);
    color: var(--color-white);
}


.product-card {
    display: grid !important;
    grid-template-columns: 1fr 2.5fr !important;
    gap: 2rem;
    align-items: start;
}

.card-title {
    font-size: 1.25rem;
    margin-bottom: 1rem;
}

/* Hero Section */
.hero {
    position: relative;
    min-height: 100vh;
    display: flex;
    align-items: center;
    background-color: var(--color-anthracite);
    background-image: linear-gradient(rgba(18, 55, 42, 0.8), rgba(28, 33, 31, 0.9)), url('../images/hero-bg.jpg');
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
    color: var(--color-white);
    padding-top: 90px;
}

.hero-content {
    max-width: 800px;
}

.hero-subtitle {
    display: inline-block;
    padding: 0.5rem 1rem;
    background-color: rgba(25, 135, 84, 0.2);
    border: 1px solid rgba(25, 135, 84, 0.5);
    border-radius: 50px;
    font-size: 0.875rem;
    font-weight: 600;
    letter-spacing: 1px;
    margin-bottom: 1.5rem;
    backdrop-filter: blur(4px);
}

.hero h1 {
    color: var(--color-white);
    margin-bottom: 1.5rem;
}

.hero p {
    font-size: 1.125rem;
    opacity: 0.9;
    margin-bottom: 2.5rem;
    max-width: 600px;
}

/* Forms */
.form-group {
    margin-bottom: 1.5rem;
}

.form-label {
    display: block;
    margin-bottom: 0.5rem;
    font-weight: 500;
    color: var(--color-gray-dark);
}

.form-control {
    width: 100%;
    padding: 0.875rem 1rem;
    border: 1px solid #D1D5DB;
    border-radius: var(--radius-md);
    font-family: var(--font-primary);
    font-size: 1rem;
    transition: var(--transition-fast);
    background-color: var(--color-white);
}

.form-control:focus {
    outline: none;
    border-color: var(--color-emerald);
    box-shadow: 0 0 0 3px rgba(25, 135, 84, 0.1);
}

textarea.form-control {
    min-height: 120px;
    resize: vertical;
}

/* Footer */
.site-footer {
    background: var(--color-white);
    color: #000000;
    font-weight: 700;
    padding: 5rem 0 2rem;
}

.site-footer a, .footer-bottom a {
    color: #000000 !important;
    font-weight: 700 !important;
}


.footer-top {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1.5fr;
    gap: 3rem;
    margin-bottom: 3rem;
}

.footer-title {
    color: var(--color-white);
    font-size: 1.25rem;
    margin-bottom: 1.5rem;
}

.footer-links li {
    margin-bottom: 0.75rem;
}

.footer-links a {
    color: #A3B1AA;
}

.footer-links a:hover {
    color: var(--color-white);
    padding-left: 5px;
}

.footer-contact li {
    display: flex;
    align-items: flex-start;
    gap: 1rem;
    margin-bottom: 1rem;
    color: #A3B1AA;
}

.footer-contact i {
    color: var(--color-emerald);
    margin-top: 4px;
}

.footer-bottom {
    padding-top: 2rem;
    border-top: 1px solid rgba(0, 0, 0, 0.1);
    display: flex;
    justify-content: space-between;
    align-items: center;
    color: #000000;
    font-size: 0.875rem;
}

.designer-logo-link {
    display: inline-flex;
    align-items: center;
    justify-content: center;
}

.designer-logo {
    width: 240px;
    max-height: 88px;
    object-fit: contain;
}

@media (max-width: 768px) {
    .designer-logo {
        width: 210px;
        max-height: 76px;
    }
}

/* Page Header (Inner pages) */
.page-header {
    background-color: var(--color-forest-dark);
    padding: 120px 0 60px;
    color: var(--color-white);
    text-align: center;
}

.page-header h1 {
    color: var(--color-white);
    margin-bottom: 1rem;
}

/* Floating WhatsApp */
.floating-whatsapp {
    position: fixed;
    bottom: 30px;
    right: 30px;
    width: 60px;
    height: 60px;
    background-color: #25D366;
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2rem;
    box-shadow: var(--shadow-lg);
    z-index: 999;
    transition: var(--transition-normal);
}

.floating-whatsapp:hover {
    transform: scale(1.1);
    color: white;
}

/* Mobile Quick Actions (Bottom Bar) */
.mobile-quick-actions {
    display: none;
    position: fixed;
    bottom: 0;
    left: 0;
    width: 100%;
    background: var(--color-white);
    box-shadow: 0 -2px 10px rgba(0,0,0,0.1);
    z-index: 998;
}

.mobile-quick-actions ul {
    display: flex;
    width: 100%;
}

.mobile-quick-actions li {
    flex: 1;
}

.mobile-quick-actions a {
    display: flex;
    flex-direction: column;
    align-items: center;
    padding: 0.75rem 0;
    font-size: 0.75rem;
    color: var(--color-gray-dark);
    gap: 0.25rem;
}

.mobile-quick-actions a i {
    font-size: 1.25rem;
}

.mobile-quick-actions a:hover {
    color: var(--color-emerald);
}

/* Responsive Overrides */
@media (max-width: 992px) {
    .nav-links, .nav-actions .btn:not(.mobile-menu-btn) {
        display: none;
    }
    .mobile-menu-btn {
        display: block;
    }
    
    .nav-links.active {
        display: flex;
        flex-direction: column;
        position: absolute;
        top: 100%;
        left: 0;
        width: 100%;
        background: var(--color-white);
        padding: 2rem;
        box-shadow: var(--shadow-md);
        gap: 1.5rem;
    }
    
    .header-logo-img {
        height: 95px;
        margin-top: 5px;
        margin-left: 0;
    }
    
    .hero {
        min-height: auto;
    }
    
    .footer-top {
        grid-template-columns: 1fr 1fr;
    }
}

@media (max-width: 768px) {
    .designer-badge {
        font-size: 0.85rem !important;
        padding: 0.5rem 1rem !important;
        max-width: 90% !important;
        margin: 0 auto !important;
        gap: 0.5rem !important;
    }
    .designer-badge i {
        font-size: 1rem !important;
    }
    .map-overlay-buttons {
        position: relative !important;
        bottom: 0 !important;
        left: 0 !important;
        flex-direction: column !important;
        width: 100% !important;
        gap: 0.5rem !important;
        box-shadow: none !important;
        padding: 1rem 0 0 0 !important;
    }
    
    .footer-top {
        grid-template-columns: 1fr;
    }
    .footer-bottom {
        flex-direction: column;
        gap: 1rem;
        text-align: center;
    }
    .whatsapp-widget-container {
        display: none !important;
    }
    
    .product-card {
        grid-template-columns: 1fr !important;
    }
    
    .whatsapp-widget-btn span:not(.whatsapp-notification-dot) {
        display: none;
    }
    .whatsapp-widget-btn {
        padding: 15px;
        border-radius: 50%;
    }
    .mobile-quick-actions {
        display: block;
    }
    body {
        padding-bottom: 60px; /* Leave space for quick actions */
    }
}

/* Hızlı İletişim Banners */
.quick-contact-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 1rem;
    margin-top: 1rem;
}

.quick-contact-card {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    padding: 1rem 1.5rem;
    border-radius: var(--radius-md);
    font-weight: 600;
    font-size: 1rem;
    white-space: nowrap;
    transition: var(--transition-normal);
    text-align: center;
    box-shadow: var(--shadow-sm);
    text-decoration: none;
}

.quick-contact-card:hover {
    transform: translateY(-3px);
    box-shadow: var(--shadow-md);
}

.card-phone {
    background-color: var(--color-emerald);
    color: var(--color-white);
}

.card-whatsapp {
    background-color: #25D366;
    color: var(--color-white);
}

.card-email {
    background-color: var(--color-white);
    color: var(--color-emerald);
    border: 2px solid var(--color-emerald);
}

.card-map {
    background-color: var(--color-anthracite);
    color: var(--color-white);
}

/* Tasarımcı Rozeti (Designer Badge) */
.designer-badge {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    background: linear-gradient(to right, #faf5ff, #fdf2f8);
    color: #9333ea;
    padding: 8px 20px;
    border-radius: 9999px;
    font-size: 0.875rem;
    font-weight: 700;
    font-style: italic;
    text-decoration: none;
    transition: all 0.3s ease;
    border: 1px solid #f3e8ff;
}

.designer-badge:hover {
    transform: translateY(-2px);
    box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.1);
}

.designer-badge i.fa-instagram {
    font-size: 1.25rem;
}

.designer-badge i.fa-arrow-pointer {
    font-size: 1.125rem;
    color: #9333ea;
    margin-left: 4px;
    animation: designer-pulse 2s cubic-bezier(0.4, 0, 0.6, 1) infinite;
    transition: transform 0.3s ease;
}

.designer-badge:hover i.fa-arrow-pointer {
    transform: scale(1.25);
}

@keyframes designer-pulse {
    0%, 100% { opacity: 1; }
    50% { opacity: .5; }
}

/* WhatsApp Widget Container */
.whatsapp-widget-container {
    position: fixed;
    bottom: 25px;
    right: 25px;
    z-index: 1000;
    display: flex;
    flex-direction: column;
    align-items: flex-end;
    font-family: 'Inter', sans-serif;
}

/* Widget Button */
.whatsapp-widget-btn {
    display: flex;
    align-items: center;
    gap: 10px;
    background-color: #4ade80;
    color: white;
    border: none;
    padding: 12px 24px;
    border-radius: 50px;
    font-size: 1.1rem;
    font-weight: 700;
    cursor: pointer;
    box-shadow: 0 4px 15px rgba(74, 222, 128, 0.4);
    position: relative;
    transition: all 0.3s ease;
}

.whatsapp-widget-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(74, 222, 128, 0.5);
    background-color: #22c55e;
}

.whatsapp-widget-btn i {
    font-size: 1.5rem;
}

.whatsapp-notification-dot {
    position: absolute;
    top: -2px;
    right: -2px;
    width: 14px;
    height: 14px;
    background-color: #ff0000;
    border-radius: 50%;
    border: 2px solid white;
    animation: pulse-red 2s infinite;
}

@keyframes pulse-red {
    0% { transform: scale(0.95); box-shadow: 0 0 0 0 rgba(255, 0, 0, 0.7); }
    70% { transform: scale(1); box-shadow: 0 0 0 10px rgba(255, 0, 0, 0); }
    100% { transform: scale(0.95); box-shadow: 0 0 0 0 rgba(255, 0, 0, 0); }
}

/* Widget Popup */
.whatsapp-widget-popup {
    width: 320px;
    background-color: white;
    border-radius: 12px;
    overflow: hidden;
    aspect-ratio: 1672 / 941;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.15);
    margin-bottom: 15px;
    opacity: 0;
    visibility: hidden;
    transform: translateY(20px);
    transition: all 0.3s ease;
    transform-origin: bottom right;
}

.whatsapp-widget-popup.show {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.whatsapp-popup-header {
    background-color: #0d5f4f;
    padding: 15px;
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    color: white;
}

.whatsapp-popup-header-info {
    display: flex;
    align-items: center;
    gap: 12px;
}

.whatsapp-popup-header-info img {
    width: 45px;
    height: 45px;
    border-radius: 50%;
    background-color: white;
    object-fit: contain;
    border: 2px solid #4ade80;
}

.whatsapp-popup-header-info div {
    display: flex;
    flex-direction: column;
    text-align: left;
}

.whatsapp-popup-header-info strong {
    font-size: 1rem;
    font-weight: 700;
    color: white;
}

.whatsapp-popup-header-info span {
    font-size: 0.8rem;
    opacity: 0.9;
}

.whatsapp-popup-close {
    background: transparent;
    border: none;
    color: rgba(255, 255, 255, 0.6);
    font-size: 1.2rem;
    cursor: pointer;
    transition: color 0.3s ease;
    padding: 0;
}

.whatsapp-popup-close:hover {
    color: white;
}

.whatsapp-popup-body {
    background-color: #e5ddd5;
    background-image: url('https://user-images.githubusercontent.com/15075759/28719144-86dc0f70-73b1-11e7-911d-60d70fcded21.png');
    padding: 20px 15px;
    min-height: 200px;
    text-align: left;
}

.whatsapp-message {
    background-color: white;
    padding: 12px 15px;
    border-radius: 0 10px 10px 10px;
    position: relative;
    box-shadow: 0 1px 2px rgba(0,0,0,0.1);
    max-width: 85%;
}

.whatsapp-message::before {
    content: '';
    position: absolute;
    top: 0;
    left: -8px;
    width: 0;
    height: 0;
    border-top: 0 solid transparent;
    border-bottom: 15px solid transparent;
    border-right: 15px solid white;
}

.whatsapp-message strong {
    display: block;
    color: #9ea4a9;
    font-size: 0.85rem;
    margin-bottom: 5px;
}

.whatsapp-message p {
    margin: 0 0 5px 0;
    color: #303030;
    font-size: 0.95rem;
}

.whatsapp-time {
    display: block;
    text-align: right;
    font-size: 0.7rem;
    color: #9ea4a9;
    margin-top: 5px;
}

.whatsapp-popup-footer {
    padding: 15px;
    background-color: white;
    display: flex;
    justify-content: center;
}

.whatsapp-start-btn {
    background-color: #4ade80;
    color: white !important;
    text-decoration: none;
    padding: 12px 25px;
    border-radius: 50px;
    font-weight: 700;
    display: flex;
    align-items: center;
    gap: 8px;
    width: 100%;
    justify-content: center;
    transition: background-color 0.3s ease;
    font-size: 1rem;
}

.whatsapp-start-btn:hover {
    background-color: #22c55e;
}

@media (max-width: 768px) {
    .designer-badge {
        font-size: 0.85rem !important;
        padding: 0.5rem 1rem !important;
        max-width: 90% !important;
        margin: 0 auto !important;
        gap: 0.5rem !important;
    }
    .designer-badge i {
        font-size: 1rem !important;
    }
    .map-overlay-buttons {
        position: relative !important;
        bottom: 0 !important;
        left: 0 !important;
        flex-direction: column !important;
        width: 100% !important;
        gap: 0.5rem !important;
        box-shadow: none !important;
        padding: 1rem 0 0 0 !important;
    }
    
    .whatsapp-widget-btn span:not(.whatsapp-notification-dot) {
        display: none;
    }
    .whatsapp-widget-btn {
        padding: 15px;
        border-radius: 50%;
    }
    .whatsapp-widget-popup {
        width: 300px;
        position: fixed;
        bottom: 80px;
        right: 15px;
    }
    .whatsapp-widget-container {
        bottom: 15px;
        right: 15px;
    }
}

/* Hero Granul Grid */
.granul-hero-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
    gap: 1.5rem;
    position: relative;
    z-index: 2;
    width: 100%;
}

.granul-hero-card {
    position: relative;
    height: 180px;
    border-radius: var(--radius-lg);
    overflow: hidden;
    aspect-ratio: 1672 / 941;
    display: flex;
    align-items: center;
    justify-content: center;
    text-decoration: none;
    background: rgba(255, 255, 255, 0.05);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    border: 1px solid rgba(255, 255, 255, 0.15);
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.granul-hero-card::before {
    content: '';
    position: absolute;
    top: 0; left: 0; right: 0; bottom: 0;
    background: linear-gradient(135deg, rgba(74, 222, 128, 0.3) 0%, rgba(13, 95, 79, 0.6) 100%);
    opacity: 0.8;
    transition: all 0.4s ease;
    z-index: 1;
}

.granul-card-content {
    position: relative;
    z-index: 2;
    text-align: center;
    color: white;
    padding: 1.5rem;
    transform: translateY(15px);
    transition: all 0.4s ease;
}

.granul-card-content h3 {
    margin: 0;
    font-size: 1.4rem;
    font-weight: 700;
    letter-spacing: 0.5px;
    text-shadow: 0 2px 4px rgba(0,0,0,0.5);
}

.click-indicator {
    margin-top: 15px;
    opacity: 0;
    transform: translateY(20px);
    transition: all 0.4s ease;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: white;
    color: var(--color-emerald);
    padding: 6px 16px;
    border-radius: 50px;
    font-size: 0.9rem;
    font-weight: 700;
    box-shadow: 0 4px 10px rgba(0,0,0,0.2);
}

.click-indicator i {
    animation: bounce-pointer 1.5s infinite;
}

@keyframes bounce-pointer {
    0%, 100% { transform: translateY(0) rotate(-15deg); }
    50% { transform: translateY(-4px) rotate(-15deg); }
}

.granul-hero-card:hover {
    transform: scale(1.05) translateY(-5px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.4);
    border-color: rgba(255, 255, 255, 0.6);
    z-index: 10;
}

.granul-hero-card:hover::before {
    opacity: 0.95;
    background: linear-gradient(135deg, rgba(74, 222, 128, 0.5) 0%, rgba(13, 95, 79, 0.8) 100%);
}

.granul-hero-card:hover .granul-card-content {
    transform: translateY(0);
}

.granul-hero-card:hover .click-indicator {
    opacity: 1;
    transform: translateY(0);
}

/* Granuller Banner Overlays */
.granuller-banner-container {
    position: relative;
    width: 100%;
}
.granul-overlay {
    position: absolute;
    top: 42.5%; 
    height: 35.5%;
    transform: skewX(-16deg); /* Match the slant exactly */
    display: flex;
    align-items: center;
    justify-content: center;
    text-decoration: none;
    border-radius: 8px; /* Slightly rounded edges like the image */
    transition: all 0.3s ease;
    cursor: pointer;
    z-index: 10;
}
.granul-overlay .hover-content {
    opacity: 0;
    transform: skewX(16deg) translateY(10px) scale(0.9); /* Un-skew the text */
    background: rgba(255,255,255,0.95);
    color: var(--color-emerald);
    padding: 10px 22px;
    border-radius: 30px;
    font-weight: 700;
    font-size: 1rem;
    transition: all 0.3s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    box-shadow: 0 4px 15px rgba(0,0,0,0.2);
    pointer-events: none;
    display: flex;
    align-items: center;
    gap: 8px;
}
.granul-overlay:hover {
    background: rgba(255, 255, 255, 0.2);
    backdrop-filter: blur(3px);
    -webkit-backdrop-filter: blur(3px);
    border: 2px solid rgba(255, 255, 255, 0.7);
    box-shadow: 0 10px 30px rgba(0,0,0,0.3);
}
.granul-overlay:hover .hover-content {
    opacity: 1;
    transform: skewX(16deg) translateY(0) scale(1.1); /* Pop out effect */
}

@media (max-width: 768px) {

    .navbar {
        position: relative;
        justify-content: center !important; /* Center the logo */
    }
    .menu-toggle {
        position: absolute;
        left: 0;
        top: 50%;
        transform: translateY(-50%);
        /* Premium click effect styles */
        transition: transform 0.2s cubic-bezier(0.175, 0.885, 0.32, 1.275), background-color 0.2s ease !important;
        border-radius: 50%;
        padding: 8px;
        z-index: 100;
    }
    .menu-toggle:active {
        transform: translateY(-50%) scale(0.85);
        background-color: rgba(0, 0, 0, 0.05);
    }
    
    /* Make designer badge much smaller and single line */
    .designer-badge {
        font-size: 0.7rem !important;
        padding: 0.25rem 0.75rem !important;
        max-width: fit-content !important;
        white-space: nowrap !important;
        margin: 0 auto !important;
        gap: 0.35rem !important;
        flex-wrap: nowrap !important;
    }
    .designer-badge i {
        font-size: 0.8rem !important;
    }
    
}

@media (max-width: 768px) {

    .site-header {
        padding: 0.5rem 0 !important;
    }
    .navbar {
        display: grid !important;
        grid-template-columns: 1fr auto 1fr !important;
        align-items: center !important;
        justify-content: stretch !important;
        position: relative !important;
    }
    .menu-toggle {
        grid-column: 1 !important;
        justify-self: start !important;
        position: static !important;
        transform: none !important;
        margin-left: -0.5rem !important; /* pull slightly to edge */
        /* Premium click effect */
        transition: transform 0.2s cubic-bezier(0.175, 0.885, 0.32, 1.275), background-color 0.2s ease, box-shadow 0.2s ease !important;
        border-radius: 50% !important;
        padding: 10px !important;
    }
    .menu-toggle:active {
        transform: scale(0.8) !important;
        background-color: rgba(0, 0, 0, 0.08) !important;
        box-shadow: inset 0 2px 5px rgba(0,0,0,0.1) !important;
    }
    .logo {
        grid-column: 2 !important;
        justify-self: center !important;
    }
    /* Hide the right empty column, grid naturally handles it */
    
}

.break-word { word-break: break-word; overflow-wrap: break-word; }

@media (max-width: 768px) {

    .navbar {
        display: flex !important;
        justify-content: space-between !important;
        align-items: center !important;
        position: relative !important;
    }
    .menu-toggle {
        order: -1 !important;
        position: static !important;
        margin: 0 !important;
        transform: none !important;
        
        transition: transform 0.2s cubic-bezier(0.175, 0.885, 0.32, 1.275), background-color 0.2s ease, box-shadow 0.2s ease !important;
        border-radius: 50% !important;
        padding: 10px !important;
    }
    .menu-toggle:active {
        transform: scale(0.85) !important;
        background-color: rgba(0, 0, 0, 0.08) !important;
        box-shadow: inset 0 2px 5px rgba(0,0,0,0.15) !important;
    }
    .logo {
        position: absolute !important;
        left: 50% !important;
        transform: translateX(-50%) !important;
        margin: 0 !important;
    }
    
}


    /* Index Features */
    @media (max-width: 768px) {
        .index-features-grid {
            gap: 0.5rem !important;
        }
        .index-features-grid > div {
            padding: 0.8rem 1rem !important;
        }
        .index-features-grid > div > i {
            font-size: 1.5rem !important;
        }
    }
    
    /* Contact Info Items */
    .contact-info-item {
        display: flex;
        gap: 1.5rem;
        align-items: flex-start;
    }
    .contact-item-header {
        display: contents; /* on desktop, act as if header isn't there */
    }
    .contact-item-icon {
        width: 50px;
        height: 50px;
        background: white;
        border-radius: 50%;
        display: flex;
        align-items: center;
        justify-content: center;
        color: var(--color-emerald);
        font-size: 1.5rem;
        flex-shrink: 0;
        box-shadow: var(--shadow-sm);
    }
    .contact-item-title {
        font-size: 1.125rem;
        margin-bottom: 0.25rem;
        color: var(--color-anthracite);
    }
    .contact-item-content {
        color: var(--color-gray-dark);
        margin: 0;
    }
    .contact-item-content a {
        color: var(--color-gray-dark);
        font-size: 1.125rem;
        text-decoration: none;
    }
    
    @media (max-width: 768px) {
        .contact-info-item {
            flex-direction: column;
            gap: 0.5rem;
            align-items: flex-start;
        }
        .contact-item-header {
            display: flex;
            align-items: center;
            gap: 0.75rem;
        }
        .contact-item-title {
            margin-bottom: 0;
        }
        .contact-item-content {
            padding-left: 0; /* Or some indent if desired */
        }
    }
    

/* Global Contact Info Layout override */

    .contact-info-item {
        flex-direction: column !important;
        gap: 0.5rem !important;
        align-items: flex-start !important;
    }
    .contact-item-header {
        display: flex !important;
        align-items: center !important;
        gap: 0.75rem !important;
    }
    .contact-item-title {
        margin-bottom: 0 !important;
    }
    .contact-item-content {
        padding-left: 0 !important;
    }
    


    @media (max-width: 400px) {
        .contact-item-content p,
        .contact-item-content a {
            font-size: 0.95rem !important;
            word-break: normal !important;
            white-space: nowrap !important;
        }
        .contact-item-title {
            font-size: 1.05rem !important;
        }
    }
    


/* Animated Pointer for Mobile Menu */
.pointer-animation-container {
    position: absolute;
    bottom: -15px;
    right: -10px;
    color: #eab308; /* Premium Gold/Yellow Color */
    font-size: 1.25rem;
    animation: pointAndClick 2s infinite ease-in-out;
    pointer-events: none;
    text-shadow: 0 2px 4px rgba(0,0,0,0.2);
    z-index: 10;
}

@keyframes pointAndClick {
    0%, 100% {
        transform: translate(5px, 5px) scale(1);
    }
    40% {
        transform: translate(-3px, -3px) scale(1);
    }
    50% {
        transform: translate(-3px, -3px) scale(0.85); /* Click press */
    }
    60% {
        transform: translate(-3px, -3px) scale(1.1); /* Click release burst */
    }
    70% {
        transform: translate(-3px, -3px) scale(1);
    }
}



/* Image Modal */
.image-modal {
    display: none;
    position: fixed;
    z-index: 99999;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    overflow: auto;
    background-color: rgba(0,0,0,0.9);
    flex-direction: column;
    align-items: center;
    justify-content: center;
    backdrop-filter: blur(5px);
}

.image-modal-content {
    margin: auto;
    display: block;
    max-width: 90%;
    max-height: 80vh;
    border-radius: 8px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.5);
    animation: modalZoom 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

#imageModalCaption {
    margin-top: 15px;
    display: block;
    width: 80%;
    max-width: 700px;
    text-align: center;
    color: #fff;
    font-size: 1.25rem;
    font-weight: 500;
    animation: modalZoom 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

@keyframes modalZoom {
    from {transform:scale(0.8); opacity: 0;} 
    to {transform:scale(1); opacity: 1;}
}

.image-modal-close {
    position: absolute;
    top: 20px;
    right: 35px;
    color: #f1f1f1;
    font-size: 40px;
    font-weight: bold;
    transition: color 0.3s, transform 0.3s;
    cursor: pointer;
    z-index: 100000;
}

.image-modal-close:hover,
.image-modal-close:focus {
    color: var(--color-emerald);
    transform: scale(1.1);
}

/* Make product images clickable */
.product-card img {
    cursor: zoom-in;
    transition: transform 0.4s ease, filter 0.4s ease;
}

.product-card img:hover {
    transform: scale(1.05);
    filter: brightness(1.05);
}



/* Hero Slider */
.hero-slider-container {
    display: block;
    position: relative;
    width: 100%;
    overflow: hidden;
    aspect-ratio: 1672 / 941;
    border-radius: 8px;
    box-shadow: 0 4px 15px rgba(0,0,0,0.08);
    background-color: #f9f9f9;
}

.hero-slide {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: contain;
    opacity: 0;
    transition: opacity 1s ease-in-out;
    z-index: 1;
}

.hero-slide.active {
    opacity: 1;
    z-index: 2;
}

/* Make sure the first image acts as the placeholder to give height to the container */
.hero-slide:first-child {
    height: auto !important; height: auto !important; 
    position: relative !important;
}



/* Slider Arrows */
.hero-slider-wrapper {
    position: relative;
    width: 100%;
    margin: 0 auto;
}
.slider-arrow {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background: rgba(255, 255, 255, 0.8);
    color: var(--color-anthracite);
    border: none;
    width: 50px;
    height: 50px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    cursor: pointer;
    z-index: 10;
    transition: all 0.3s ease;
    box-shadow: 0 4px 10px rgba(0,0,0,0.15);
}
.slider-arrow:hover {
    background: var(--color-emerald);
    color: white;
}
.prev-arrow {
    left: 20px;
}
.next-arrow {
    right: 20px;
}
@media (max-width: 768px) {
    .slider-arrow {
        width: 35px;
        height: 35px;
        font-size: 1rem;
    }
    .prev-arrow { left: 10px; }
    .next-arrow { right: 10px; }
}


@media (max-width: 768px) {
    .card {
        padding: 1.25rem !important;
    }
}

.site-footer a.designer-badge span,
.site-footer a.designer-badge i.fa-instagram {
    background: linear-gradient(45deg, #f09433 0%, #e6683c 25%, #dc2743 50%, #cc2366 75%, #bc1888 100%) !important;
    -webkit-background-clip: text !important;
    -webkit-text-fill-color: transparent !important;
    color: transparent !important;
    font-weight: 900 !important;
}

.site-footer a.designer-badge i.fa-arrow-pointer {
    color: #9333ea !important;
}
