/* Reset and base styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

@import url('https://fonts.googleapis.com/css2?family=Italiana&family=Dancing+Script:wght@400;700&display=swap');

:root {
    --sidebar-width: 280px;
    --header-height: 60px;
    --primary-color: #64748b;
    --secondary-color: #64748b;
    --text-color: #1e293b;
    --bg-color: #ffffff;
    --border-color: #e2e8f0;
    --shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1);
    --transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    --font-system: 'Italiana', serif;
}

body {
    font-family: var(--font-system);
    line-height: 1.6;
    color: var(--text-color);
    background: url('background.png') center/cover fixed;
    min-height: 100vh;
    overflow-x: hidden;
}


/* Sidebar */
.sidebar {
    position: fixed;
    top: 0;
    left: 0;
    width: var(--sidebar-width);
    height: 100vh;
    background: rgba(255, 255, 255, 0.7);
    backdrop-filter: blur(10px);
    border-right: 1px solid var(--border-color);
    z-index: 999;
    display: flex;
    flex-direction: column;
    transform: translateX(-100%);
    transition: transform 0.6s cubic-bezier(0.4, 0, 0.2, 1);
}

.sidebar.active {
    transform: translateX(0);
}

.sidebar-header {
    padding: 2rem 1.5rem 1rem;
    border-bottom: 1px solid var(--border-color);
}

.logo {
    width: 220px;
    height: auto;
    display: block;
}

.nav-list {
    list-style: none;
    padding: 0;
    flex: 1;
    display: flex;
    flex-direction: column;
    align-items: stretch;
    justify-content: center;
}

.nav-list li {
    margin: 0;
    opacity: 0;
    transform: translateY(20px);
    transition: var(--transition);
    width: 100%;
}

.nav-list .nav-badge-item {
    margin-top: auto;
    margin-bottom: 1rem;
    display: flex;
    justify-content: center;
    align-items: center;
    align-self: center;
    width: auto;
}

.nav-link {
    display: flex;
    align-items: center;
    padding: 0.875rem 1.5rem;
    color: var(--text-color);
    text-decoration: none;
    transition: var(--transition);
    position: relative;
    width: 100%;
    box-sizing: border-box;
}

.nav-link:hover,
.nav-link:focus {
    color: var(--primary-color);
    background: rgba(255, 255, 255, 0.8);
    outline: none;
}

.nav-link.active {
    color: var(--primary-color);
    background: rgba(255, 255, 255, 0.8);
}

.nav-text {
    font-size: 0.95rem;
    font-weight: 500;
}

/* Main Content */
.main-content {
    margin-left: var(--sidebar-width);
    min-height: 100vh;
    padding: 0;
    transition: margin-left 0.6s cubic-bezier(0.4, 0, 0.2, 1);
}

.content-section {
    display: none;
    min-height: 100vh;
    padding: 3rem 2rem;
}

.content-section.active {
    display: block;
}

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

h1 {
    font-size: 3rem;
    font-weight: 700;
    margin-bottom: 1.5rem;
    color: var(--text-color);
}

h2 {
    font-size: 2.5rem;
    font-weight: 600;
    margin-bottom: 1.5rem;
    color: var(--text-color);
}

h3 {
    font-size: 1.5rem;
    font-weight: 600;
    margin-bottom: 1rem;
    color: var(--text-color);
}

p {
    font-size: 1.125rem;
    margin-bottom: 1.5rem;
    color: var(--secondary-color);
}

.cta-button {
    background: var(--primary-color);
    color: white;
    border: none;
    padding: 1rem 2rem;
    border-radius: 0.5rem;
    font-size: 1.125rem;
    font-weight: 600;
    cursor: pointer;
    transition: var(--transition);
    box-shadow: var(--shadow);
}

.cta-button:hover {
    background: #475569;
    transform: translateY(-2px);
    box-shadow: 0 10px 25px -5px rgba(0, 0, 0, 0.1);
}

/* Services Grid */
.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    margin-top: 2rem;
}

.service-card {
    background: rgba(255, 255, 255, 0.8);
    padding: 2rem;
    border-radius: 1rem;
    box-shadow: var(--shadow);
    transition: var(--transition);
}

.service-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 20px 25px -5px rgba(0, 0, 0, 0.1);
}

/* Contact Form */
.contact-form {
    max-width: 600px;
    margin-top: 2rem;
}

.contact-form input,
.contact-form textarea {
    width: 100%;
    padding: 1rem;
    margin-bottom: 1rem;
    border: 1px solid var(--border-color);
    border-radius: 0.5rem;
    font-family: var(--font-system);
    font-size: 1rem;
    background: rgba(255, 255, 255, 0.9);
    transition: var(--transition);
}

.contact-form input:focus,
.contact-form textarea:focus {
    outline: none;
    border-color: var(--primary-color);
    box-shadow: 0 0 0 3px rgba(100, 116, 139, 0.1);
}

.contact-form button {
    background: var(--primary-color);
    color: white;
    border: none;
    padding: 1rem 2rem;
    border-radius: 0.5rem;
    font-size: 1rem;
    font-weight: 600;
    cursor: pointer;
    transition: var(--transition);
}

.contact-form button:hover {
    background: #475569;
}

/* Banner */
.banner-container {
    position: relative;
    margin-top: 8vh;
    margin-left: calc(var(--sidebar-width) + (100vw - var(--sidebar-width)) / 2);
    transform: translateX(-50%);
    max-width: 510px;
    width: 76.5%;
    max-width: calc((100vw - var(--sidebar-width) - 4rem) * 0.85);
}

.banner-content {
    background: rgba(255, 255, 255, 0.7);
    backdrop-filter: blur(10px);
    border: 1px solid var(--border-color);
    padding: 1.5rem;
    text-align: center;
    box-shadow: var(--shadow);
}

.banner-title {
    font-family: 'Lucida Handwriting', 'Bradley Hand', 'Brush Script MT', cursive;
    font-size: 1.8rem;
    font-weight: 400;
    margin-bottom: 1rem;
    color: var(--text-color);
    line-height: 1.2;
}

.banner-description {
    font-size: 0.9rem;
    color: var(--secondary-color);
    margin-bottom: 2rem;
    line-height: 1.6;
    max-width: 70%;
    margin-left: auto;
    margin-right: auto;
}

.trust-badges {
    display: flex;
    justify-content: center;
    gap: 1rem;
    flex-wrap: wrap;
}

.trust-badge {
    border-bottom: 1px solid var(--border-color);
    padding: 0.5rem 1rem;
    flex: 1;
    min-width: 140px;
    max-width: 180px;
    white-space: nowrap;
}

.badge-text {
    font-size: 0.95rem;
    font-weight: 500;
    color: var(--secondary-color);
    white-space: nowrap;
}

/* Product Container */
.product-container {
    position: relative;
    margin-top: 2rem;
    margin-left: calc(var(--sidebar-width) + (100vw - var(--sidebar-width)) / 2);
    transform: translateX(-50%);
    max-width: 510px;
    width: 76.5%;
    max-width: calc((100vw - var(--sidebar-width) - 4rem) * 0.85);
    padding-bottom: 120px;
}

/* Product Grid */
.loading-indicator {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding: 3rem 2rem;
    text-align: center;
}

.loading-spinner {
    width: 40px;
    height: 40px;
    border: 4px solid var(--border-color);
    border-top: 4px solid var(--primary-color);
    border-radius: 50%;
    animation: spin 1s linear infinite;
    margin-bottom: 1rem;
}

@keyframes spin {
    0% { transform: rotate(0deg); }
    100% { transform: rotate(360deg); }
}

.product-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1.5rem;
    width: 100%;
    padding: 0;
}

.product-card {
    background: rgba(255, 255, 255, 0.9);
    border-radius: 1rem;
    overflow: hidden;
    box-shadow: var(--shadow);
    transition: var(--transition);
    cursor: pointer;
}

.product-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 20px 25px -5px rgba(0, 0, 0, 0.1);
}

.product-header {
    padding: 0.75rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
    border-bottom: 1px solid var(--border-color);
}

.product-name {
    font-size: 1.1rem;
    font-weight: 600;
    margin: 0;
}

.product-status {
    padding: 0.25rem 0.75rem;
    border-radius: 1rem;
    font-size: 0.75rem;
    font-weight: 500;
}

.status-available {
    background: #10b981;
    color: white;
}

.status-available::after {
    content: "Available";
}

.status-sold {
    background: #ef4444;
    color: white;
}

.status-sold::after {
    content: "Sold";
}

.image-carousel {
    position: relative;
    width: 100%;
    height: 180px;
    overflow: hidden;
}

.carousel-container {
    position: relative;
    width: 100%;
    height: 100%;
}

.carousel-image {
    width: 100%;
    height: 100%;
    object-fit: contain;
    transition: var(--transition);
}

.carousel-btn {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background: rgba(0, 0, 0, 0.7);
    color: white;
    border: none;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    cursor: pointer;
    font-size: 1.2rem;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: var(--transition);
    z-index: 2;
}

.carousel-btn:hover {
    background: rgba(0, 0, 0, 0.9);
}

.carousel-btn.prev {
    left: 10px;
}

.carousel-btn.next {
    right: 10px;
}

.product-description {
    padding: 0.75rem;
    font-size: 0.85rem;
    line-height: 1.4;
}

.description-label {
    font-weight: 600;
    color: var(--primary-color);
}

.buy-button {
    display: block;
    width: calc(100% - 1.5rem);
    margin: 0 0.75rem 0.75rem;
    padding: 0.5rem;
    background: var(--primary-color);
    color: white;
    text-decoration: none;
    text-align: center;
    border-radius: 0.5rem;
    font-weight: 600;
    font-size: 0.9rem;
    transition: var(--transition);
}

.buy-button:hover {
    background: #475569;
    transform: translateY(-2px);
}

/* Modal Styles */
.modal {
    display: none;
    position: fixed;
    z-index: 1000;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.8);
    opacity: 0;
    transition: opacity 0.3s ease;
}

.modal.show {
    opacity: 1;
}

.modal.hide {
    opacity: 0;
}

.modal-content {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    max-width: 90vw;
    max-height: 90vh;
    display: flex;
    align-items: center;
    justify-content: center;
}

.modal-content img {
    max-width: 100%;
    max-height: 85vh;
    object-fit: contain;
    border-radius: 0.5rem;
}

.modal .close {
    position: absolute;
    top: 15px;
    right: 35px;
    color: white;
    font-size: 40px;
    font-weight: bold;
    cursor: pointer;
    z-index: 1001;
    background: rgba(0, 0, 0, 0.5);
    width: 50px;
    height: 50px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: background 0.3s ease;
}

.modal .close:hover {
    background: rgba(0, 0, 0, 0.7);
}

.modal-nav-btn {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background: rgba(0, 0, 0, 0.7);
    color: white;
    border: none;
    width: 50px;
    height: 50px;
    border-radius: 50%;
    cursor: pointer;
    font-size: 1.5rem;
    z-index: 1001;
    transition: var(--transition);
}

.modal-nav-btn:hover {
    background: rgba(0, 0, 0, 0.9);
}

.modal-prev {
    left: 20px;
}

.modal-next {
    right: 20px;
}

/* Pinch Zoom Hint - Mobile Only */
.pinch-zoom-hint {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    background: rgba(0, 0, 0, 0.7);
    color: white;
    padding: 1rem 2rem;
    border-radius: 2rem;
    font-size: 1.1rem;
    font-weight: 500;
    z-index: 1002;
    opacity: 0;
    transition: opacity 0.5s ease;
    pointer-events: none;
    white-space: nowrap;
    display: none;
}

/* Show pinch zoom hint only on mobile */
@media (max-width: 768px) {
    .pinch-zoom-hint {
        display: block;
    }
}

/* Contact Modal - Complete Rewrite */
.contact-modal {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1000;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.contact-modal.show {
    opacity: 1;
}

.contact-modal.hide {
    opacity: 0;
}

.contact-modal-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.8);
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 2rem;
    box-sizing: border-box;
}

.contact-modal-container {
    background: white;
    border-radius: 0;
    max-width: 500px;
    width: 100%;
    max-height: 90vh;
    position: relative;
    overflow: hidden;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.2);
}

.contact-modal-close {
    position: absolute;
    top: 1rem;
    right: 1rem;
    background: none;
    border: none;
    font-size: 2rem;
    color: #666;
    cursor: pointer;
    z-index: 10;
    width: 3rem;
    height: 3rem;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    transition: all 0.3s ease;
}

.contact-modal-close:hover {
    background: #f5f5f5;
    color: #333;
}

.contact-modal-header {
    padding: 2rem 2rem 1rem;
    border-bottom: 1px solid #eee;
    text-align: center;
}

.contact-modal-title {
    font-size: 1.75rem;
    font-weight: 600;
    color: var(--text-color);
    margin: 0 0 0.5rem 0;
}

.contact-modal-subtitle {
    color: var(--secondary-color);
    margin: 0;
    font-size: 1rem;
}

.contact-modal-body {
    padding: 2rem;
    max-height: calc(90vh - 140px);
    overflow-y: auto;
}

.form-group {
    margin-bottom: 1rem;
}

.contact-form input,
.contact-form textarea {
    width: 100%;
    padding: 0.875rem;
    border: 1px solid var(--border-color);
    border-radius: 0.5rem;
    font-family: var(--font-system);
    font-size: 1rem;
    transition: var(--transition);
    box-sizing: border-box;
}

.contact-form input:focus,
.contact-form textarea:focus {
    outline: none;
    border-color: var(--primary-color);
    box-shadow: 0 0 0 3px rgba(100, 116, 139, 0.1);
}

.contact-submit-btn {
    width: 100%;
    padding: 0.875rem;
    background: var(--primary-color);
    color: white;
    border: none;
    border-radius: 0.5rem;
    font-size: 1rem;
    font-weight: 600;
    cursor: pointer;
    transition: var(--transition);
}

.contact-submit-btn:hover:not(:disabled) {
    background: #475569;
}

.contact-submit-btn:disabled {
    opacity: 0.7;
    cursor: not-allowed;
}

.contact-response {
    margin-top: 1rem;
    padding: 0.875rem;
    border-radius: 0.5rem;
    text-align: center;
    font-weight: 500;
}

.contact-response.success {
    background: #ecfdf5;
    color: #065f46;
    border: 1px solid #10b981;
}

.contact-response.error {
    background: #fef2f2;
    color: #dc2626;
    border: 1px solid #ef4444;
}

/* About Modal - Complete Rewrite */
.about-modal {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1000;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.about-modal.show {
    opacity: 1;
}

.about-modal.hide {
    opacity: 0;
}

.about-modal-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.8);
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 2rem;
    box-sizing: border-box;
}

.about-modal-container {
    background: white;
    border-radius: 0;
    max-width: 700px;
    width: 100%;
    max-height: 90vh;
    position: relative;
    overflow: hidden;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.2);
}

.about-modal-close {
    position: absolute;
    top: 1rem;
    right: 1rem;
    background: none;
    border: none;
    font-size: 2rem;
    color: #666;
    cursor: pointer;
    z-index: 10;
    width: 3rem;
    height: 3rem;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    transition: all 0.3s ease;
}

.about-modal-close:hover {
    background: #f5f5f5;
    color: #333;
}

.about-modal-header {
    padding: 2rem 2rem 1rem;
    border-bottom: 1px solid #eee;
}

.about-modal-title {
    font-size: 1.75rem;
    font-weight: 600;
    text-align: center;
    color: var(--text-color);
    margin: 0;
}

.about-modal-body {
    padding: 2rem;
    max-height: calc(90vh - 120px);
    overflow-y: auto;
    color: var(--secondary-color);
    line-height: 1.7;
}

.about-modal-body p {
    margin-bottom: 1.5rem;
    font-size: 1rem;
}

.about-modal-body p:last-child {
    margin-bottom: 0;
}

.about-modal-body strong {
    color: var(--text-color);
    font-weight: 600;
}

/* Footer */
.footer {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background: rgba(255, 255, 255, 0.7);
    backdrop-filter: blur(10px);
    border-top: 1px solid var(--border-color);
    z-index: 998;
    padding: 0.5rem 0;
    transform: translateY(100%);
    transition: transform 0.6s cubic-bezier(0.4, 0, 0.2, 1);
}

.footer.active {
    transform: translateY(0);
}

.footer-content {
    margin-left: var(--sidebar-width);
    width: calc(100vw - var(--sidebar-width));
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.5rem;
}

.footer-main-row {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 2rem;
    width: 100%;
    padding: 0 2rem;
    position: relative;
}

.footer-badges-group {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    justify-content: flex-end;
    position: absolute;
    right: 2rem;
}

.footer-center {
    display: flex;
    justify-content: center;
    align-items: center;
}

.footer-nav {
    list-style: none;
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 1rem;
    margin: 0;
    padding: 0;
}

.trust-badge-img {
    height: 24px;
    width: auto;
    opacity: 0.8;
    transition: opacity 0.3s ease;
}

.trust-badge-bottom {
    height: 60px;
    width: auto;
    opacity: 0.8;
    transition: opacity 0.3s ease;
}

.trust-badge-img:hover,
.trust-badge-bottom:hover {
    opacity: 1;
}

.footer-nav li {
    margin: 0;
}

.footer-link {
    display: flex;
    align-items: center;
    padding: 0.25rem 0.5rem;
    color: var(--text-color);
    text-decoration: none;
    transition: var(--transition);
    border-bottom: 1px solid transparent;
    position: relative;
}

.footer-link:hover,
.footer-link:focus {
    color: var(--primary-color);
    border-bottom-color: var(--primary-color);
    outline: none;
}

.footer-text {
    font-size: 0.7rem;
    font-weight: 400;
    white-space: nowrap;
}

/* Adjust main content to account for footer */
.main-content {
    margin-left: var(--sidebar-width);
    min-height: 100vh;
    padding: 0 0 80px 0;
    transition: margin-left 0.6s cubic-bezier(0.4, 0, 0.2, 1);
}

/* Animation keyframes */
@keyframes slideInFromLeft {
    from {
        transform: translateX(-100%);
    }
    to {
        transform: translateX(0);
    }
}

@keyframes slideInFromTop {
    from {
        transform: translateY(-100%);
    }
    to {
        transform: translateY(0);
    }
}

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

.footer-mobile-badges {
    display: none;
}

.footer-mobile-badge-row {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 0.5rem;
    margin: 0.1rem 0;
}

.trust-badge-mobile {
    height: 24px;
    width: auto;
    opacity: 0.8;
    transition: opacity 0.3s ease;
}

.trust-badge-mobile:hover {
    opacity: 1;
}

.trust-badge-large {
    height: 50px !important;
}

/* Responsive Design */
@media (max-width: 1024px) {
    :root {
        --sidebar-width: 260px;
    }
    
    h1 {
        font-size: 2.5rem;
    }
    
    h2 {
        font-size: 2rem;
    }
}

@media (max-width: 768px) {
    .sidebar {
        width: 100%;
        height: auto;
        position: fixed;
        top: 0;
        left: 0;
        transform: translateY(-100%);
        transition: transform 0.6s cubic-bezier(0.4, 0, 0.2, 1);
        display: flex;
        flex-direction: row;
        background: rgba(255, 255, 255, 0.7);
        backdrop-filter: blur(10px);
        border-right: none;
        border-bottom: 1px solid var(--border-color);
        padding: 0.75rem 0;
        z-index: 1000;
        align-items: center;
        justify-content: space-between;
    }
    
    .sidebar.active {
        transform: translateY(0);
    }
    
    .sidebar-header {
        padding: 0 1rem;
        border-bottom: none;
        border-right: 1px solid var(--border-color);
        display: flex;
        align-items: center;
        flex-shrink: 0;
        width: auto;
    }
    
    .logo {
        width: 100px;
        height: auto;
    }
    
    .nav-list {
        display: flex;
        flex-direction: row;
        padding: 0 0.5rem;
        flex: 1;
        justify-content: space-evenly;
        align-items: center;
        gap: 0;
        overflow: visible;
        width: 100%;
        height: auto;
    }
    
    .nav-list li {
        margin: 0;
        flex: 1;
        opacity: 0;
        transform: translateY(20px);
        transition: all 0.3s ease;
        display: flex;
        justify-content: center;
    }
    
    .nav-link {
        padding: 0.5rem 0.25rem;
        border-left: none;
        border-bottom: 3px solid transparent;
        font-size: 0.75rem;
        white-space: nowrap;
        width: 100%;
        display: block;
        text-align: center;
        box-sizing: border-box;
    }
    
    .nav-link:hover,
    .nav-link:focus,
    .nav-link.active {
        border-left: none;
        border-bottom-color: var(--primary-color);
    }
    
    .banner-container {
        position: relative;
        top: auto;
        left: auto;
        transform: none;
        max-width: 90%;
        width: 90%;
        margin: 6rem auto 2rem;
        z-index: 1;
    }
    
    .banner-content {
        padding: 1.5rem;
    }
    
    .banner-title {
        font-size: 1.1rem;
        white-space: nowrap;
    }
    
    .banner-description {
        font-size: 0.85rem;
        margin-bottom: 1.5rem;
    }
    
    .trust-badges {
        flex-direction: row;
        gap: 0.25rem;
        flex-wrap: nowrap;
    }
    
    .trust-badge {
        max-width: none;
        min-width: auto;
        flex: 1;
        padding: 0.3rem 0.15rem;
    }
    
    .trust-badge .badge-text {
        font-size: 0.7rem;
    }
    
    .footer-content {
        margin-left: 0;
        transform: none;
        width: 100%;
        max-width: 100%;
        flex-direction: column;
        gap: 0.25rem;
        padding: 0;
    }
    
    .footer-main-row {
        justify-content: center;
        gap: 1rem;
        padding: 0;
        position: static;
        width: 100%;
    }
    
    .footer-center {
        justify-content: center;
        width: 100%;
    }
    
    .footer-nav {
        width: 100%;
        justify-content: center;
    }
    
    .footer-badges-group {
        display: none;
    }
    
    .footer-mobile-badges {
        display: flex;
        flex-direction: column;
        align-items: center;
        gap: 0.5rem;
    }
    
    .trust-badge-img {
        height: 20px;
    }
    
    .trust-badge-bottom {
        height: 32px;
    }
    
    .nav-badge-item {
        display: none !important;
    }
    
    .nav-list li:not(.nav-badge-item) {
        display: flex !important;
    }
    
    .product-container {
        position: relative;
        top: auto;
        left: auto;
        transform: none;
        max-width: 90%;
        width: 90%;
        margin: 2rem auto 0;
        padding-bottom: 100px;
    }

    .product-grid {
        grid-template-columns: 1fr;
    }

    .main-content {
        margin-left: 0;
        margin-top: 0;
        padding: 0;
    }
    
    /* Mobile Footer - Static */
    .footer {
        position: static;
        transform: none;
        margin-top: 2rem;
    }
    
    .footer.active {
        transform: none;
    }
    
    .footer-nav {
        gap: 0.75rem;
    }
    
    .footer-link {
        padding: 0.25rem 0.5rem;
    }
    
    .footer-text {
        font-size: 1rem;
    }
    
    .content-section {
        padding: 2rem 1rem;
    }
    
    h1 {
        font-size: 2rem;
    }
    
    h2 {
        font-size: 1.75rem;
    }
    
    .services-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
    
    .service-card {
        padding: 1.5rem;
    }
    
    .container {
        padding: 0;
    }
    
    /* Mobile Image Modal */
    #image-modal .modal-content {
        position: absolute;
        top: 50%;
        left: 50%;
        transform: translate(-50%, -50%);
        max-width: 95vw;
        max-height: 95vh;
        display: flex;
        align-items: center;
        justify-content: center;
    }
    
    /* Mobile Contact and About Modals - No longer needed with new structure */
    
    .about-modal-overlay {
        padding: 1rem;
    }
    
    .about-modal-close {
        top: 0.5rem;
        right: 0.5rem;
        width: 2.5rem;
        height: 2.5rem;
        font-size: 1.5rem;
    }
    
    .about-modal-header {
        padding: 1.5rem 1rem 1rem;
    }
    
    .about-modal-body {
        padding: 1rem;
    }
    
    .contact-modal-overlay {
        padding: 1rem;
    }
    
    .contact-modal-close {
        top: 0.5rem;
        right: 0.5rem;
        width: 2.5rem;
        height: 2.5rem;
        font-size: 1.5rem;
    }
    
    .contact-modal-header {
        padding: 1.5rem 1rem 1rem;
    }
    
    .contact-modal-body {
        padding: 1rem;
    }
    
    .modal-content img {
        max-width: 90vw;
        max-height: 90vh;
        object-fit: contain;
        touch-action: pinch-zoom;
        user-select: none;
        transform-origin: center center;
        transition: transform 0.3s ease;
        will-change: transform, opacity;
    }
    
    #modal-image {
        transform: scale(0.1);
        opacity: 0;
    }
}

@media (max-width: 480px) {
    .banner-content {
        padding: 1.5rem;
    }
    
    .banner-title {
        font-size: 1.3rem;
        line-height: 1.3;
    }
    
    .banner-description {
        font-size: 0.8rem;
        margin-bottom: 1.25rem;
    }
    
    .badge-text {
        font-size: 0.7rem;
    }
    
    .sidebar-header {
        padding: 0 1rem;
    }
    
    .logo {
        width: 100px;
    }
    
    .nav-link {
        padding: 0.75rem 0.25rem;
        font-size: 0.75rem;
    }
    
    .nav-text {
        font-size: 0.75rem;
    }
    
    .footer-content {
        padding: 0 0.5rem;
        width: 100%;
        max-width: 95%;
    }
    
    .footer-main-row {
        justify-content: space-between;
        gap: 0.5rem;
        padding: 0 0.5rem;
    }
    
    .footer-center {
        justify-content: flex-start;
    }
    
    .footer-badges-group {
        gap: 0.3rem;
        justify-content: flex-end;
    }
    
    .trust-badge-img {
        height: 16px;
    }
    
    .trust-badge-bottom {
        height: 28px;
    }
    
    .footer-nav {
        gap: 0.5rem;
    }
    
    .footer-link {
        padding: 0.2rem 0.3rem;
    }
    
    .footer-text {
        font-size: 0.9rem;
    }
    
    .content-section {
        padding: 1.5rem 0.75rem;
    }
    
    h1 {
        font-size: 1.75rem;
    }
    
    h2 {
        font-size: 1.5rem;
    }
    
    p {
        font-size: 1rem;
    }
    
    .cta-button {
        padding: 0.875rem 1.5rem;
        font-size: 1rem;
    }
}