
        /* Base Styles */
        * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
        }

	
	#background-wrap {
    bottom: 0;
	left: 0;
	padding-top: 50px;
	position: fixed;
	right: 0;
	top: 0;
	z-index: -1;
}

/* Cloud Keyframes */

@-webkit-keyframes animateCloud {
    0% {
        margin-left: -1000px;
    }
    100% {
        margin-left: 100%;
    }
}

@-moz-keyframes animateCloud {
    0% {
        margin-left: -1000px;
    }
    100% {
        margin-left: 100%;
    }
}

@keyframes animateCloud {
    0% {
        margin-left: -1000px;
    }
    100% {
        margin-left: 100%;
    }
}

/* Cloud Animations */

.x1 {
	-webkit-animation: animateCloud 35s linear infinite;
	-moz-animation: animateCloud 35s linear infinite;
	animation: animateCloud 35s linear infinite;
	
	-webkit-transform: scale(0.65);
	-moz-transform: scale(0.65);
	transform: scale(0.65);
}

.x2 {
	-webkit-animation: animateCloud 20s linear infinite;
	-moz-animation: animateCloud 20s linear infinite;
	animation: animateCloud 20s linear infinite;
	
	-webkit-transform: scale(0.3);
	-moz-transform: scale(0.3);
	transform: scale(0.3);
}

.x3 {
	-webkit-animation: animateCloud 30s linear infinite;
	-moz-animation: animateCloud 30s linear infinite;
	animation: animateCloud 30s linear infinite;
	
	-webkit-transform: scale(0.5);
	-moz-transform: scale(0.5);
	transform: scale(0.5);
}

.x4 {
	-webkit-animation: animateCloud 18s linear infinite;
	-moz-animation: animateCloud 18s linear infinite;
	animation: animateCloud 18s linear infinite;
	
	-webkit-transform: scale(0.4);
	-moz-transform: scale(0.4);
	transform: scale(0.4);
}

.x5 {
	-webkit-animation: animateCloud 25s linear infinite;
	-moz-animation: animateCloud 25s linear infinite;
	animation: animateCloud 25s linear infinite;
	
	-webkit-transform: scale(0.55);
	-moz-transform: scale(0.55);
	transform: scale(0.55);
}

/* Clouds */

.cloud {
	background: #fff;
	background: -moz-linear-gradient(top,  #fff 5%, #f1f1f1 100%);
	background: -webkit-gradient(linear, left top, left bottom, color-stop(5%,#fff), color-stop(100%,#f1f1f1));
	background: -webkit-linear-gradient(top,  #fff 5%,#f1f1f1 100%);
	background: -o-linear-gradient(top,  #fff 5%,#f1f1f1 100%);
	background: -ms-linear-gradient(top,  #fff 5%,#f1f1f1 100%);
	background: linear-gradient(top,  #fff 5%,#f1f1f1 100%);
	filter: progid:DXImageTransform.Microsoft.gradient( startColorstr='#fff', endColorstr='#f1f1f1',GradientType=0 );
	
	-webkit-border-radius: 100px;
	-moz-border-radius: 100px;
	border-radius: 100px;
	
	-webkit-box-shadow: 0 8px 5px #b4eaf9;
	-moz-box-shadow: 0 8px 5px #b4eaf9;
	box-shadow: 0 8px 5px #b4eaf9;

	height: 120px;
	position: relative;
	width: 350px;
}

.cloud:after, .cloud:before {
    background: #fff;
	content: '';
	position: absolute;
	z-indeX: -1;
}

.cloud:after {
	-webkit-border-radius: 100px;
	-moz-border-radius: 100px;
	border-radius: 100px;

	height: 100px;
	left: 50px;
	top: -50px;
	width: 100px;
}

.cloud:before {
	-webkit-border-radius: 200px;
	-moz-border-radius: 200px;
	border-radius: 200px;

	width: 180px;
	height: 180px;
	right: 50px;
	top: -90px;
}


 /* Header Styles */
        header {
            padding: 2rem;
            text-align: center;
            z-index: 2;
            position: relative;
        }

        .logo {
            width: 180px;
            transition: all 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
            cursor: pointer;
            filter: drop-shadow(0 5px 15px #B1DBE7); }

        .logo:hover {
            transform: rotate(-5deg) scale(1.1);
            filter: drop-shadow(0 8px 25px #B1DBE7); }


 /* Navigation Style */
        
        nav {
            display: flex;
            justify-content: center;
            gap: 1.5rem;
            padding: 2rem;
            flex-wrap: wrap;
            z-index: 2;
            position: relative;
        }

        .nav-bubble {
            background: #FFFfff;
            font-family: 'Arial Rounded MT Bold', 'Arial', sans-serif;
            font-size: 1em;
            padding: 1rem 2rem;
            border-radius: 50px;
            text-decoration: none;
            color: #2A2A2A;
            font-weight: 700;
            transition: all 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
            position: relative;
            overflow: hidden;
            box-shadow: 0 8px 24px #B1DBE7;
            text-align: center;
            line-height: 1.5; /* Ensure text is vertically centered */
            box-sizing: border-box; /* Ensure padding is included in the width/height */
            width: auto; /* Allow the button to size based on content */
            margin: 0; /* Remove default margin */
        }

        .nav-bubble:hover {
            transform: translateY(-5px) scale(1.05);
            color: #2a2a2a;
            background: #FFFCDF;
        }


        /* Sections */
        .page-section {
            padding: 6rem 2rem;
            min-height: 100vh;
            scroll-margin-top: 100px;
            position: relative;
            z-index: 1;
        }

        #shop {
            background: #00;
        }

        #fragrances {
            background: #00;
        }

        #contact {
            background: #00;
            color: #FCC07F;
        }
        

         /* Product Cards */
         
 .product-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
    gap: 15px; 
    padding: 15px;
    width: 100%;
    box-sizing: border-box;
    max-width: 1200px;
    margin: 0 auto;
    padding: 2rem;
}

.product-card {
    background-color: white;
    border-radius: 25px;
    text-align: center;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden; 
    box-sizing: border-box;
    transition: all 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    position: relative;
    overflow: hidden;
    box-shadow: 0 5px 15px #B1DBE7;
    padding: 1.5rem;
    max-width: 300px;
    margin: 0 auto;
    
} 


.product-card img {
    width: 100%;
    max-width: 100%;
    height: auto;
    border-radius: 15px;
    margin-bottom: 1rem;
    box-shadow: 0 5px 10px #d6d6d6;
}

.product-card:hover {
    box-shadow: 0 15px 30px #B1DBE7,
                0 0 20px #B1DBE7;
}


        /* Fragrance List */
        
        body {
            font-family: 'Arial Rounded MT Bold', 'Arial', sans-serif;
            margin: 0;
            padding: 0;
            background-color: #d2f5ff; 
            color: #2A2A2A;
            display: flex;
            flex-direction: column;
            min-height: 100vh;
        }
        .header {
            background-color: #00;
            padding: 20px;
            text-align: center;
            color: #2A2A2A;
        }
        .header h1 {
            font-family: 'Arial Rounded MT Bold', 'Arial', sans-serif;
            font-weight: 700;
            font-size: 2.5em;
            margin: 0;
        }
        
        

/* Mobile Styling */
        @media (max-width: 600px) {
            header h1 {
                font-size: 2em;
            }
            nav a {
                padding: 8px 12px;
                font-size: 0.8em;
            }
            .product-grid {
                grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
                padding: 10px;
            }
            
        }


        @media (max-width: 768px) {
            .product-grid, .subscription-cards {
                columns: 1;
            }

            .fragrance-list {
                columns: 1;
            }

            .nav-bubble {
                padding: 1rem 1.5rem;
                font-size: 0.9rem;
            }

            .page-section {
                padding: 4rem 1rem;
            }
        }

        @media (max-width: 480px) {
            .fragrance-list {
                columns: 1;
            } }

:is([id*='google_ads_iframe'],[id*='taboola-'],.taboolaHeight,.taboola-placeholder,#top-ad,#credential_picker_container,#credentials-picker-container,#credential_picker_iframe,[id*='google-one-tap-iframe'],#google-one-tap-popup-container,.google-one-tap__module,.google-one-tap-modal-div,#amp_floatingAdDiv,#ez-content-blocker-container) {display:none!important;min-height:0!important;height:0!important;}

    