
:root {
    --bg-color: #FFF0F5;
    --card-bg: #FFFFFF;
    --text-main: #333333;
    --text-muted: #666666;
    --brand-color: #d17a94; 
    --whatsapp-btn: #47c756; 
    --whatsapp-hover: #3ca949;
    --shadow-light: 0 8px 24px rgba(0, 0, 0, 0.06);
    --shadow-hover: 0 12px 32px rgba(209, 122, 148, 0.15);
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Poppins', sans-serif;
    background-color: var(--bg-color);
    color: var(--text-main);
    line-height: 1.6;
    scroll-behavior: smooth;
    -webkit-font-smoothing: antialiased;
    width: 100%;
    overflow-x: hidden;
}

h1, h2, h3, .brand-name {
    font-family: 'Dancing Script', cursive;
}

.navbar {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1rem 5%;
    background-color: rgba(255, 255, 255, 0.9);
    backdrop-filter: blur(10px);
    position: sticky;
    top: 0;
    z-index: 1000;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.03);
}

.brand-name {
    font-size: 2.2rem;
    color: var(--brand-color);
    text-decoration: none;
    font-weight: 700;
}

.hamburger {
    display: none;
    flex-direction: column;
    cursor: pointer;
    gap: 5px;
}

.hamburger span {
    width: 25px;
    height: 3px;
    background-color: var(--brand-color);
    border-radius: 2px;
    transition: 0.3s;
}


.hamburger.open span:nth-child(1) {
    transform: rotate(45deg) translate(5px, 6px);
}
.hamburger.open span:nth-child(2) {
    opacity: 0;
}
.hamburger.open span:nth-child(3) {
    transform: rotate(-45deg) translate(5px, -6px);
}

.nav-links {
    list-style: none;
    display: flex;
    gap: 2rem;
}

.nav-links a {
    text-decoration: none;
    color: var(--text-main);
    font-weight: 500;
    font-size: 0.95rem;
    padding: 0.5rem;
    transition: color 0.3s ease;
}

.nav-links a:hover {
    color: var(--brand-color);
}

.catalog-header {
    text-align: center;
    padding: 4rem 2rem 2rem;
    scroll-margin-top: 90px;
}

.catalog-header h1 {
    font-size: 3.5rem;
    color: var(--text-main);
    margin-bottom: 0.5rem;
}

.catalog-header p {
    color: var(--text-muted);
    font-size: 1.1rem;
    max-width: 600px;
    margin: 0 auto;
}

.category-filter-container {
    text-align: center;
    padding: 2rem 5%;
    background-color: var(--bg-color);
}

.section-title {
    font-size: 3rem;
    color: var(--text-main);
    margin-bottom: 0.5rem;
}

.heading-line {
    width: 100px;
    height: 4px;
    background-color: var(--brand-color);
    margin: 0 auto 2.5rem;
    border-radius: 2px;
}

.filter-buttons {
    display: flex;
    justify-content: center;
    gap: 1rem;
    flex-wrap: wrap;
    margin-bottom: 1rem;
}

.filter-btn {
    padding: 0.7rem 1.8rem;
    border: 2px solid var(--brand-color);
    background: white;
    color: var(--brand-color);
    border-radius: 50px;
    cursor: pointer;
    font-weight: 600;
    font-family: 'Poppins', sans-serif;
    transition: all 0.3s ease;
    font-size: 0.9rem;
    letter-spacing: 0.5px;
}

.filter-btn:hover, .filter-btn.active {
    background-color: var(--brand-color);
    color: white;
    box-shadow: var(--shadow-hover);
}

.catalog-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 2rem 5% 5rem;
}

.product-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(260px, 1fr));
    gap: 2rem;
}


.product-card {
    background-color: var(--card-bg);
    border-radius: 16px;
    box-shadow: var(--shadow-light);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    display: flex;
    flex-direction: column;
    overflow: hidden; 
    position: relative;
}

.product-card:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-hover);
}

.product-badge {
    position: absolute;
    top: 15px;
    left: 15px;
    padding: 5px 12px;
    border-radius: 20px;
    font-size: 0.75rem;
    font-weight: 600;
    color: white;
    z-index: 10;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.product-badge.premium { background-color: var(--brand-color); }
.product-badge.bestseller { background-color: #ff9800; }
.product-badge.new { background-color: #4caf50; }

.product-rating {
    margin-bottom: 0.5rem;
    font-size: 0.85rem;
}

.stars { color: #f4c430; }
.rating-count { color: var(--text-muted); margin-left: 4px; }

.product-desc {
    font-size: 0.85rem;
    color: var(--text-muted);
    margin-bottom: 0.8rem;
    line-height: 1.4;
}

.product-img {
    width: 100%;
    height: 250px;
    object-fit: cover;
    border-radius: 16px 16px 0 0;
    cursor: zoom-in;
    background-color: #fce8ef; 
}


.card-body {
    padding: 1.5rem;
    display: flex;
    flex-direction: column;
    flex-grow: 1;
}

.product-title {
    font-size: 1.66rem;
    font-weight: 600;
    color: var(--text-main);
    text-transform: capitalize;
    margin-bottom: 0.4rem;
    min-height: 3.68rem; 
    display: -webkit-box;
    -webkit-line-clamp: 2; 
    line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.product-price {
    font-size: 1.1rem;
    font-weight: 500;
    color: var(--brand-color);
    margin-bottom: 1.2rem;
}


.btn-whatsapp {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    background-color: var(--whatsapp-btn);
    color: white;
    text-decoration: none;
    padding: 0.75rem 1rem;
    border-radius: 10px;
    font-weight: 500;
    font-size: 0.95rem;
    margin-top: auto;
    transition: background-color 0.3s ease, transform 0.2s ease;
    white-space: nowrap;
    flex-shrink: 0;
}

.btn-whatsapp:hover {
    background-color: var(--whatsapp-hover);
}


.whatsapp-icon {
    width: 18px;
    height: 18px;
    fill: currentColor;
}

footer {
    text-align: center;
    padding: 2rem;
    color: var(--text-muted);
    background-color: rgb(255, 205, 213);
    font-size: 0.9rem;
}

@media (max-width: 768px) {
    .navbar {
        padding: 0.92rem 4%;
        background: white; 
        height: 100%;
        z-index: 1010;
    }

    .brand-name {
        font-size: 1.6rem;
    }

    .hamburger {
        display: flex;
        z-index: 1002;
        position: relative;
        height: 100%;
    }

    .nav-links {
        font-size: 40px;
        position: absolute;
        top: 70px; 
        left: 0;
        width: 100%;
        height: calc(100vh - 70px);
        flex-direction: column;
        justify-content: center;
        background: white;
        padding: 2rem;
        gap: 1.5rem;
        text-align: center;
        transform: translateY(-120%);
        transition: transform 0.4s cubic-bezier(0.4, 0, 0.2, 1);
        box-shadow: 0 4px 10px rgba(0,0,0,0.1);
        z-index: 1001;
        display: flex;
        visibility: hidden;
        overflow-y: auto;
    }

    .nav-links.active {
        transform: translateY(0);
        visibility: visible;
    }

    .catalog-header h1 {
        font-size: 2.8rem;
    }

    .product-grid {
        grid-template-columns: repeat(auto-fit, minmax(145px, 1fr));
        gap: 10px;
        padding: 0;
    }

    .product-img {
        height: 160px;
    }

    .card-body {
        padding: 1rem 0.8rem;
    }

    .product-title {
        font-size: 0.9rem;
        min-height: 2.8rem;
        margin-bottom: 0.5rem;
    }

    .btn-whatsapp {
        padding: 12px 9px 10px 7px;
        font-size: 0.8rem;
        gap: 5px;
        width: 100%;
        justify-content: center;
        white-space: nowrap;
    }

    .whatsapp-icon {
        width: 16px;
        height: 16px;
        flex-shrink: 0;
    }

    .catalog-container {
        padding: 1rem 10px 3rem;
        width: 100%;
    }

    .about-section, .map-section, .contact-section {
        margin-top: 3rem;
        padding: 2.5rem 1.5rem;
        border-radius: 16px;
    }

    .map-wrapper {
        display: flex;
        position: relative;
        max-height: 40%;
       text-align: center;
       max-width: 100%;
    }

    .reddot, .map-marker {
        position: absolute;
        top: 50% !important;
        left: 50% !important;
        transform: translate(-50%, -50%) !important;
    }

    .about-content h2, .map-container h2, .contact-container > h2 {
        font-size: 2.2rem;
    }

    .filter-btn {
        padding: 0.5rem 1.2rem;
        font-size: 0.85rem;
    }
}

.notification-toast {
    position: fixed;
    bottom: 30px;
    right: 30px;
    background-color: var(--card-bg);
    color: var(--text-main);
    padding: 1rem 1.5rem;
    border-radius: 12px;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.1);
    display: flex;
    align-items: center;
    gap: 12px;
    font-size: 0.95rem;
    font-weight: 500;
    transform: translateY(100px);
    opacity: 0;
    visibility: hidden;
    transition: transform 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275), opacity 0.4s ease, visibility 0.4s;
    z-index: 1000;
    border-left: 5px solid var(--whatsapp-btn);
}

.notification-toast.show {
    transform: translateY(0);
    opacity: 1;
    visibility: visible;
}

@media (max-width: 768px) {
    .notification-toast {
        bottom: 20px;
        right: 20px;
        left: 20px;
        justify-content: center;
        text-align: center;
    }
}
.product-title{
    font-size: 1.33rem;
}

.product-card.hidden {
    display: none;
}

.image-modal {
    display: none;
    position: fixed;
    z-index: 2000;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.9);
    justify-content: center;
    align-items: center;
    cursor: zoom-out;
    padding: 20px;
}

.modal-content {
    max-width: 90%;
    max-height: 90vh;
    border-radius: 8px;
    object-fit: contain;
    animation: zoomIn 0.3s ease;
    cursor: default;
}

.close-modal {
    position: absolute;
    top: 20px;
    right: 30px;
    color: white;
    font-size: 40px;
    font-weight: bold;
    cursor: pointer;
    transition: color 0.3s ease;
    line-height: 1;
}

.close-modal:hover {
    color: var(--brand-color);
}

.show-more-container {
    text-align: center;
    margin-top: 3rem;
    padding-bottom: 2rem;
}

.btn-secondary {
    background-color: transparent;
    color: var(--brand-color);
    border: 2px solid var(--brand-color);
    padding: 0.8rem 2.5rem;
    border-radius: 50px;
    font-family: 'Poppins', sans-serif;
    font-size: 1rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    outline: none;
}

.btn-secondary:hover {
    background-color: var(--brand-color);
    color: white;
    box-shadow: var(--shadow-hover);
}

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

@keyframes zoomIn {
    from { transform: scale(0.8); opacity: 0; }
    to { transform: scale(1); opacity: 1; }
}

.about-section {
    margin-top: 5rem;
    padding: 4rem 2rem;
    scroll-margin-top: 90px;
    background-color: var(--card-bg);
    border-radius: 24px;
    box-shadow: var(--shadow-light);
    text-align: center;
}

.about-content {
    max-width: 800px;
    margin: 0 auto;
}

.about-content h2 {
    font-size: 2.8rem;
    color: var(--brand-color);
    margin-bottom: 1.5rem;
}

.about-content p {
    color: var(--text-muted);
    font-size: 1.1rem;
    margin-bottom: 1rem;
}

.map-section {
    margin-top: 5rem;
    padding: 4rem 2rem;
    scroll-margin-top: 90px;
    background-color: var(--card-bg);
    border-radius: 24px;
    box-shadow: var(--shadow-light);
    text-align: center;
}

.map-container h2 {
    font-size: 2.8rem;
    color: var(--brand-color);
    margin-bottom: 0.5rem;
}

.location-address {
    color: var(--text-muted);
    font-size: 1.1rem;
    margin-bottom: 1rem;
    font-style: italic;
}

.map-wrapper {
    width: 100%;
    position: relative;
    border-radius: 20px;
    overflow: hidden;
    border: 8px solid var(--bg-color);
    box-shadow: var(--shadow-light);
}

.contact-section {
    margin-top: 5rem;
    padding: 5rem 2rem;
    scroll-margin-top: 90px;
    background-color: var(--card-bg);
    border-radius: 24px;
    box-shadow: var(--shadow-light);
    text-align: center;
}

.contact-container > h2{
 font-size: 2.8rem;
    color: var(--brand-color);
   
}
.creator-credit {
    font-size: 1.2rem;
    color: var(--text-main);
    margin: 1.5rem 0;
}

.creator-credit strong {
    color: var(--brand-color);
}

.social-links {
    display: flex;
    justify-content: center;
    gap: 1.5rem;
    margin-top: 2rem;
    flex-wrap: wrap;
}

.social-icon {
    width: 50px;
    height: 50px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    background-color: var(--bg-color);
    transition: all 0.3s ease;
    padding: 12px;
    box-shadow: 0 4px 10px rgba(0,0,0,0.05);
    min-width: 48px;
    min-height: 48px;
}

.social-icon svg {
    fill: var(--text-muted);
    width: 100%;
    height: 100%;
    transition: fill 0.3s ease;
}

.social-icon:hover {
    transform: translateY(-5px);
    background-color: var(--brand-color);
}

.social-icon:hover svg {
    fill: white;
}