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

body {
    font-family: Arial, sans-serif;
}

/* Navbar Styles */
.navbar {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    background-color: white;
    box-shadow: 0 2px 5px rgba(0,0,0,0.1);
    transition: all 0.3s ease;
    z-index: 1000;
}

.navbar.scrolled {
    padding: 5px 0;
}

.navbar-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 15px 20px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    transition: padding 0.3s ease;
    position: relative;
}

.logo {
    display: flex;
    align-items: center;
}

.logo a {
    display: block;
    text-decoration: none;
}

.logo img {
    height: 50px;
    transition: height 0.3s ease;
}

.navbar.scrolled .logo img {
    height: 40px;
}

.hamburger {
    display: none;
    flex-direction: column;
    justify-content: space-between;
    width: 30px;
    height: 21px;
    background: transparent;
    border: none;
    cursor: pointer;
    padding: 0;
    z-index: 1001;
}

.hamburger span {
    width: 100%;
    height: 3px;
    background-color: #333;
    border-radius: 3px;
    transition: all 0.3s ease;
}

.nav-menu-container {
    display: flex;
    align-items: center;
}

.nav-menu {
    display: flex;
    list-style: none;
    gap: 2rem;
    margin: 0;
    padding: 0;
}

.nav-menu li {
    margin: auto 0;
}

.nav-menu li a {
    color: #333;
    text-decoration: none;
    font-size: 1.5rem;
    font-weight: 700;
    font-family: 'Amatic SC', cursive;
    transition: color 0.3s ease;
    padding: 0 0;
    position: relative;
    line-height: normal;
    display: flex;
    align-items: center;
    justify-content: center;
}

.nav-menu li a:hover {
    color: #D778B4;
}

.nav-menu li a::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 2px;
    background-color: #D778B4;
    transition: width 0.3s ease;
}

.nav-menu li a:hover::after {
    width: 100%;
}

/* Slider Styles */
.slider-background {
    width: 100%;
    position: relative;
    transition: background-image 0.5s ease;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
}

.slider-background::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    transition: opacity 0.5s ease;
    z-index: -1;
    min-height: 100vh;
}

.slider-container {
    margin-top: 80px;
    position: relative;
    width: 100%;
    max-height: 550px;
    margin-left: auto;
    margin-right: auto;
    overflow: hidden;
    background: rgba(255, 255, 255, 0.4);
    padding: 20px;
    border-radius: 10px;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    backdrop-filter: blur(1px);
}

.slider {
    display: flex;
    max-height: 550px;
    width: 100%;
    transition: transform 0.5s ease;
}

.slide {
    min-width: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
}

.slide img {
    min-width: 450px;
    max-height: 550px;
    height: auto;
    display: block;
    max-height: 100vh;
    object-fit: contain;
}

.slider-button {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background: rgba(255, 255, 255, 0.7);
    border: none;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    cursor: pointer;
    font-size: 18px;
    transition: background-color 0.3s ease;
}

.slider-button:hover {
    background: rgba(255, 255, 255, 0.9);
}

.prev {
    left: 20px;
}

.next {
    right: 20px;
}

/* Mobile Menu Styles */
@media (max-width: 768px) {
    .hamburger {
        display: flex;
        position: absolute;
        right: 15px;
        top: 50%;
        transform: translateY(-50%);
    }

    .nav-menu-container {
        position: fixed;
        top: 0;
        right: -100%;
        width: 100%;
        height: 100vh;
        background-color: white;
        padding: 80px 20px 20px;
        transition: right 0.3s ease;
        z-index: 1000;
        overflow-y: auto;
    }

    .nav-menu-container.active {
        right: 0;
    }

    .nav-menu {
        flex-direction: column;
        align-items: center;
        gap: 2rem;
    }

    .nav-menu li a {
        font-size: 2rem;
        display: block;
        padding: 10px 0;
    }

    /* Hamburger Animation */
    .hamburger.active span:nth-child(1) {
        transform: translateY(9px) rotate(45deg);
    }

    .hamburger.active span:nth-child(2) {
        opacity: 0;
    }

    .hamburger.active span:nth-child(3) {
        transform: translateY(-9px) rotate(-45deg);
    }

    .navbar-container {
        padding: 10px 15px;
        justify-content: center;
    }
}

/* Value Proposition Styles */
.value-proposition {
    padding: 80px 20px;
    background-color: #f8f9fa;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
}

/* .value-proposition h2 {
    text-align: center;
    font-size: 3.5rem;
    color: #333;
    margin-bottom: 60px;
    font-weight: 700;
    font-family: 'Amatic SC', cursive;
    line-height: 1.2;
} */

.features-horizontal {
    display: flex;
    flex-direction: column;
    gap: 30px;
    max-width: 800px;
    margin: 0 auto;
}

.feature-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 20px;
    padding: 20px;
    background: white;
    border-radius: 10px;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease;
    text-align: center;
}

.feature-item:hover {
    transform: translateY(5px);
}

.feature-item h3 {
    font-family: 'Amatic SC', cursive;
    font-size: 2.2rem;
}

.feature-header {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 10px;
}

.feature-icon {
    font-size: 2.5rem;
    flex-shrink: 0;
}

.feature-content {
    flex-grow: 1;
    text-align: center;
}

.feature-content h3 {
    color: #333;
    font-size: 2.5rem;
    margin-bottom: 10px;
    font-weight: 700;
    font-family: 'Amatic SC', cursive !important;
    line-height: 1.2;
}

.feature-content p {
    color: #666;
    line-height: 1.6;
    font-size: 1.1rem;
    text-align: center;
}

@media (max-width: 768px) {
    .value-proposition {
        padding: 40px 20px;
    }

    .value-proposition h2 {
        font-size: 2.5rem;
        margin-bottom: 40px;
    }

    .feature-item {
        padding: 15px;
    }

    .feature-icon {
        font-size: 2rem;
    }

    .feature-content h3 {
        font-size: 1.8rem;
    }

    .feature-content p {
        font-size: 1rem;
    }
}

html {
    scroll-behavior: smooth;
    scroll-padding-top: 80px;
}

/* Home Section */
#home {
    padding-top: 80px;
    margin-top: -80px;
}

/* Section Styles */
.section {
    padding: 40px 0;
    background-color: #fcfcfc;
}

.section:nth-child(odd) {
    background-color: #f8f9fa;
}

.section-title {
    font-family: 'Amatic SC', cursive;
    font-size: 2.5rem;
    font-weight: 700;
    text-align: center;
    margin-bottom: 50px;
    color: #333;
}

/* Products Section */
.product-category {
    margin-bottom: 60px;
}

.product-category:last-child {
    margin-bottom: 0;
}

.category-title {
    font-family: 'Amatic SC', cursive;
    font-size: 2.8rem;
    font-weight: 700;
    text-align: center;
    margin: 0;
    padding: 20px 0;
    color: #333;
}

.category-title-wrapper {
    width: 100%;
    margin-bottom: 0;
}

.category-title-personalized.category-title-wrapper {
}

.category-title-personalized .category-title {
    color: #333;
}

.category-title-business.category-title-wrapper {
}

.category-title-business .category-title {
    color: #333;
}

.category-title-ourdesign.category-title-wrapper {
}

.category-title-ourdesign .category-title {
    color: #333;
}

.products-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
    padding: 0 20px;
}

.product-card {
    background: white;
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease;
    display: flex;
    flex-direction: column;
    padding-bottom: 20px;
}

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

.product-card img {
    width: 100%;
    height: 300px;
    object-fit: cover;
}

.product-card h3 {
    font-family: 'Amatic SC', cursive;
    font-size: 2rem;
    font-weight: 700;
    padding: 20px 20px 10px;
    text-align: center;
}

.product-card p {
    padding: 0 20px 20px;
    color: #666;
    line-height: 1.6;
}

.card-cta {
    padding: 0 20px 20px;
    text-align: center;
}

.product-card .cta-button {
    width: 100%;
    font-size: 1.1rem;
    padding: 10px 0;
}

.cta-button-personalized {
    background-color: #D778B4;
}

.cta-button-business {
    background-color: #333 !important;
}

/* .cta-button-ourdesign {
    background-color: #f0f0f0 !important;
    color: #333;
} */

.cta-button-ourdesign:hover {
    color: #fff;
}

.product-category-personalized .product-card p,
.product-category-business .product-card p,
.product-category-ourdesign .product-card p {
    color: #666;
}

/* About Section */
.about-content {
    max-width: 800px;
    margin: 0 auto;
    padding: 0 20px;
}

.about-text p {
    font-size: 1.2rem;
    line-height: 1.8;
    color: #666;
    margin-bottom: 20px;
    text-align: center;
}

/* Contact Section */
.contact-content {
    max-width: 600px;
    margin: 0 auto;
    padding: 0 20px;
}

.contact-info {
    display: flex;
    flex-direction: column;
    gap: 30px;
}

.contact-item {
    display: flex;
    align-items: center;
    gap: 20px;
    padding: 20px;
    background: white;
    border-radius: 10px;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
}

.contact-icon {
    font-size: 2rem;
}

.contact-item p,
.contact-link {
    font-size: 1.2rem;
    color: #333;
    margin: 0;
    text-decoration: none;
    transition: color 0.3s ease;
}

.contact-link:hover {
    color: #666;
}

/* Responsive Design */
@media (max-width: 768px) {
    .section {
        padding: 40px 0;
    }

    .section-title {
        font-size: 2.5rem;
        margin-bottom: 30px;
    }

    .product-card h3 {
        font-size: 1.8rem;
    }

    .about-text p {
        font-size: 1.1rem;
    }

    .contact-item {
        padding: 15px;
    }

    .contact-icon {
        font-size: 1.5rem;
    }

    .contact-item p {
        font-size: 1.1rem;
    }
}

/* CTA Section */
.cta-section {
    /* background-color: #E9D7F3; */
    padding: 80px 20px;
    text-align: center;
}

/* .cta-section h2 {
    font-family: 'Amatic SC', cursive;
    font-size: 3.5rem;
    font-weight: 700;
    color: #333;
    margin-bottom: 20px;
} */

.cta-section p {
    font-size: 1.2rem;
    color: #666;
    margin-bottom: 40px;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

.cta-button {
    display: inline-block;
    background-color: #D778B4;
    color: white;
    padding: 15px 40px;
    font-size: 1.2rem;
    font-weight: 700;
    text-decoration: none;
    border-radius: 30px;
    transition: all 0.3s ease;
    box-shadow: 0 4px 6px rgba(215, 120, 180, 0.2);
    font-family: 'Amatic SC', cursive;
}

.cta-button:hover {
    background-color: #c066a2;
    transform: translateY(-2px);
    box-shadow: 0 6px 12px rgba(215, 120, 180, 0.3);
}

@media (max-width: 768px) {
    .cta-section {
        padding: 40px 20px;
    }

    .cta-section h2 {
        font-size: 2.5rem;
    }

    .cta-section p {
        font-size: 1.1rem;
    }

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

.nav-cta {
    margin-left: 20px;
}

.nav-cta .cta-button {
    padding: 8px 20px;
    font-size: 1.1rem;
    color: white;
    font-weight: 700;
    font-family: 'Amatic SC', cursive;
}

.nav-cta .cta-button::after {
    display: none;
}

.nav-cta .cta-button:hover {
    color: white;
}

/* Contact Section CTA */
.contact-cta {
    text-align: center;
    margin-top: 40px;
}

.contact-cta .cta-button {
    padding: 15px 40px;
    font-size: 1.2rem;
}

@media (max-width: 768px) {
    .nav-cta {
        margin: 20px 0 0 0;
    }

    .nav-cta .cta-button {
        display: block;
        text-align: center;
    }

    .contact-cta {
        margin-top: 30px;
    }

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

/* Testimonials Section */
.testimonials-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    padding: 0 20px;
}

.testimonial-card {
    background: white;
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease;
}

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

.testimonial-card img {
    width: 100%;
    height: 300px;
    object-fit: cover;
}

.testimonial-text {
    padding: 20px;
    font-size: 1.1rem;
    color: #666;
    line-height: 1.6;
    font-style: italic;
    text-align: center;
}

.testimonial-author {
    padding: 0 20px 20px;
    color: #333;
    font-weight: 600;
    text-align: center;
}

.testimonial-cta {
    text-align: center;
    margin-top: 40px;
}

.testimonial-cta .cta-button {
    padding: 15px 40px;
    font-size: 1.2rem;
}

@media (max-width: 768px) {
    .testimonials-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }

    .testimonial-card img {
        height: 250px;
    }

    .testimonial-text {
        font-size: 1rem;
        padding: 15px;
    }

    .testimonial-author {
        padding: 0 15px 15px;
    }

    .testimonial-cta {
        margin-top: 30px;
    }

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

.purple {
    color: #D778B4;
}

.cta-logo {
    display: block;
    margin: 20px auto;
    max-width: 150px; /* Adjust size as needed */
}

.price-container {
    text-align: center;
    margin: 15px 0;
    /* background-color: #f1f1f1; */
}

.price-per-magnet {
    font-size: 1.4em;
    /* font-weight: bold; */
    color: #333;
    margin-bottom: 3px;
    line-height: 1.2;
}

.per-unit {
    font-size: 0.5em;
    color: #666;
    font-weight: normal;
    vertical-align: middle;
    margin-left: 5px;
}

.total-price {
    /* font-size: 1.1em; */
    /* color: #555; */
    /* margin: 5px 0; */
    padding: 10px !important;
    /* padding-bottom: 0px !important; */
}

.original-price {
    color: #28a745;
    font-size: 1em;
    margin-top: 5px;
}

p.price-per-magnet {
    color: #D778B4;
}

#pricing {
    background-color: #E9D7F3;
}

#pricing .card-cta {
    /* padding: 0 20px; */
}

#pricing .product-card {
    padding-bottom: 0 !important;
}

/* Bundle Number Styles */
.bundle-number {
    display: inline-block;
    background-color: #777;
    color: #fff;
    font-size: 1.9em;
    font-weight: bold;
    width: 80px;
    height: 80px;
    line-height: 80px;
    text-align: center;
    border-radius: 50%;
    margin-bottom: 10px;
}

/* Pricing Discount Pill */
.discount {
    display: inline-block;
    background-color: #D778B4;
    color: white;
    font-size: 0.9em;
    font-weight: bold;
    padding: 3px 8px;
    border-radius: 15px;
    margin-top: 5px;
    margin-bottom: 10px;
}

/* Delivery Table Styles */
#pricing table {
    width: 100%;
    border-collapse: collapse;
    margin-top: 30px;
    margin-bottom: 20px;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.08);
    background-color: white;
    border-radius: 8px;
    overflow: hidden; /* Ensures rounded corners apply to children */
}

#pricing th,
#pricing td {
    padding: 12px 15px;
    text-align: left;
    border-bottom: 1px solid #ddd;
}

#pricing th {
    background-color: #f2f2f2;
    font-weight: bold;
    color: #333;
}

#pricing tbody tr:nth-child(even) {
    background-color: #f9f9f9;
}

#pricing tbody tr:hover {
    background-color: #e9e9e9;
}

#pricing td:last-child {
    color: #555;
}

.amatic {
    font-family: 'Amatic SC', cursive;
    color: #D778B4
}

/* Notes Styles */
#pricing-notes h3 {
    font-family: 'Amatic SC', cursive;
    font-size: 2rem; /* Adjusted size to fit better */
    font-weight: 700;
    color: #333; /* Dark color */
    margin-top: 30px; /* Space above the heading */
    margin-bottom: 10px; /* Space below the heading */
    text-align: center; /* Center the notes heading */
}

#pricing-notes p {
    font-size: 1.1rem; /* Adjusted size */
    line-height: 1.6;
    color: #555; /* Slightly lighter color */
    margin-bottom: 8px; /* Space between paragraphs */
    text-align: center; /* Center the notes paragraphs */
}

#pricing-notes p:last-child {
    margin-bottom: 0; /* No bottom margin for the last paragraph */
}

/* Pricing Benefits Styles */
.pricing-benefits {
    margin-top: 15px; /* Space above the benefits list */
    text-align: center; /* Center the benefits */
}

.pricing-benefit-item {
    font-size: 1em; /* Adjusted font size */
    color: #555; /* Color for the text */
    margin-bottom: 5px; /* Space between benefit items */
    list-style: none; /* Remove default list style */
    padding-left: 0; /* Remove default padding */
}

/* Style for the checkmark */
.pricing-benefit-item::before {
    content: '✓'; /* Checkmark character */
    color: #28a745; /* Green color for checkmark */
    font-weight: bold;
    display: inline-block;
    width: 1em; /* Fixed width for checkmark */
    margin-right: 5px; /* Space between checkmark and text */
}

#pricing h3 {
    font-family: 'Amatic SC', cursive;
    font-size: 2rem; /* Adjusted size to fit better */
}

p.pricing-benefit-item {
    padding: 0 !important;
}

/* Additional Pricing Notes Styles */
#additional-pricing-notes {
    margin-top: 30px; /* Space above the section */
}

#additional-pricing-notes h3 {
    font-family: 'Amatic SC', cursive;
    font-size: 2rem; /* Consistent with other headings */
    font-weight: 700;
    color: #333; /* Dark color */
    margin-bottom: 10px; /* Space below the heading */
    text-align: center; /* Center the heading */
}

#additional-pricing-notes table {
    width: 100%;
    border-collapse: collapse;
    margin-bottom: 20px;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.08);
    background-color: white;
    border-radius: 8px;
    overflow: hidden;
}

#additional-pricing-notes th,
#additional-pricing-notes td {
    padding: 12px 15px;
    text-align: left;
    border-bottom: 1px solid #ddd;
}

#additional-pricing-notes th {
    background-color: #f2f2f2;
    font-weight: bold;
    color: #333;
}

#additional-pricing-notes tbody tr:nth-child(even) {
    background-color: #f9f9f9;
}

#additional-pricing-notes tbody tr:hover {
    background-color: #e9e9e9;
}

#additional-pricing-notes td:last-child {
    color: #555;
}