@import url('https://fonts.cdnfonts.com/css/century-gothic-paneuropean');

/* :root {
    --primary: #ead7c3;
    --secondary: #fbf6ef;
    --accent: #dce0d9;
    --text-dark: #2c2c2c;
    --text-light: #666;
} */

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

/* html,
body {
    height: 100%;
    margin: 0;
} */

/* body {
    font-family: 'Century Gothic Paneuropean', sans-serif;
    background-color: var(--secondary);
    color: var(--text-dark);
    line-height: 1.6;
    display: flex;
    flex-direction: column;
} */

.main-content {
    flex: 1;
}

a {
    color: var(--text-dark);
    text-decoration: none;
}

/* Smooth transitions */
*,
*::before,
*::after {
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

@media (min-width: 1400px) {

    .container,
    .container-lg,
    .container-md,
    .container-sm,
    .container-xl,
    .container-xxl {
        max-width: 1800px !important;
    }
}

@media (min-width: 1200px) {

    .container,
    .container-lg,
    .container-md,
    .container-sm,
    .container-xl,
    .container-xxl {
        max-width: 1300px;
    }
}

.font-weight-bold {
    font-weight: 600;
}

/* Header */
.top-header {
    background: var(--primary);
    padding: 0.8rem 0;
    position: sticky;
    top: 0;
    z-index: 1001;
    backdrop-filter: blur(10px);
    border-bottom: 1px solid rgba(0, 0, 0, 0.05);
}

.top-header-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-size: 0.85rem;
    color: var(--text-dark);
}

.header-links a {
    color: var(--text-dark);
    text-decoration: none;
    margin: 0 1rem;
    font-weight: 400;
    transition: opacity 0.3s ease;
}

.header-links a:hover {
    opacity: 0.7;
}

.header-contact {
    display: flex;
    align-items: center;
    gap: 1.5rem;
}

.header-contact span {
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.header-contact i {
    font-size: 0.8rem;
}

/* Navigation */
.navbar {
    background-color: var(--secondary);
    padding: 1.2rem 0;
    box-shadow: 0 2px 20px rgba(0, 0, 0, 0.05);
    position: sticky;
    top: 50px;
    z-index: 1000;
    backdrop-filter: blur(10px);
}

.navbar-brand {
    font-family: 'Playfair Display', serif;
    font-weight: 600;
    font-size: 2rem;
    color: var(--text-dark) !important;
    letter-spacing: 1px;
}

.navbar-logo {
    width: 20vh;
    cursor: pointer;
}

.nav-link {
    color: var(--text-dark) !important;
    font-weight: 400;
    font-size: 0.95rem;
    margin: 0 1rem;
    position: relative;
    padding: 0.5rem 0 !important;
}

.nav-link::after {
    content: '';
    position: absolute;
    width: 0;
    height: 2px;
    bottom: 0;
    left: 50%;
    background-color: var(--primary);
    transform: translateX(-50%);
    transition: width 0.3s ease;
}

.nav-link:hover::after {
    width: 100%;
}

/* Dropdown Menu */
.nav-item {
    position: relative;
}

.submenu {
    position: absolute;
    top: 100%;
    left: 0;
    background: white;
    min-width: 200px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    border-radius: 8px;
    opacity: 0;
    visibility: hidden;
    transform: translateY(-10px);
    transition: all 0.3s ease;
    z-index: 1000;
    padding: 1rem 0;
    list-style: none;
}

.nav-item:hover .submenu {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.submenu li {
    padding: 0;
}

.submenu .dropdown-item {
    padding: 0.7rem 1.5rem;
    color: var(--text-dark);
    text-decoration: none;
    display: block;
    font-size: 0.9rem;
    border: none;
    background: none;
}

.submenu .dropdown-item:hover {
    background-color: var(--accent);
    color: var(--text-dark);
}

/* User Menu */
.user-menu {
    position: relative;
}

.user-dropdown {
    position: absolute;
    top: 100%;
    right: 0;
    background: white;
    min-width: 150px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    border-radius: 8px;
    opacity: 0;
    visibility: hidden;
    transform: translateY(-10px);
    transition: all 0.3s ease;
    z-index: 1000;
    padding: 1rem 0;
}

.user-menu:hover .user-dropdown {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.user-dropdown a {
    padding: 0.7rem 1.5rem;
    color: var(--text-dark);
    text-decoration: none;
    display: block;
    font-size: 0.9rem;
}

.user-dropdown a:hover {
    background-color: var(--accent);
}

.nav-icons {
    display: flex;
    align-items: center;
    gap: 1.5rem;
}

.nav-icons .nav-link {
    margin: 0;
    font-size: 1.1rem;
    padding: 0.5rem !important;
    border-radius: 50%;
}

.nav-icons .nav-link:hover {
    background-color: var(--accent);
}

/* Slider */
.carousel {
    margin-bottom: 4rem;
}

.carousel-item img {
    width: 100%;
    height: 70vh;
    object-fit: cover;
    border-radius: 0;
}

.carousel-indicators [data-bs-target] {
    background-color: var(--primary);
    border: none;
    width: 12px;
    height: 12px;
    border-radius: 50%;
    margin: 0 5px;
}

/* Product Section */
.featured-section {
    padding: 4rem 0;
    background: linear-gradient(135deg, var(--secondary) 0%, rgba(234, 215, 195, 0.1) 100%);
}

.section-title {
    font-size: clamp(1.2rem, 1.2rem, 2.5rem);
    font-weight: 400;
    color: var(--text-dark);
    margin-bottom: 3rem;
    position: relative;
}

.section-title::after {
    content: '';
    position: absolute;
    width: 60px;
    height: 2px;
    background: var(--primary);
    bottom: -10px;
    left: 50%;
    transform: translateX(-50%);
}

.product-card {
    position: relative;
    overflow: hidden;
    border-radius: 12px;
    background: white;
    box-shadow: 0 5px 25px rgba(0, 0, 0, 0.05);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    margin-bottom: 2rem;
    cursor: pointer;
}

.product-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.15);
}

.product-card img {
    width: 100%;
    height: 350px;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.product-card:hover img {
    transform: scale(1.05);
}

.product-info {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    background: linear-gradient(transparent, rgba(0, 0, 0, 0.8));
    color: white;
    padding: 2rem 1.5rem 1.5rem;
    font-size: 1rem;
    font-weight: 500;
    text-align: center;
}

.product-icons {
    position: absolute;
    top: 15px;
    right: 15px;
    display: flex;
    flex-direction: column;
    gap: 10px;
    opacity: 0;
    transform: translateX(20px);
    transition: all 0.3s ease;
}

.product-card:hover .product-icons {
    opacity: 1;
    transform: translateX(0);
}

.product-icons i {
    background: white;
    color: var(--text-dark);
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    cursor: pointer;
    box-shadow: 0 3px 15px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
}

.product-icons i:hover {
    background: var(--primary);
    transform: scale(1.1);
}

.btn-primary {
    background: var(--text-dark);
    border: none;
    padding: 1rem 2.5rem;
    font-weight: 500;
    border-radius: 50px;
    text-transform: uppercase;
    letter-spacing: 1px;
    transition: all 0.3s ease;
}

.btn-primary:hover {
    background: var(--primary);
    color: var(--text-dark);
    transform: translateY(-2px);
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.15);
}



/* Responsive */
@media (max-width: 768px) {
    .top-header-content {
        flex-direction: column;
        gap: 0.5rem;
        text-align: center;
    }

    .header-links {
        display: none;
    }

    .header-links a {
        margin: 0 0.5rem;
        font-size: 0.8rem;
    }

    .navbar {
        top: 1px;
    }

    .navbar-brand {
        font-size: 1.5rem;
    }

    .nav-link {
        margin: 0 0.5rem;
    }

    /* .section-title {
        font-size: 2rem;
    } */

    .product-card img {
        height: 280px;
    }


    .carousel-item img {
        height: 50vh;
    }
}

@media (max-width: 576px) {
    .top-header-content {
        font-size: 0.75rem;
    }

    .header-contact {
        /* gap: 4.5rem; */
    }

    .navbar {
        top: 1px;
    }

    .nav-icons {
        gap: 1rem;
    }

    .product-icons i {
        width: 35px;
        height: 35px;
        font-size: 0.9rem;
    }
}

/* Loader */
/* Css Loader  */

/* Collection Css */

.collection .section-title {
    text-align: center;
    font-size: 2.8rem;
    /* font-weight: bold; */
    margin: 40px 0 30px;
    color: var(--text-dark);
}

.collection .collection-card {
    position: relative;
    overflow: hidden;
    border-radius: 15px;
    background-color: #ffffff;
    transition: transform 0.3s ease;
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.08);
}

.collection .collection-card:hover {
    transform: translateY(-5px);
}

.collection .collection-img {
    width: 100%;
    height: 300px;
    object-fit: cover;
    border-top-left-radius: 15px;
    border-top-right-radius: 15px;
}

.collection .collection-content {
    padding: 20px;
    background-color: #fff;
}

.collection .collection-title {
    font-size: 1.4rem;
    /* font-weight: 600; */
    margin-bottom: 10px;
    color: #2e2e2e;
}

.collection .product-count {
    font-size: 0.95rem;
    color: #888;
}

.collection .badge-custom {
    position: absolute;
    top: 15px;
    left: 15px;
    background-color: #dce0d9;
    color: #333;
    padding: 5px 10px;
    border-radius: 50px;
    font-size: 0.8rem;
    font-weight: 500;
}

.collection .explore-btn {
    margin-top: 10px;
    display: inline-block;
    background-color: #ead7c3;
    color: #000;
    padding: 6px 15px;
    border-radius: 25px;
    font-size: 0.9rem;
    text-decoration: none;
    transition: all 0.3s ease;
}

.collection .explore-btn:hover {
    background-color: #dce0d9;
    color: #000;
}

@media (max-width: 768px) {
    .collection .collection-img {
        height: 200px;
    }
}

/* product ayaka */
.product-grid {
    margin-top: 50px;
}

.dispyn {
    display: none !important;
}

.collection-details {
    height: 300px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    text-align: center;
}

.product-wrapper {
    display: flex;
    flex-direction: column;
    height: 100%;
}

.product-card-ayaka {
    background: none !important;
    border: none !important;
    border-radius: 0 !important;
    box-shadow: none !important;
    height: 100%;
    display: flex;
    flex-direction: column;
    cursor: pointer;
    margin: 0 0 10px 0;
}

.product-image {
    position: relative;
    width: 100%;
    height: auto;
    overflow: hidden;
    background: none !important;
    border-radius: 0 !important;
}

.product-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s ease;
}

.product-card-ayaka:hover .product-image img {
    transform: scale(1.05);
}

.product-info-ayaka {
    padding: 12px 0 0;
    text-align: left;
    background: none !important;
}

.product-name {
    font-size: 18px;
    color: #333;
    margin-bottom: 6px;
    letter-spacing: 0.5px;
}

.product-price {
    font-size: 16px;
}


@media (max-width: 768px) {
    .product-image {
        height: auto;
    }

    .product-name {
        font-size: 16px;
    }

    .product-price {
        font-size: 14px;
    }
}

.drawer-overlay {
    position: fixed;
    inset: 0;
    background: rgba(0, 0, 0, 0.4);
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.35s ease;
    z-index: 1040;
}

/* ===== Drawer Panel ===== */
.drawer {
    position: fixed;
    top: 0;
    right: -100%;
    height: 100%;
    background: #fff;
    box-shadow: -5px 0 25px rgba(0, 0, 0, 0.25);
    transition: right 0.35s ease;
    z-index: 1050;
    overflow-y: auto;
    border-radius: 12px 0 0 12px;
}

/* Width responsive: 100% on mobile, 25% on desktop */
@media (min-width: 768px) {
    .drawer {
        width: 25%;
    }
}

@media (max-width: 767px) {
    .drawer {
        width: 100%;
    }
}

/* ===== Show State ===== */
.drawer-overlay.active {
    opacity: 1;
    visibility: visible;
}

.drawer.active {
    right: 0;
}

/* ===== Drawer Header ===== */
.drawer-header {
    background: linear-gradient(135deg, #ead7c3, #ead7c3);
    color: #000000;
    padding: 15px;
    font-size: 18px;
    font-weight: 600;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.drawer-header button {
    background: transparent;
    border: none;
    color: #fff;
    font-size: 24px;
    line-height: 1;
}

/* ===== Smooth Scrollbar for Webkit ===== */
.drawer::-webkit-scrollbar {
    width: 6px;
}

.drawer::-webkit-scrollbar-thumb {
    background: rgba(0, 0, 0, 0.2);
    border-radius: 10px;
}

.filter-btn-short {
    border: none;
    outline: none;
    background: transparent;
    width: 100%;
    text-align: left;
    padding: 8px 0;
    color: #212529;
    position: relative;
    font-size: 16px;
}

.filter-btn-short::after {
    content: "";
    position: absolute;
    left: 0;
    bottom: 2px;
    width: 0;
    height: 2px;
    background-color: gold;
    transition: width 0.3s ease;
}

.filter-btn-short:hover::after {
    width: 50%;
}

.filter-section {
    background-color: #f2f3eb;
    /* light gray-beige like your screenshot */
    padding: 15px;
    font-family: Arial, sans-serif;
    font-size: 14px;
}

.filter-title {
    cursor: pointer;
    font-weight: bold;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 8px 0;
}

.filter-title svg {
    transition: transform 0.3s ease;
}

.filter-title.collapsed svg {
    transform: rotate(180deg);
}

.filter-list {
    padding-left: 0;
    list-style: none;
    margin-bottom: 10px;
}

.filter-list li {
    margin-bottom: 6px;
}

.filter-list input[type="checkbox"] {
    margin-right: 6px;
}

.price-filter {
    max-width: 350px;
    padding: 15px;
    border-radius: 5px;
    border: 1px solid #ddd;
}

.ui-slider-horizontal {
    height: 4px;
    background: #ccc;
    border: none;
}

.ui-slider-horizontal .ui-slider-range {
    background: #000;
}

.ui-slider-horizontal .ui-slider-handle {
    border-radius: 50%;
    background: #000;
    border: none;
    height: 14px;
    width: 14px;
    top: -5px;
}

.price-inputs {
    margin-top: 10px;
}

.price-inputs input {
    font-size: 14px;
    padding: 3px 6px;
    height: 30px;
}


@media(max-width:776px) {
    .drawer {
        background: #ead7c37a;
    }

    .filter-section {
        background: #ead7c3e0;
    }

    .sortlist {
        background: #ead7c3e0;
    }
}

/* Story CSS */
.section-header {
    padding: 5rem 1rem 3rem;
    text-align: center;
    background: linear-gradient(135deg, #eae7dc, #d4cfc9);
    box-shadow: 0 4px 10px rgb(0 0 0 / 0.07);
    border-bottom-left-radius: 3rem;
    border-bottom-right-radius: 3rem;
    margin-bottom: 3rem;
}

.section-header h1 {
    font-weight: 900;
    font-size: 3rem;
    letter-spacing: 3px;
    color: #5a4e42;
    margin-bottom: 0.3rem;
}

.section-header p {
    font-weight: 500;
    font-size: 1.2rem;
    color: #7a7268;
    font-style: italic;
    letter-spacing: 1px;
}

.section-title-not-main {
    position: relative;
    font-weight: 700;
    font-size: 1.75rem;
    color: #6b6155;
    letter-spacing: 1.1px;
    cursor: pointer;
    display: inline-block;
    padding-bottom: 0.5rem;
    margin: 1.5rem 0 1.5rem 0;
}

.section-title-not-main::after {
    content: '';
    position: absolute;
    left: 0;
    bottom: 0;
    width: 0;
    height: 3px;
    background: #c4b59f;
    border-radius: 2px;
    transition: width 0.35s ease;
}

.section-title-not-main:hover::after {
    width: 50%;
}

section p {
    font-size: 1.1rem;
    color: #4a453f;
    max-width: 700px;
    margin: 0 auto 2rem;
    text-align: center;
    font-weight: 400;
    line-height: 1.7;
}

.gallery-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(320px, 1fr));
    gap: 1.5rem;
    margin-top: 1rem;
}

.gallery-item {
    position: relative;
    overflow: hidden;
    border-radius: 1rem;
    box-shadow: 0 8px 15px rgb(0 0 0 / 0.1);
    cursor: pointer;
    transition: transform 0.3s ease;
    will-change: transform;
    background: #fff;
}

.gallery-item:hover {
    transform: scale(1.05);
    box-shadow: 0 15px 25px rgb(0 0 0 / 0.15);
    z-index: 2;
}

.gallery-item img {
    display: block;
    width: 100%;
    height: 30vh;
    object-fit: cover;
    border-radius: 1rem;
    transition: filter 0.3s ease;
}

.gallery-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    padding: 0.8rem 1rem;
    background: linear-gradient(180deg, transparent 0%, rgba(0, 0, 0, 0.55) 100%);
    color: #f9f9f9;
    font-weight: 600;
    font-size: 1rem;
    border-radius: 0 0 1rem 1rem;
    opacity: 0;
    transition: opacity 0.3s ease;
    pointer-events: none;
}

.gallery-item:hover .gallery-overlay {
    opacity: 1;
    pointer-events: auto;
}

/* Journey section grid with image + text side by side */
.journey-grid {
    display: grid;
    gap: 2.5rem;
    margin-top: 2rem;
}

@media (min-width: 768px) {
    .journey-grid {
        grid-template-columns: 1fr 1fr;
        align-items: center;
    }
}

.journey-image {
    border-radius: 1rem;
    box-shadow: 0 8px 20px rgb(0 0 0 / 0.1);
    overflow: hidden;
}

.journey-image img {
    width: 100%;
    height: 300px;
    object-fit: cover;
    border-radius: 1rem;
    transition: transform 0.3s ease;
}

.journey-image:hover img {
    transform: scale(1.05);
}

.journey-text {
    color: #4a453f;
    font-size: 1.1rem;
    line-height: 1.7;
    font-weight: 400;
    max-width: 500px;
}

@media (max-width: 600px) {
    .section-header {
        padding: 3rem 1rem 2rem;
    }

    .section-header h1 {
        font-size: 2.2rem;
        letter-spacing: 2px;
    }

    section p {
        font-size: 1rem;
    }

    .gallery-item img {
        height: 130px;
    }

    .journey-image img {
        height: 180px;
    }

    .journey-text {
        max-width: 100%;
    }
}

/* Register Form CSS */
#form-body {
    height: 100%;
    margin: 0;
    background: url('https://ayakastudio.com/uploads/banner/HqipL1Twug2EV4oH_banner_1752982369.jpg') no-repeat center center fixed;
    background-size: cover;
}

#form-body .form-container {
    background: rgba(255, 255, 255, 0.07);
    backdrop-filter: blur(4px);
    -webkit-backdrop-filter: blur(2px);
    padding: 40px;
    border-radius: 12px;
    max-width: 500px;
    width: 100%;
    margin: auto;
}

.form-control {
    max-height: 30px;
}

#form-body .form-control,
#form-body .form-check-input {
    background: rgba(255, 255, 255, 0.2);
    color: #fff;
    border: none;
}

#form-body .form-check-input {
    background-color: rgba(255, 255, 255, 0.2);
    border: 1px solid #ccc;
    color: white;
}

/* When checkbox is checked */
#form-body .form-check-input:checked {
    background-color: #0d6efd;
    /* Bootstrap primary color or your own */
    border-color: #0d6efd;
}

/* Optional: change the checkmark color */
#form-body .form-check-input:checked::before {
    content: "";
    display: block;
    width: 100%;
    height: 100%;
    background-image: url("data:image/svg+xml,%3Csvg width='12' height='10' viewBox='0 0 12 10' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M1 5l3 3 7-7' stroke='white' stroke-width='2' fill='none'/%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: center;
    background-size: 70% 70%;
}


#form-body .form-control::placeholder {
    color: #ddd;
}

#form-body .form-label {
    color: #fff;
}

h2 {
    /* color: #fff; */
    margin-bottom: 20px;
    text-align: center;
}

#form-body .form-check-label {
    color: #fff;
}

#form-body .btn {
    font-weight: 600;
}

.product_search_input {
    border: 2px ridge;
    border-radius: 0;
}


.product_search_input:focus {
    color: transparent;
    background-color: transparent;
    border-color: black;
    outline: 0;
    box-shadow: none;
}

.search-result-item {
    display: flex;
    align-items: center;
    padding: 5px;
    border-bottom: 1px solid #eee;
    cursor: pointer;
}

.search-result-item img {
    width: 50px;
    height: 50px;
    object-fit: cover;
    margin-right: 10px;
}

.search-result-item:hover {
    background-color: #f5f5f5;
}

.search-box {
    display: none;
    width: 300px;
    top: 40px;
    right: 0;
    z-index: 999;
    max-height: 80vh;
    overflow-y: auto;
}

@media (max-width: 991px) {
    .search-box {
        left: 12em !important;
        right: auto !important;
        transform: translateX(-60%);
        width: 300px;
        min-width: 90%;
    }
}

.color-option.scrollable {
    overflow-x: auto;
    white-space: nowrap;
    padding-bottom: 5px;
}

.color-option.scrollable>div {
    flex: 0 0 auto;
}

.productopen {
    cursor: pointer;
}

.productopen img:hover {
    transform: scale(1.1);
    transition: all 0.3s ease;
}

/* Whatsapp Button */
.whatsapp-btn {
    position: fixed;
    bottom: 20px;
    right: 20px;
    z-index: 1000;
    width: 55px;
    height: 55px;
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    font-size: 26px;
    color: white;
    background: linear-gradient(45deg, #25D366, #128C7E);
    border: 3px solid #0d3b2e;
    /* sharp dark border */
    box-shadow: 0 5px 12px rgba(0, 0, 0, 0.3);
    transition: transform 0.3s, box-shadow 0.3s;
    text-decoration: none;
    /* remove underline */
}

.whatsapp-btn:hover {
    transform: scale(1.2) rotate(-10deg);
    box-shadow: 0 8px 18px rgba(0, 0, 0, 0.4);
    color: white;
}

/* Sparkle Pulse Animation */
.whatsapp-btn::before {
    content: '';
    position: absolute;
    width: 55px;
    height: 55px;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(255, 255, 255, 0.6) 0%, rgba(37, 211, 102, 0) 70%);
    animation: sparklyPulse 2s infinite;
    z-index: -1;
}

.whatsapp-btn::after {
    content: '';
    position: absolute;
    width: 75px;
    height: 75px;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(37, 211, 102, 0.5) 0%, rgba(37, 211, 102, 0) 70%);
    animation: pulseScale 1.5s infinite;
    z-index: -2;
}

@keyframes pulseScale {
    0% {
        transform: scale(0.8);
        opacity: 0.7;
    }

    50% {
        transform: scale(1.5);
        opacity: 0;
    }

    100% {
        transform: scale(0.8);
        opacity: 0.7;
    }
}

@keyframes sparklyPulse {

    0%,
    100% {
        transform: scale(1) rotate(0deg);
        opacity: 0.7;
    }

    25% {
        transform: scale(1.05) rotate(15deg);
        opacity: 0.5;
    }

    50% {
        transform: scale(1.1) rotate(-15deg);
        opacity: 0.6;
    }

    75% {
        transform: scale(1.05) rotate(10deg);
        opacity: 0.5;
    }
}

/* Mobile Responsive Adjustments */
@media (max-width: 576px) {
    .whatsapp-btn {
        width: 45px;
        height: 45px;
        font-size: 22px;
        border-width: 2px;
    }

    .whatsapp-btn::before {
        width: 45px;
        height: 45px;
    }

    .whatsapp-btn::after {
        width: 60px;
        height: 60px;
    }
}