#fw-section-custom-html-c3280abe-c2c3-4616-8304-e96c8a28d62f {

body {
  font-family: Arial, sans-serif;
  background-color: #000;
  color: #fff;
  margin: 0;
  padding: 0;
}

.featured-collection {
  display: flex;
  overflow-x: auto;
  scroll-snap-type: x mandatory;
  gap: 20px;
  padding: 20px;
  perspective: 1000px; /* Creates a 3D effect */
}

/* Product card styling */
.product-card {
  flex: 0 0 auto;
  width: 250px;
  background-color: #f5f5f5;
  border-radius: 10px;
  padding: 15px;
  text-align: center;
  scroll-snap-align: center;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.5);
  color: inherit;
  text-decoration: none;
  transform-style: preserve-3d;
  transition: transform 0.3s ease, box-shadow 0.3s ease; /* Smooth transition */
}

/* Product card images */
.product-card img {
  max-width: 100%;
  height: auto;
  border-radius: 10px;
}

/* Product card headings */
.product-card h3 {
  font-size: 1.1rem;
  margin: 10px 0;
  color: #000000;
}

/* Product card pricing */
.product-card p {
  font-size: 1rem;
  margin: 5px 0;
  color: #aaa;
}

/* Hover effect for product card tilt */
.product-card:hover {
  transform: rotateY(15deg) scale(1.1) translateZ(20px); /* Tilt, scale up, and translate towards viewer */
  box-shadow: 0 10px 20px rgba(0, 0, 0, 0.7); /* Enhance shadow for emphasis */
}

/* Desktop-specific styling */
@media (min-width: 1024px) {
  .product-card {
    transition: transform 0.3s ease, box-shadow 0.3s ease;
  }
  
  .product-card:hover {
    transform: scale(1.1) translateZ(50px); /* Increase the "pop-out" effect on desktop */
  }
}

/* Mobile / Small devices: Ensure that hover effects are not too strong */
@media (max-width: 1024px) {
  .product-card:hover {
    transform: scale(1.05) translateZ(0); /* Lighter effect for mobile */
  }
}

}

#fw-section-announcement-bar-cdfcc0bc-288b-4b39-89b0-e2825d2135ac {

/* Luxury Announcement Bar with Blue Gradient */
.announcement-bar {
    background: linear-gradient(90deg, #1db3f5, #0056b3); /* Smooth gradient */
    color: #d4af37; /* Luxury gold text */
    font-family: 'Monument Extended', sans-serif;
    text-align: center;
    padding: 12px 0;
    font-size: 14px;
    text-transform: uppercase;
    position: relative;
    z-index: 999;
    transition: all 0.3s ease;
}

/* Heading Styling */
.announcement-bar h1 {
    font-family: 'Monument Extended', sans-serif;
    font-weight: bold;
    text-transform: uppercase;
    font-size: 22px;
    color: #d4af37;
    text-shadow: 0 0 8px rgba(212, 175, 55, 0.8), 0 0 16px rgba(212, 175, 55, 0.5); /* Soft glowing gold */
    margin: 0;
    padding: 6px 0;
}

/* Glowing Animation */
@keyframes glow {
    0% { text-shadow: 0 0 5px #d4af37, 0 0 10px #d4af37; }
    50% { text-shadow: 0 0 15px #d4af37, 0 0 25px #d4af37; }
    100% { text-shadow: 0 0 5px #d4af37, 0 0 10px #d4af37; }
}

.announcement-bar h1 {
    animation: glow 1.5s ease-in-out infinite;
}

/* Countdown Timer Styling */
.announcement-bar .countdown {
    font-weight: normal;
    color: #d4af37;
    font-size: 16px;
    padding-top: 8px;
}

.announcement-bar .countdown span {
    font-size: 22px;
    font-weight: bold;
    color: #d4af37;
}

/* Hover Effect */
.announcement-bar a {
    color: #d4af37;
    text-decoration: none;
    font-weight: bold;
    transition: all 0.3s ease;
}

.announcement-bar a:hover {
    color: #f5e1c5; /* Champagne hover color */
    text-decoration: underline;
}

/* Mobile Responsiveness */
@media screen and (max-width: 768px) {
    .announcement-bar h1 {
        font-size: 18px;
    }
    .announcement-bar .countdown {
        font-size: 12px;
    }
}

/* Free Shipping Text */
.announcement-bar h1::after {
    content: ' - Free Shipping on Orders Over $75!';
    display: block;
    font-size: 16px;
    color: #d4af37;
    text-transform: uppercase;
    margin-top: 8px;
}

}








#fw-section-announcement-bar-2f0a01e3-282b-4dd5-b420-f1eb48951646 {

/* General Styling */
.announcement-bar {
  background-color: #f5f5f5; /* Background color */
  color: #1b4d3e; /* Text color */
  font-family: "Monument Extended", sans-serif; /* Font */
  font-size: 16px;
  text-align: center;
  padding: 15px 20px;
  border: 2px solid #1b4d3e; /* Elegant border */
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1); /* Subtle shadow for luxury feel */
  position: relative;
  overflow: hidden;
  z-index: 9999;
}

.announcement-bar:hover {
  background-color: #4ae1b7; /* Hover effect for background */
  color: #000000; /* Contrast text color */
  transition: all 0.3s ease-in-out;
}

/* Link Styling */
.announcement-link {
  text-decoration: none;
  color: inherit;
  font-weight: 600;
  display: block;
}

.announcement-link:hover {
  color: #000000; /* Subtle hover effect on text */
}

/* Highlighted Text */
.highlight {
  color: #4ae1b7; /* Accent color for "16" */
  font-weight: bold;
}
}




#fw-section-rich-text-3df539e5-a893-407d-b57e-4bf8664ce6b3 {

/* Fonts */
@import url('https://fonts.googleapis.com/css2?family=Monument+Extended:wght@900&family=Quilon:wght@400&display=swap');

body {
  background-color: #f5f5f5;
  color: #1b4d3e;
  font-family: 'Quilon', sans-serif;
  margin: 0;
  padding: 0;
}

.about-container {
  max-width: 900px;
  margin: auto;
  padding: 50px 20px;
  text-align: center;
}

.about-container h1 {
  font-family: 'Monument Extended', sans-serif;
  font-weight: 900;
  text-transform: uppercase;
  font-size: 42px;
  color: #000;
  letter-spacing: 2px;
  animation: fadeIn 1.2s ease-in-out;
}

.about-container p {
  font-size: 18px;
  line-height: 1.6;
  animation: slideUp 1.2s ease-in-out;
}

/* Accent Text */
strong {
  color: #4ae1b7;
}

/* Call-to-Action */
.cta {
  display: inline-block;
  margin-top: 20px;
  padding: 15px 30px;
  font-size: 20px;
  text-transform: uppercase;
  font-weight: bold;
  background: #000;
  color: #4ae1b7;
  border: 2px solid #4ae1b7;
  border-radius: 10px;
  transition: all 0.3s ease-in-out;
  text-decoration: none;
}

.cta:hover {
  background: #4ae1b7;
  color: #000;
  border: 2px solid #000;
}

/* Animations */
@keyframes fadeIn {
  from { opacity: 0; transform: translateY(-10px); }
  to { opacity: 1; transform: translateY(0); }
}

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

}


#fw-section-donations-9e3c947f-8c32-420b-a612-e37020be719b {

/* Neon Glow Effect */
#donation-section {
  padding: 50px 20px;
  text-align: center;
  background: #000000; /* Black background */
  border-radius: 15px;
  box-shadow: 0 10px 30px rgba(0, 255, 170, 0.5);
  color: #4ae1b7;
}

#donation-section h1 {
  font-family: 'Quilon', sans-serif;
  font-weight: 900;
  text-transform: uppercase;
  font-size: 2.5rem; /* Reduced font size */
  color: #4ae1b7;
  text-shadow: 0 0 10px #4ae1b7, 0 0 20px #00ffaa, 0 0 30px #00ffdd;
}

#donation-section p {
  font-size: 1rem; /* Reduced font size */
  line-height: 1.8;
  color: #ffffff;
  margin-bottom: 30px;
}

button {
  background: #4ae1b7;
  color: #000000;
  font-family: 'Quilon', sans-serif;
  text-transform: uppercase;
  padding: 15px 30px;
  border: none;
  border-radius: 30px;
  cursor: pointer;
  font-size: 1rem; /* Reduced font size */
  box-shadow: 0 0 15px #00ffdd, 0 0 25px #00ffcc, 0 0 35px #00ffb3;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

button:hover {
  transform: scale(1.1);
  box-shadow: 0 0 20px #4ae1b7, 0 0 40px #00ffcc, 0 0 50px #00ffaa;
}
}
#fw-section-custom-html-3a72f768-bd96-4a22-ba5b-add67ca96bfc {

/* Luxury Banner Section */
.luxury-banner {
  background-image: url('path-to-your-high-quality-image.jpg'); /* Use an impactful, high-quality image */
  background-size: cover;
  background-position: center;
  color: #f4ebd0;
  text-align: center;
  padding: 120px 20px;
  position: relative;
  box-shadow: inset 0 0 150px rgba(0, 0, 0, 0.7); /* Adding a soft shadow to add depth */
}

.banner-content {
  max-width: 1100px;
  margin: 0 auto;
  padding: 40px;
  background: rgba(0, 0, 0, 0.6); /* Semi-transparent background for text readability */
  border-radius: 15px;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.5);
}

.heading {
  font-family: 'Monument Extended', sans-serif;
  font-weight: bold;
  font-size: 3rem;
  text-transform: uppercase;
  letter-spacing: 5px;
  color: #b68d40;
  text-shadow: 3px 3px 6px rgba(0, 0, 0, 0.6); /* Adding a subtle shadow for luxury effect */
  margin-bottom: 20px;
}

.description {
  font-family: 'Quilon', sans-serif;
  font-size: 1.2rem;
  color: #f4ebd0;
  line-height: 1.6;
  margin-bottom: 30px;
  max-width: 800px;
  margin-left: auto;
  margin-right: auto;
}

.cta-button {
  font-family: 'Quilon', sans-serif;
  background-color: #b68d40;
  color: #f4ebd0;
  padding: 15px 40px;
  font-size: 1.2rem;
  text-decoration: none;
  border-radius: 50px;
  display: inline-block;
  transition: all 0.3s ease;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.4);
}

.cta-button:hover {
  background-color: #1b4d3e;
  color: #f4ebd0;
  transform: scale(1.05);
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.5); /* Adding a hover effect for a more luxurious feel */
}

/* Responsive Design */
@media (max-width: 768px) {
  .heading {
    font-size: 2.5rem;
  }

  .description {
    font-size: 1rem;
  }

  .cta-button {
    font-size: 1rem;
    padding: 12px 30px;
  }
}
}







#fw-section-rich-text-173467002051896 {

/* Top Section Styling */
.top-section {
  max-width: 800px;
  margin: 0 auto 40px; /* Center align and spacing below */
  text-align: center;
  padding: 30px;
  background: linear-gradient(145deg, rgba(255, 215, 0, 0.15), rgba(255, 255, 255, 0.05)); /* Luxurious gradient overlay */
  border-radius: 20px;
  border: 2px solid rgba(212, 175, 55, 0.8); /* Gold border */
  box-shadow: 0 6px 20px rgba(212, 175, 55, 0.3); /* Premium shadow with gold hue */
}

/* Top Heading Style */
.top-section h1 {
  font-family: "Rakkas", serif;
  font-size: 3em;
  text-transform: uppercase;
  color: #f0e68c; /* Rich khaki gold for sophistication */
  margin-bottom: 20px;
  text-shadow: 0px 2px 5px rgba(212, 175, 55, 0.7); /* Gold glow effect */
}

/* Top Paragraph Style */
.top-section p {
  font-family: "Quillon", sans-serif;
  font-size: 1.3em;
  color: #f5f5f5; /* Bright white for strong contrast */
  text-align: justify;
  line-height: 1.9;
  margin: 0;
}
}
#fw-section-announcement-bar-eb164251-cd32-48ff-95b2-cf97d93b16c6 {

/* General Styling */
.announcement-bar {
  background: linear-gradient(90deg, #000000, #4ae1b7, #1b4d3e);
  color: #000000;
  font-family: "Monument Extended", sans-serif;
  font-size: 18px;
  font-weight: bold;
  text-align: center;
  padding: 15px;
  position: relative;
  overflow: hidden;
  z-index: 9999;
  box-shadow: 0 10px 20px rgba(0, 0, 0, 0.3);
  white-space: nowrap; /* Prevent text wrapping */
}

/* Glowing Border Animation */
.announcement-bar::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  border: 3px solid transparent;
  border-image: linear-gradient(45deg, #4ae1b7, #1b4d3e, #000000);
  border-image-slice: 1;
  animation: glow 3s infinite;
  pointer-events: none;
  mask-image: linear-gradient(to right, transparent, black 20%, black 80%, transparent);
  -webkit-mask-image: linear-gradient(to right, transparent, black 20%, black 80%, transparent);
}

@keyframes glow {
  0% {
    opacity: 1;
    transform: scale(1);
  }
  50% {
    opacity: 0.8;
    transform: scale(1.05);
  }
  100% {
    opacity: 1;
    transform: scale(1);
  }
}

/* Link Styling */
.announcement-link {
  text-decoration: none;
  color: inherit;
  display: inline-block;
  transition: all 0.3s ease;
}

.announcement-link:hover {
  color: #1b4d3e;
  text-shadow: 0px 0px 10px #4ae1b7;
  transform: scale(1.1);
}

/* Animated Text Gradient */
.announcement-text {
  background: linear-gradient(90deg, #4ae1b7, #1b4d3e, #000000);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  color: #000000; /* Fallback color */
  animation: text-gradient 5s linear infinite;
  background-size: 200% auto;
}

@keyframes text-gradient {
  0% { background-position: 0% 50%; }
  100% { background-position: 200% 50%; }
}

/* Highlighted Text */
.highlight {
  color: #000000;
  background-color: #000000;
  padding: 2px 6px;
  border-radius: 5px;
  box-shadow: 0 2px 4px rgba(0, 0, 0, 0.2);
  font-weight: bold;
  display: inline-block;
  animation: pulse 2s infinite;
}

@keyframes pulse {
  0%, 100% {
    transform: scale(1);
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.2);
  }
  50% {
    transform: scale(1.1);
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.3);
  }
}
}
#fw-section-custom-html-f8da0412-66db-4f84-99e3-2f7a22969bd3 {

/* Back to Top Button Styles */
#back-to-top {
    display: inline-block;
    margin: 40px auto;
    background-color: #b68d40; /* Primary color */
    color: #f4ebd0; /* Text over Primary color */
    padding: 14px 30px; /* Reduced padding for a thinner button */
    font-size: 1.5em;
    text-decoration: none;
    border-radius: 30px;
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.3);
    transition: transform 0.4s ease, background-color 0.4s ease;
    text-align: center;
}

/* Hover effect */
#back-to-top:hover {
    transform: scale(0.98);
    background-color: #f4ebd0; /* Text over Primary color */
    color: #1b4d3e; /* Text color */
}

/* Smooth scroll to the top */
html {
    scroll-behavior: smooth;
}

/* Image with Text Section Styling */
.image-with-text {
    margin-bottom: 50px; /* Adds space between the content and button */
    background-color: #1b4d3e; /* Green background color */
    padding: 20px;
    border-radius: 8px;
}

/* Text Styling */
.image-with-text .content-text h2 {
    font-size: 2.8em;
    font-weight: bold;
    margin-bottom: 15px;
    color: #f4ebd0; /* Text over Primary color */
}

.image-with-text .content-text p {
    font-size: 1.3em;
    line-height: 1.6;
    color: #f4ebd0; /* Text over Primary color */
}
}
#fw-section-rich-text-37ef7c09-27b0-47ed-93e9-4739994e1dd3 {

/* General Body Styling */
body {
  background-color: #1b4d3e; /* Deep green background */
  font-family: "Quillon", sans-serif;
  color: #f1f1f1; /* Light off-white for contrast */
  line-height: 1.8;
  margin: 0;
  padding: 20px;
  display: flex;
  justify-content: center;
  align-items: center;
  min-height: 100vh;
}

/* Container Styling */
.container {
  max-width: 800px;
  padding: 40px;
  background: rgba(255, 255, 255, 0.05); /* Subtle glass-like overlay */
  border-radius: 15px;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.3);
  border: 1px solid rgba(255, 255, 255, 0.2); /* Subtle border for elegance */
}

/* Heading Style */
h1 {
  font-family: "Rakkas", serif;
  font-size: 2.5em;
  text-transform: uppercase;
  color: #d4af37; /* Gold for a luxury vibe */
  text-align: center;
  margin-bottom: 20px;
}

/* Transparent Serpent Style */
.transparent-serpent {
  font-size: 2em;
  text-transform: uppercase;
  background: linear-gradient(to right, #d4af37, #f1f1f1); /* Gold to white gradient */
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  text-align: center;
  margin-bottom: 30px;
}

/* Subheading Styling */
h2 {
  font-family: "Rakkas", serif;
  font-size: 1.8em;
  text-transform: uppercase;
  color: #f1f1f1; /* Soft white for elegance */
  text-align: center;
  margin: 30px 0 15px;
  border-top: 2px solid #d4af37; /* Gold separator above */
  border-bottom: 2px solid #d4af37; /* Gold separator below */
  padding: 10px 0;
}

/* Paragraph Styling */
p {
  font-size: 1.2em;
  color: #e8e8e8; /* Soft white */
  text-align: justify;
  margin-bottom: 20px;
  line-height: 1.8;
}
}
#fw-section-hero-video-1732129945 {

.button {
    background: #9c0707; /* Original red color */
    color: #1d1d1d; /* Text over primary (dark color) */
    font-size: 1rem; /* Standard font size */
    padding: 12px 25px; /* Balanced padding */
    border-radius: 8px; /* Rounded corners */
    border: 2px solid #1d1d1d; /* Subtle border for definition */
    font-weight: bold; /* Bold text */
    box-shadow: 0px 6px #1d1d1d; /* Shadow creates a 3D effect */
    transition: transform 0.3s ease, box-shadow 0.3s ease; /* Smooth animation */
}

.button:hover {
    transform: translateY(-3px); /* Lift button on hover */
    box-shadow: 0px 9px #1d1d1d; /* Increase shadow on hover */
}

.button:active {
    transform: translateY(1px); /* Slight press effect */
    box-shadow: 0px 4px #1d1d1d; /* Reduce shadow on press */
} 

/* Video Banner Styling */
.video-banner {
  position: relative;
  width: 100%;
  height: 100vh; /* Full height of the viewport */
  background: #000; /* Fallback color if video doesn't load */
  background-image: url('path/to/fallback-image.jpg'); /* Optional image fallback */
  background-size: cover; /* Ensures the video covers the full screen */
  background-position: center center;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  object-fit: cover;
  background-attachment: fixed;
}

/* Overlay Styling */
.video-banner::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: #05040F;
  opacity: 0.2; /* 20% opacity */
  z-index: 0; /* Ensure it stays behind the content */
}

/* Content Styling */
.video-banner .content {
  text-align: center;
  color: #fff; /* White text */
  z-index: 1; /* Content appears on top of the overlay */
  position: relative;
  padding: 20px;
  max-width: 80%; /* Keep the content width manageable */
}

/* Heading Styling */
.video-banner .content .heading {
  font-family: "Monument Extended", sans-serif;
  font-size: 3.5em;
  font-weight: bold;
  text-transform: uppercase;
  color: #f01414; /* Red color for heading */
  margin-bottom: 20px;
}

/* Text Styling */
.video-banner .content .text {
  font-family: "Quillon", sans-serif;
  font-size: 1.5em;
  color: #ffffff;
  margin-bottom: 30px;
}

/* Button Styling */
.video-banner .content .button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 1.3em;
  padding: 12px 30px;
  background-color: #b68d40; /* Premium gold */
  color: white;
  text-decoration: none;
  border-radius: 10px;
  font-weight: bold;
  text-transform: uppercase;
  letter-spacing: 1.5px;
  transition: background-color 0.3s ease, transform 0.3s ease;
}

.video-banner .content .button:hover {
  background-color: #f0e68c; /* Lighter gold on hover */
  transform: scale(1.05); /* Slight zoom effect */
}

/* Mobile Responsiveness */
@media (max-width: 768px) {
  .video-banner .content .heading {
    font-size: 2.5em; /* Smaller font size on mobile */
  }

  .video-banner .content .text {
    font-size: 1.2em;
  }

  .video-banner .content .button {
    font-size: 1.1em; /* Smaller button text on mobile */
  }
} 

}


#fw-section-featured-product-0c314c5a-6aa0-4e6c-b6b1-1087507bdbd5 {

/* For desktop, stop zoom on hover and add rotation effect */
@media (min-width: 768px) {
  .product-card img {
    transition: transform 0.5s ease, filter 0.5s ease;
  }

  .product-card:hover img {
    transform: rotate(5deg);  /* Rotate slightly */
    filter: none;  /* Ensure no zoom effect */
  }
}

/* Mobile and tablet devices */
@media (max-width: 767px) {
  .product-card img {
    transition: transform 0.3s ease;
  }

  .product-card:hover img {
    transform: scale(1.05); /* Keep the zoom effect for mobile */
  }
}
}
#fw-section-newsletter-bc06a0a1-6e61-4cac-8282-0b65905e6269 {

/* Newsletter container */
.newsletter {
  padding: 60px 20px;
  background: linear-gradient(135deg, #1a3d2b, #2a5c3b); /* Slightly darker gradient green background */
  color: #fff; /* White text for high contrast */
  font-family: 'Quilon', sans-serif; /* Base font */
  text-align: center;
  border-radius: 20px;
  box-shadow: 0 12px 40px rgba(0, 0, 0, 0.1); /* Soft shadow for depth */
  max-width: 800px;
  margin: 0 auto;
}

/* Heading text */
.newsletter h1 {
  font-family: 'Monument Extended', sans-serif; /* Heading font */
  font-size: 48px;
  font-weight: 900; /* Ultra Bold */
  color: #ffcc00; /* Golden yellow for an elegant, luxurious feel */
  letter-spacing: 2px;
  margin-bottom: 20px;
  text-transform: uppercase;
  text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.2); /* Subtle shadow for a 3D effect */
}

/* Paragraph text */
.newsletter p {
  font-size: 18px;
  color: #f1f1f1;
  line-height: 1.6;
  margin-bottom: 30px;
  font-weight: 300;
  max-width: 700px;
  margin-left: auto;
  margin-right: auto;
  text-shadow: 1px 1px 3px rgba(0, 0, 0, 0.2);
}

/* Email input field */
.newsletter input[type="email"] {
  width: 80%;
  padding: 15px 25px;
  margin-bottom: 20px;
  border: 2px solid #ffcc00; /* Gold border for elegance */
  border-radius: 40px;
  background-color: transparent;
  color: #fff; /* White text */
  font-size: 16px;
  font-weight: 400;
  outline: none;
  box-sizing: border-box;
  transition: all 0.3s ease-in-out;
}

/* Hover effect for email input */
.newsletter input[type="email"]:hover, 
.newsletter input[type="email"]:focus {
  border-color: #b68d40; /* Slightly darker gold on focus */
  background-color: rgba(255, 255, 255, 0.1); /* Subtle background change */
}

/* Button styling */
.newsletter button {
  background-color: #ffcc00; /* Golden yellow button */
  color: #1b4d3e; /* Dark green text for contrast */
  font-size: 18px;
  font-weight: 700;
  padding: 16px 40px;
  border: none;
  border-radius: 50px; /* Rounder button for a modern look */
  text-transform: uppercase;
  cursor: pointer;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2); /* Shadow for button depth */
  transition: all 0.3s ease;
}

/* Button hover effect */
.newsletter button:hover {
  background-color: #b68d40; /* Darker gold on hover */
  transform: translateY(-4px); /* Lift effect */
}

/* Responsive Design: Email input field and button on mobile */
@media (max-width: 600px) {
  .newsletter {
    padding: 40px 20px;
  }
  .newsletter h1 {
    font-size: 36px;
  }
  .newsletter p {
    font-size: 16px;
  }
  .newsletter input[type="email"], 
  .newsletter button {
    width: 90%; /* Full width on small screens */
    margin-left: auto;
    margin-right: auto;
  }
}

}
#fw-section-hero-video-a391c3d6-dad6-476e-9b6b-c47db628459c {

/* Headline Styling */
h1 {
    font-size: 60px;
    color: #D8F3FF; /* Icy Winter Blue */
    text-shadow: 3px 3px 5px rgba(0, 0, 0, 0.7);
}

/* Button Styling */
.button {
    background-color: #9c0707; /* Match red with the "Claim Yours" button */
    color: #1d1d1d; /* Match text color */
    font-weight: bold;
    text-transform: uppercase;
    padding: 12px 20px;
    border-radius: 10px; /* Rounded edges */
    box-shadow: 0 6px #1d1d1d; /* 3D shadow effect */
    margin: 5px auto;
    transition: transform 0.2s ease, box-shadow 0.2s ease; /* Smooth hover/active animations */
}

/* Hover Effect */
.button:hover {
    background-color: #8E1313; /* Slightly darker crimson */
    transform: translateY(-3px); /* Lift on hover */
    box-shadow: 0px 9px #1d1d1d; /* Deeper shadow */
}

/* Active (Press) Effect */
.button:active {
    transform: translateY(3px); /* Press effect */
    box-shadow: 0px 3px #1d1d1d; /* Shorter shadow */
}

/* Video Overlay */
.video-overlay {
    background: rgba(0, 0, 0, 0.5); /* Dark semi-transparent overlay */
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
}

/* Social Icons */
.social-icons {
    display: flex;
    justify-content: center;
    gap: 10px;
    margin-top: 10px;
}

.social-icons img {
    width: 20px;
    height: 20px;
}

/* Responsive Adjustments */
@media (max-width: 768px) {
    .button {
        font-size: 12px;
        padding: 6px 10px; /* Smaller padding for smaller screens */
    }
    .social-icons {
        gap: 8px; /* Adjust spacing for icons */
    }
} 

/* Headline Styling */
h1 {
    font-size: 55px; /* Font size set to 55px */
    color: #D8F3FF; /* Icy Winter Blue */
    text-shadow: 3px 3px 5px rgba(0, 0, 0, 0.7);
    margin-left: -10px; /* Move heading slightly to the left */
}
}


#fw-section-rich-text-7a8d51ba-18fd-4bc8-af0d-750522975101 {

.your-class-name {
  white-space: nowrap; /* Prevents the text from wrapping */
  width: 100%; /* Ensures the container is wide enough */
  overflow: hidden; /* Hides any overflow */
  text-overflow: ellipsis; /* Optionally adds '...' if text overflows */
  display: block; /* Ensures the text behaves like a block element */
}
}











#fw-section-custom-html-2e636b20-3d7f-4cd1-bd50-1ff99f7f4050 {

/* General Body Styling */
body {
  margin: 0;
  font-family: Arial, sans-serif;
  background-color: #0a0a0a;
  color: #f4ebd0;
  height: 200vh; /* Placeholder height for full page */
}

/* Split Scroll Section */
.split-scroll-section {
  display: flex;
  height: 70vh; /* Adjust the height to take up only a portion of the page */
  width: 100%;
  position: relative; /* Allows content above and below */
}

.split-scroll {
  flex: 1;
  padding: 20px;
  overflow-y: auto; /* Allows independent scrolling for each side */
  scrollbar-width: thin;
  scrollbar-color: #b68d40 #0a0a0a;
}

.split-scroll::-webkit-scrollbar {
  width: 6px;
}

.split-scroll::-webkit-scrollbar-thumb {
  background: #b68d40;
  border-radius: 10px;
}

/* Left Section Styling */
.left-scroll {
  background-color: #1b4d3e; /* Dark green for contrast */
}

.right-scroll {
  background-color: #b68d40; /* Gold for contrast */
}

/* Collection Titles and Descriptions */
.split-scroll h2 {
  font-size: 24px;
  margin-bottom: 10px;
  text-transform: uppercase;
  color: #f4ebd0;
}

.split-scroll p {
  font-size: 16px;
  margin-bottom: 20px;
  color: #f4ebd0;
}

/* Collection List */
.collection-list {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.collection-item {
  background: #0a0a0a;
  color: #f4ebd0;
  padding: 15px;
  border: 2px solid #b68d40;
  border-radius: 10px;
  text-align: center;
  font-size: 18px;
  text-transform: uppercase;
  transition: transform 0.3s, background 0.3s;
}

.collection-item:hover {
  transform: scale(1.05);
  background: #f4ebd0;
  color: #0a0a0a;
}

/* Content Below Split Section */
.after-split {
  height: 100vh; /* Placeholder content to show below the split section */
  background: #0a0a0a;
  color: #f4ebd0;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  font-size: 24px;
}
}
#fw-section-rich-text-8b496e85-f782-40dc-9766-91ee44abe151 {

/* General Body Styling */
body {
  background-color: #1b4d3e; /* Deep green background */
  font-family: "Quillon", sans-serif;
  color: #f1f1f1; /* Light off-white for better contrast */
  line-height: 1.8;
  margin: 0;
  padding: 20px;
  display: flex;
  justify-content: center;
  align-items: center;
  min-height: 100vh;
}

/* Container for Content */
.container {
  max-width: 800px;
  padding: 40px;
  background: rgba(255, 255, 255, 0.05); /* Subtle glass-like overlay */
  border-radius: 15px;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.3);
  border: 1px solid rgba(255, 255, 255, 0.2); /* Elegant border */
}

/* Heading Style */
h1 {
  font-family: "Rakkas", serif;
  font-size: 2.5em;
  text-transform: uppercase;
  color: #d4af37; /* Gold color for a luxury vibe */
  text-align: center;
  margin-bottom: 20px;
}

/* Transparent Serpent Style */
.transparent-serpent {
  font-size: 2em;
  text-transform: uppercase;
  background: linear-gradient(to right, #d4af37, #f1f1f1); /* Gold to white gradient */
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  text-align: center;
  margin-bottom: 30px;
}

/* Paragraph Style */
p {
  font-size: 1.2em;
  color: #e8e8e8; /* Soft white for readability */
  text-align: justify;
  margin-bottom: 20px;
  line-height: 1.8;
}
}





#fw-section-custom-html-9a7bf442-3717-40f8-a86b-6fe931a35354 {

/* Importing the Monument Extended font with Ultra Bold weight */
@import url('https://fonts.googleapis.com/css2?family=Monument+Extended:wght@900&display=swap');

/* Styling for Link 4 (Button-like appearance) */
#link-4 {
  font-family: 'Monument Extended', sans-serif; /* Use Monument Extended font */
  font-weight: 900; /* Ultra Bold */
  font-size: 1rem; /* Smaller font size for a more button-like look */
  color: #4ae1b7; /* Neon color for the link */
  text-decoration: none; /* Remove underline */
  text-transform: uppercase; /* Uppercase text */
  text-shadow: 0 0 10px #4ae1b7, 0 0 20px #00ffaa, 0 0 30px #00ffdd; /* Original strong neon glow effect */
  background-color: #000000; /* Black background */
  padding: 12px 25px; /* More padding for a button-like appearance */
  border-radius: 30px; /* Round edges for a button effect */
  display: inline-block; /* Ensures the link behaves like a block element */
  transition: text-shadow 0.3s ease, transform 0.3s ease, background-color 0.3s ease; /* Smooth transition on hover */
  cursor: pointer; /* Cursor as a pointer to indicate clickability */
  margin-top: -40px; /* Move the link up further (up 40px) */
}

#link-4:hover {
  text-shadow: 0 0 20px #4ae1b7, 0 0 40px #00ffcc, 0 0 50px #00ffaa; /* Intensified glow on hover */
  transform: scale(1.1); /* Slightly enlarges the link */
  background-color: #1a1a1a; /* Darker background on hover to add contrast */
}

#link-4:active {
  transform: scale(1); /* Return to original size when clicked */
  text-shadow: 0 0 15px #4ae1b7, 0 0 30px #00ffaa, 0 0 40px #00ffdd; /* Subtle glow effect when clicked */
}

/* Optional: General link styling (if you want this for other links as well) */
a {
  text-decoration: none; /* Remove underline from all links */
}
}












#fw-section-rich-text-8a8282fc-88ea-4f01-84a6-d5442ae093ac {

/* Subheading Styling */
h3 {
  font-family: "Rakkas", serif;
  font-size: 1.8em;
  text-transform: uppercase;
  color: #f1f1f1; /* Soft white */
  text-align: center;
  margin: 30px 0 15px;
  border-top: 2px solid #d4af37; /* Gold separator above */
  border-bottom: 2px solid #d4af37; /* Gold separator below */
  padding: 10px 0;
}

/* Paragraph Styling (Inherits Global Styles) */
p {
  font-size: 1.2em;
  color: #e8e8e8; /* Soft white */
  text-align: justify;
  margin-bottom: 20px;
  line-height: 1.8;
}
}



#fw-section-featured-collection-0 {

/* Price Styling */
.product-card .price {
  font-size: 1.5em; /* Increase font size */
  font-weight: bold;
  color: #b68d40; /* Keep the premium gold color */
  margin-top: 10px;
}   


}