/* ========= CSS CODES OF GIFTGLOW STITCHES =========
============ DEVELOPED BY AHMAD CODER ============

/* ========== RESET & BASE STYLES ========== */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    line-height: 1.6;
    color: #333;
    overflow-x: hidden;
    background: #f5f5f5;
}

/* ========== CUSTOM PROPERTIES ========== */
:root {
    --primary-color: #d4af37; /* Gold - for the "GLOW" effect */
    --secondary-color: #2c2c2c;
    --accent-color: #f8f0e5;
    --text-light: #fff;
    --text-dark: #333;
    --whatsapp-color: #25D366;
    --transition: all 0.3s ease;
}

/* ========== NAVIGATION ========== */
.navbar {
    position: fixed;
    top: 0;
    width: 100%;
    background: rgba(255, 255, 255, 0.95);
    padding: 1rem 5%;
    display: flex;
    justify-content: space-between;
    align-items: center;
    z-index: 1000;
    box-shadow: 0 2px 10px rgba(0,0,0,0.1);
    backdrop-filter: blur(10px);
}

.logo {
    font-size: 1.8rem;
    font-weight: 700;
    color: var(--secondary-color);
    text-decoration: none;
}

.logo span {
    color: var(--primary-color);
    font-style: italic;
}

.nav-links {
    display: flex;
    list-style: none;
    gap: 2rem;
}

.nav-links a {
    text-decoration: none;
    color: var(--text-dark);
    font-weight: 500;
    transition: var(--transition);
    position: relative;
}

.nav-links a:hover {
    color: var(--primary-color);
}

.nav-links a::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--primary-color);
    transition: var(--transition);
}

.nav-links a:hover::after {
    width: 100%;
}

.hamburger {
    display: none;
    flex-direction: column;
    cursor: pointer;
}

.hamburger span {
    width: 25px;
    height: 3px;
    background: var(--secondary-color);
    margin: 3px 0;
    transition: var(--transition);
}

/* ========== PAGE HEADER ========== */
.page-header {
    margin-top: 80px;
    padding: 2rem;
    text-align: center;
    background: white;
}

.page-header h1 {
    font-size: 2.5rem;
    color: var(--secondary-color);
    margin-bottom: 1rem;
}

.page-header h1 span {
    color: var(--primary-color);
}

.page-header p {
    max-width: 800px;
    margin: 0 auto;
    color: #666;
}

/* ========== HERO SECTION ========== */
.hero {
    height: 100vh;
    background: linear-gradient(rgba(0,0,0,0.4), rgba(0,0,0,0.4)),
                url('https://images.unsplash.com/photo-1469334031218-e382a71b716b?ixlib=rb-1.2.1&auto=format&fit=crop&w=1950&q=80');
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    color: var(--text-light);
    padding: 0 1rem;
}

.hero-content {
    max-width: 800px;
    animation: fadeInUp 1.5s ease;
}

.hero-content h1 {
    font-size: 4rem;
    margin-bottom: 1rem;
    text-shadow: 2px 2px 4px rgba(0,0,0,0.3);
}

.hero-content h1 span {
    color: var(--primary-color);
    display: block;
    font-size: 2.5rem;
    margin-top: 0.5rem;
}

.hero-content p {
    font-size: 1.2rem;
    margin-bottom: 2rem;
    text-shadow: 1px 1px 2px rgba(0,0,0,0.3);
}

.button-group {
    display: flex;
    gap: 1rem;
    justify-content: center;
    flex-wrap: wrap;
}

.cta-button {
    display: inline-block;
    padding: 1rem 2.5rem;
    background: var(--primary-color);
    color: var(--text-dark);
    text-decoration: none;
    border-radius: 50px;
    font-weight: 600;
    transition: var(--transition);
    border: 2px solid transparent;
    margin: 0 0.5rem;
}

.cta-button:hover {
    background: transparent;
    color: var(--text-light);
    border-color: var(--primary-color);
    transform: translateY(-3px);
    box-shadow: 0 5px 20px rgba(212, 175, 55, 0.3);
}

.cta-button.secondary {
    background: transparent;
    border: 2px solid var(--primary-color);
    color: var(--text-light);
}

.cta-button.secondary:hover {
    background: var(--primary-color);
    color: var(--text-dark);
}

.cta-button.whatsapp-btn {
    background: var(--whatsapp-color);
    border-color: var(--whatsapp-color);
    color: white;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.cta-button.whatsapp-btn i {
    font-size: 1.2rem;
}

.cta-button.whatsapp-btn:hover {
    background: #128C7E;
    border-color: #128C7E;
    color: white;
    transform: translateY(-3px);
}

/* ========== ABOUT SECTION ========== */
.about {
    padding: 5rem 10%;
    background: linear-gradient(135deg, #fff 0%, var(--accent-color) 100%);
}

.section-title {
    text-align: center;
    font-size: 2.5rem;
    margin-bottom: 3rem;
    position: relative;
}

.section-title::after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 50%;
    transform: translateX(-50%);
    width: 80px;
    height: 3px;
    background: var(--primary-color);
}

.about-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
}

.about-text {
    animation: slideInLeft 1s ease;
}

.about-text h3 {
    font-size: 2rem;
    margin-bottom: 1.5rem;
    color: var(--secondary-color);
}

.about-text p {
    margin-bottom: 1rem;
    font-size: 1.1rem;
    color: #666;
}

.about-image {
    animation: slideInRight 1s ease;
}

.about-image img {
    width: 100%;
    border-radius: 10px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
    transition: var(--transition);
}

.about-image img:hover {
    transform: scale(1.02);
    box-shadow: 0 15px 40px rgba(212, 175, 55, 0.2);
}

/* ========== COLLECTIONS SECTION ========== */
.collections {
    padding: 5rem 10%;
    background: #fff;
}

.collection-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    margin-top: 3rem;
}

.collection-card {
    position: relative;
    overflow: hidden;
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
    transition: var(--transition);
    cursor: pointer;
}

.collection-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 30px rgba(212, 175, 55, 0.3);
}

.collection-card img {
    width: 100%;
    height: 400px;
    object-fit: cover;
    transition: var(--transition);
}

.collection-card:hover img {
    transform: scale(1.1);
}

.card-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    background: linear-gradient(transparent, rgba(0,0,0,0.8));
    color: var(--text-light);
    padding: 2rem 1rem 1rem;
    transform: translateY(100%);
    transition: var(--transition);
}

.collection-card:hover .card-overlay {
    transform: translateY(0);
}

.card-overlay h3 {
    font-size: 1.5rem;
    margin-bottom: 0.5rem;
}

.card-overlay p {
    font-size: 0.9rem;
    opacity: 0.9;
}

/* ========== SERVICES SECTION ========== */
.services {
    padding: 5rem 10%;
    background: var(--secondary-color);
    color: var(--text-light);
}

.services .section-title {
    color: var(--text-light);
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
}

.service-card {
    text-align: center;
    padding: 2rem;
    background: rgba(255,255,255,0.1);
    border-radius: 10px;
    transition: var(--transition);
    backdrop-filter: blur(5px);
}

.service-card:hover {
    transform: translateY(-5px);
    background: rgba(212, 175, 55, 0.2);
}

.service-icon {
    font-size: 3rem;
    margin-bottom: 1rem;
    color: var(--primary-color);
}

.service-card h3 {
    margin-bottom: 1rem;
    font-size: 1.3rem;
}

.service-card p {
    opacity: 0.9;
    font-size: 0.95rem;
}

/* ========== GALLERY PREVIEW SECTION ========== */
.gallery-preview {
    padding: 5rem 10%;
    background: var(--accent-color);
}

.preview-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 1rem;
    margin: 3rem 0;
}

.preview-item {
    position: relative;
    overflow: hidden;
    border-radius: 10px;
    aspect-ratio: 1;
    cursor: pointer;
}

.preview-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: var(--transition);
}

.preview-item:hover img {
    transform: scale(1.1);
}

.preview-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(212, 175, 55, 0.8);
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: var(--transition);
}

.preview-item:hover .preview-overlay {
    opacity: 1;
}

.preview-overlay span {
    color: var(--text-light);
    font-size: 1.2rem;
    font-weight: 600;
    transform: translateY(20px);
    transition: var(--transition);
}

.preview-item:hover .preview-overlay span {
    transform: translateY(0);
}

.view-all-container {
    text-align: center;
    margin-top: 3rem;
}

.view-all-btn {
    display: inline-block;
    padding: 1rem 3rem;
    background: var(--primary-color);
    color: var(--secondary-color);
    text-decoration: none;
    border-radius: 50px;
    font-weight: 600;
    font-size: 1.1rem;
    transition: var(--transition);
    border: 2px solid var(--primary-color);
}

.view-all-btn:hover {
    background: transparent;
    color: var(--secondary-color);
    transform: translateY(-3px);
    box-shadow: 0 5px 20px rgba(212, 175, 55, 0.3);
}

/* ========== MAIN GALLERY ========== */
.gallery {
    padding: 2rem;
    max-width: 1400px;
    margin: 0 auto;
}

.grid {
    column-count: 4;
    column-gap: 1rem;
}

.grid-item {
    break-inside: avoid;
    margin-bottom: 1rem;
    position: relative;
    overflow: hidden;
    border-radius: 8px;
    cursor: pointer;
    transition: all 0.3s ease;
}

.grid-item:hover {
    transform: scale(1.02);
    box-shadow: 0 10px 20px rgba(212, 175, 55, 0.2);
}

.grid-item img {
    width: 100%;
    height: auto;
    display: block;
    border-radius: 8px;
}

/* ========== LIGHTBOX ========== */
.lightbox {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0,0,0,0.95);
    z-index: 2000;
    justify-content: center;
    align-items: center;
}

.lightbox.active {
    display: flex;
}

.lightbox img {
    max-width: 90%;
    max-height: 90vh;
    object-fit: contain;
}

.close {
    position: absolute;
    top: 20px;
    right: 30px;
    color: white;
    font-size: 40px;
    cursor: pointer;
    font-weight: 300;
    transition: color 0.3s ease;
    z-index: 2001;
}

.close:hover {
    color: var(--primary-color);
}

.arrow {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    color: white;
    font-size: 50px;
    cursor: pointer;
    padding: 20px;
    font-weight: 300;
    transition: color 0.3s ease;
    z-index: 2001;
}

.arrow:hover {
    color: var(--primary-color);
}

.arrow-left {
    left: 20px;
}

.arrow-right {
    right: 20px;
}

/* ========== CONTACT SECTION ========== */
.contact {
    padding: 5rem 10%;
    background: #fff;
}

.contact-container {
    display: grid;
    grid-template-columns: 1fr 2fr;
    gap: 4rem;
    margin-top: 3rem;
}

.contact-info {
    background: var(--secondary-color);
    color: var(--text-light);
    padding: 2rem;
    border-radius: 10px;
}

.contact-info h3 {
    font-size: 1.8rem;
    margin-bottom: 2rem;
    color: var(--primary-color);
}

.info-item {
    display: flex;
    align-items: center;
    margin-bottom: 1.5rem;
}

.info-icon {
    width: 40px;
    height: 40px;
    background: var(--primary-color);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-right: 1rem;
    color: var(--secondary-color);
    font-weight: bold;
}

.info-text {
    font-size: 1rem;
}

.social-links {
    display: flex;
    gap: 1rem;
    margin-top: 2rem;
}

.social-link {
    width: 40px;
    height: 40px;
    background: rgba(255,255,255,0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--text-light);
    text-decoration: none;
    transition: var(--transition);
    font-size: 1.2rem;
}

.social-link:hover {
    background: var(--primary-color);
    color: var(--secondary-color);
    transform: translateY(-3px);
}

.whatsapp-contact {
    margin-top: 2rem;
    padding-top: 1.5rem;
    border-top: 1px solid rgba(255,255,255,0.2);
}

.whatsapp-contact a {
    display: flex;
    align-items: center;
    gap: 1rem;
    color: var(--whatsapp-color);
    text-decoration: none;
    font-size: 1.1rem;
    transition: var(--transition);
    background: rgba(255,255,255,0.05);
    padding: 0.8rem 1rem;
    border-radius: 50px;
}

.whatsapp-contact a:hover {
    background: var(--whatsapp-color);
    color: white;
    transform: translateX(5px);
}

.whatsapp-contact i {
    font-size: 1.8rem;
}

/* ========== WHATSAPP FORM ========== */
.whatsapp-form {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.whatsapp-form h3 {
    margin-bottom: 0.5rem;
    color: var(--secondary-color);
}

.whatsapp-form p {
    margin-bottom: 1rem;
    color: #666;
    font-size: 0.95rem;
}

.form-group {
    display: flex;
    flex-direction: column;
}

.form-group input,
.form-group select,
.form-group textarea {
    padding: 1rem;
    border: 2px solid #e0e0e0;
    border-radius: 5px;
    font-size: 1rem;
    transition: var(--transition);
    font-family: inherit;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--primary-color);
    box-shadow: 0 0 10px rgba(212, 175, 55, 0.2);
}

.form-group select {
    cursor: pointer;
    background: white;
}

.form-group textarea {
    min-height: 150px;
    resize: vertical;
}

.whatsapp-submit-btn {
    background: var(--whatsapp-color);
    color: white;
    border: none;
    border-radius: 5px;
    font-size: 1.1rem;
    font-weight: 600;
    cursor: pointer;
    transition: var(--transition);
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    width: 100%;
    padding: 1rem;
    margin-top: 0.5rem;
}

.whatsapp-submit-btn i {
    font-size: 1.3rem;
}

.whatsapp-submit-btn:hover {
    background: #128C7E;
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(37, 211, 102, 0.3);
}

/* ========== FLOATING WHATSAPP BUTTON ========== */
.whatsapp-float {
    position: fixed;
    bottom: 30px;
    right: 30px;
    z-index: 999;
    display: flex;
    flex-direction: column;
    align-items: flex-end;
}

.whatsapp-button {
    background-color: var(--whatsapp-color);
    color: white;
    width: 70px;
    height: 70px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2.5rem;
    cursor: pointer;
    box-shadow: 0 4px 15px rgba(37, 211, 102, 0.4);
    transition: var(--transition);
    border: 3px solid white;
    animation: pulse 2s infinite;
    text-decoration: none;
}

.whatsapp-button i {
    font-size: 2.8rem;
    line-height: 1;
}

.whatsapp-button:hover {
    transform: scale(1.1) rotate(5deg);
    box-shadow: 0 6px 20px rgba(37, 211, 102, 0.6);
    background-color: #128C7E;
}

.whatsapp-tooltip {
    background: var(--secondary-color);
    color: white;
    padding: 0.8rem 1.5rem;
    border-radius: 30px;
    font-size: 1rem;
    margin-bottom: 15px;
    position: relative;
    opacity: 0;
    transform: translateY(10px);
    transition: var(--transition);
    pointer-events: none;
    white-space: nowrap;
    box-shadow: 0 2px 10px rgba(0,0,0,0.2);
    font-weight: 500;
}

.whatsapp-tooltip i {
    color: var(--whatsapp-color);
    margin-right: 5px;
}

.whatsapp-tooltip::after {
    content: '';
    position: absolute;
    bottom: -10px;
    right: 30px;
    border-width: 10px 10px 0;
    border-style: solid;
    border-color: var(--secondary-color) transparent transparent;
}

.whatsapp-float:hover .whatsapp-tooltip {
    opacity: 1;
    transform: translateY(0);
}

/* ========== WHATSAPP CHAT PANEL ========== */
.whatsapp-panel {
    position: fixed;
    bottom: 120px;
    right: 30px;
    width: 380px;
    background: white;
    border-radius: 20px;
    box-shadow: 0 15px 40px rgba(0,0,0,0.2);
    z-index: 998;
    display: none;
    overflow: hidden;
    animation: slideIn 0.3s ease;
    border: 1px solid rgba(37, 211, 102, 0.2);
}

.whatsapp-panel.active {
    display: block;
}

.panel-header {
    background: var(--whatsapp-color);
    color: white;
    padding: 1.2rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.panel-header h3 {
    font-size: 1.2rem;
    display: flex;
    align-items: center;
    gap: 0.8rem;
}

.panel-header i {
    font-size: 1.5rem;
}

.close-panel {
    background: none;
    border: none;
    color: white;
    font-size: 1.8rem;
    cursor: pointer;
    transition: var(--transition);
    line-height: 1;
}

.close-panel:hover {
    transform: scale(1.2);
}

.panel-body {
    padding: 1.5rem;
}

.quick-replies {
    display: flex;
    flex-direction: column;
    gap: 0.8rem;
    margin-bottom: 1.5rem;
}

.quick-reply-btn {
    background: var(--accent-color);
    border: 2px solid transparent;
    padding: 1rem 1.2rem;
    border-radius: 12px;
    text-align: left;
    cursor: pointer;
    transition: var(--transition);
    font-size: 0.95rem;
    color: var(--secondary-color);
    font-weight: 500;
    display: flex;
    align-items: center;
    gap: 0.8rem;
}

.quick-reply-btn:hover {
    border-color: var(--whatsapp-color);
    background: white;
    transform: translateX(5px);
    box-shadow: 0 2px 8px rgba(37, 211, 102, 0.2);
}

.quick-reply-btn i {
    color: var(--whatsapp-color);
    font-size: 1.2rem;
    width: 24px;
}

.custom-message {
    margin-top: 1rem;
}

.custom-message textarea {
    width: 100%;
    padding: 1rem;
    border: 2px solid #e0e0e0;
    border-radius: 12px;
    resize: none;
    height: 100px;
    font-family: inherit;
    transition: var(--transition);
    font-size: 0.95rem;
}

.custom-message textarea:focus {
    outline: none;
    border-color: var(--whatsapp-color);
    box-shadow: 0 0 0 3px rgba(37, 211, 102, 0.1);
}

.open-whatsapp-btn {
    width: 100%;
    padding: 1rem;
    background: var(--whatsapp-color);
    color: white;
    border: none;
    border-radius: 12px;
    font-size: 1rem;
    font-weight: 600;
    cursor: pointer;
    transition: var(--transition);
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.8rem;
    margin-top: 1.2rem;
}

.open-whatsapp-btn i {
    font-size: 1.3rem;
}

.open-whatsapp-btn:hover {
    background: #128C7E;
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(37, 211, 102, 0.3);
}

/* ========== NOTIFICATION ========== */
.notification {
    position: fixed;
    top: 20px;
    right: 20px;
    background: var(--whatsapp-color);
    color: white;
    padding: 1rem 2rem;
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.2);
    z-index: 2000;
    animation: slideIn 0.3s ease;
    display: none;
}

.notification.show {
    display: block;
}

/* ========== FOOTER ========== */
.footer {
    text-align: center;
    padding: 2rem;
    background: var(--secondary-color);
    color: var(--text-light);
    border-top: 3px solid var(--primary-color);
}

.footer p {
    margin: 0.5rem 0;
}

.footer .highlight {
    color: var(--primary-color);
    font-weight: bold;
}

.footer a {
    color: var(--primary-color);
    text-decoration: none;
}

/* ========== UTILITY CLASSES ========== */
.sr-only {
    position: absolute;
    width: 1px;
    height: 1px;
    padding: 0;
    margin: -1px;
    overflow: hidden;
    clip: rect(0, 0, 0, 0);
    border: 0;
}

/* ========== ANIMATIONS ========== */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes slideInLeft {
    from {
        opacity: 0;
        transform: translateX(-50px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

@keyframes slideInRight {
    from {
        opacity: 0;
        transform: translateX(50px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

@keyframes pulse {
    0% {
        box-shadow: 0 0 0 0 rgba(37, 211, 102, 0.7);
    }
    70% {
        box-shadow: 0 0 0 20px rgba(37, 211, 102, 0);
    }
    100% {
        box-shadow: 0 0 0 0 rgba(37, 211, 102, 0);
    }
}

@keyframes slideIn {
    from {
        opacity: 0;
        transform: translateY(20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* ========== RESPONSIVE DESIGN ========== */
@media screen and (max-width: 1200px) {
    .grid {
        column-count: 3;
    }
}

@media screen and (max-width: 968px) {
    .hamburger {
        display: flex;
    }

    .nav-links {
        position: absolute;
        top: 100%;
        left: 0;
        right: 0;
        background: rgba(255, 255, 255, 0.95);
        flex-direction: column;
        align-items: center;
        padding: 2rem;
        gap: 1.5rem;
        transform: translateY(-150%);
        opacity: 0;
        transition: var(--transition);
        backdrop-filter: blur(10px);
        box-shadow: 0 5px 10px rgba(0,0,0,0.1);
    }

    .nav-links.active {
        transform: translateY(0);
        opacity: 1;
    }

    .hero-content h1 {
        font-size: 2.5rem;
    }

    .hero-content h1 span {
        font-size: 1.8rem;
    }

    .about-content {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

    .contact-container {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

    .about-text {
        order: 2;
    }

    .about-image {
        order: 1;
    }

    .button-group {
        flex-direction: column;
        align-items: center;
    }

    .cta-button {
        width: 100%;
        max-width: 300px;
        text-align: center;
    }

    .whatsapp-panel {
        width: 340px;
        right: 15px;
        bottom: 100px;
    }
    
    .whatsapp-button {
        width: 60px;
        height: 60px;
        font-size: 2rem;
    }
    
    .grid {
        column-count: 2;
    }
}

@media screen and (max-width: 600px) {
    .navbar {
        padding: 1rem;
    }
    
    .page-header h1 {
        font-size: 2rem;
    }
    
    .grid {
        column-count: 1;
    }
}

@media screen and (max-width: 480px) {
    .hero-content h1 {
        font-size: 2rem;
    }

    .hero-content h1 span {
        font-size: 1.5rem;
    }

    .section-title {
        font-size: 2rem;
    }

    .collection-grid {
        grid-template-columns: 1fr;
    }

    .services-grid {
        grid-template-columns: 1fr;
    }

    .preview-grid {
        grid-template-columns: 1fr;
    }

    .whatsapp-float {
        bottom: 15px;
        right: 15px;
    }

    .whatsapp-button {
        width: 55px;
        height: 55px;
        font-size: 1.8rem;
    }

    .whatsapp-panel {
        width: 300px;
        bottom: 80px;
        right: 10px;
    }
    
    .whatsapp-tooltip {
        font-size: 0.9rem;
        padding: 0.6rem 1.2rem;
        white-space: normal;
        width: 200px;
        text-align: center;
    }
    
    .arrow {
        font-size: 30px;
    }
}