/* Base styles */
:root {
    --primary-color: #ff006e;
    --light-shade: #ffe6f2;
    --dark-shade: #b8004f;
    --border-radius: 10px;
}

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

body {
    font-family: 'Lato', sans-serif;
    font-size: 16px;
    line-height: 1.5;
    color: var(--dark-shade);
    background-color: var(--light-shade);
}

h1, h2, h3, h4, h5, h6 {
    font-family: 'Playfair Display', serif;
    color: var(--dark-shade);
}

.Container {
    width: 90%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 15px;
}

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

img {
    max-width: 100%;
    height: auto;
    border-radius: var(--border-radius);
}

/* Buttons */
.ButtonPrimary {
    display: inline-block;
    background-color: var(--primary-color);
    color: white;
    padding: 12px 25px;
    border-radius: var(--border-radius);
    font-weight: 700;
    transition: all 0.3s ease;
}

.ButtonPrimary:hover {
    background-color: var(--dark-shade);
}

.ButtonSecondary {
    display: inline-block;
    background-color: transparent;
    color: var(--primary-color);
    padding: 10px 20px;
    border: 2px solid var(--primary-color);
    border-radius: var(--border-radius);
    font-weight: 700;
    transition: all 0.3s ease;
}

.ButtonSecondary:hover {
    background-color: var(--primary-color);
    color: white;
}

/* Header & Navigation */
.Header {
    background-color: white;
    padding: 15px 0;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
}

.navbar {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 15px 0;
    position: relative;
}

.NavbarBrand img {
    max-height: 50px;
}

.nav-toggle {
    display: none;
}

.nav-toggle-label {
    display: none;
}

.hamburger {
    width: 30px;
    height: 3px;
    background: var(--primary-color);
    position: relative;
    transition: all 0.3s ease;
}

.hamburger:before,
.hamburger:after {
    content: '';
    position: absolute;
    width: 30px;
    height: 3px;
    background: var(--primary-color);
    transition: all 0.3s ease;
}

.hamburger:before {
    top: -8px;
}

.hamburger:after {
    top: 8px;
}

.NavbarNav {
    display: flex;
    list-style: none;
    gap: 30px;
}

.nav-link {
    color: var(--dark-shade);
    font-weight: 500;
    position: relative;
    transition: color 0.3s;
}

.nav-link:hover {
    color: var(--primary-color);
}

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

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

/* Hero Section */
.HeroBanner {
    background-image: url('../img/apparel_store_shopping_experience_customers_1.webp');
    background-size: cover;
    background-position: center;
    color: white;
    padding: 100px 0;
    margin-bottom: 60px;
    position: relative;
}

.HeroBanner:after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.5);
    z-index: 1;
}

.HeroContent {
    position: relative;
    z-index: 2;
    max-width: 600px;
    margin-left: 10%;
}

.HeroContent h1 {
    font-size: 2.5rem;
    margin-bottom: 20px;
    color: white;
}

.HeroContent p {
    font-size: 1.2rem;
    margin-bottom: 30px;
    color: rgba(255, 255, 255, 0.9);
}

/* Featured Collection */
.FeaturedCollection {
    padding: 60px 0;
}

.SectionTitle {
    text-align: center;
    font-size: 2rem;
    margin-bottom: 40px;
    position: relative;
}

.SectionTitle:after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 50%;
    transform: translateX(-50%);
    width: 80px;
    height: 3px;
    background-color: var(--primary-color);
}

.ProductGrid {
    display: flex;
    flex-wrap: wrap;
    gap: 30px;
    justify-content: center;
}

.ProductCard {
    background-color: white;
    border-radius: var(--border-radius);
    overflow: hidden;
    width: calc(33.333% - 20px);
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease;
    padding-bottom: 20px;
}

.ProductCard:hover {
    transform: translateY(-10px);
}

.ProductImage {
    height: 250px;
    overflow: hidden;
}

.ProductImage img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.ProductCard:hover .ProductImage img {
    transform: scale(1.1);
}

.ProductTitle {
    padding: 20px 20px 10px;
    font-size: 1.2rem;
}

.ProductDescription {
    padding: 0 20px 15px;
    color: #666;
}

.ProductPrice {
    display: block;
    padding: 0 20px 15px;
    font-weight: 700;
    color: var(--primary-color);
}

.ProductCard .ButtonSecondary {
    margin: 0 20px;
}

/* Shopping Experience */
.ShoppingExperience {
    padding: 60px 0;
    background-color: white;
}

.ExperienceContent {
    display: flex;
    align-items: center;
    gap: 40px;
}

.ExperienceImage {
    flex: 1;
}

.ExperienceText {
    flex: 1;
}

.ExperienceText h2 {
    margin-bottom: 20px;
    font-size: 1.8rem;
}

.ExperienceText p {
    margin-bottom: 15px;
}

.ExperienceText .ButtonPrimary {
    margin-top: 20px;
}

/* Category Grid */
.CollectionShowcase {
    padding: 60px 0;
}

.CategoryGrid {
    display: flex;
    gap: 20px;
}

.CategoryCard {
    position: relative;
    flex: 1;
    height: 350px;
    overflow: hidden;
    border-radius: var(--border-radius);
}

.CategoryCard img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.CategoryCard:hover img {
    transform: scale(1.1);
}

.CategoryCard h3 {
    position: absolute;
    bottom: 60px;
    left: 20px;
    color: white;
    z-index: 2;
    text-shadow: 1px 1px 3px rgba(0, 0, 0, 0.6);
}

.CategoryLink {
    position: absolute;
    bottom: 20px;
    left: 20px;
    background-color: var(--primary-color);
    color: white;
    padding: 5px 15px;
    border-radius: var(--border-radius);
    transition: all 0.3s ease;
    z-index: 2;
}

.CategoryLink:hover {
    background-color: var(--dark-shade);
}

.CategoryCard:after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(to top, rgba(0, 0, 0, 0.7), transparent);
}

/* Style Advice */
.StyleAdvice {
    padding: 60px 0;
    background-color: white;
}

.AdviceContent h2 {
    text-align: center;
    margin-bottom: 15px;
    font-size: 2rem;
}

.AdviceContent > p {
    text-align: center;
    max-width: 700px;
    margin: 0 auto 40px;
}

.AdviceOptions {
    display: flex;
    gap: 25px;
    justify-content: center;
}

.AdviceCard {
    background-color: var(--light-shade);
    padding: 30px;
    border-radius: var(--border-radius);
    text-align: center;
    flex: 1;
    max-width: 350px;
    transition: transform 0.3s ease;
}

.AdviceCard:hover {
    transform: translateY(-10px);
}

.AdviceCard h3 {
    margin-bottom: 15px;
}

.AdviceCard p {
    margin-bottom: 20px;
    min-height: 50px;
}

.AdvicePrice {
    display: block;
    font-weight: 700;
    margin-bottom: 20px;
    color: var(--primary-color);
}

/* Customer Reviews */
.CustomerReviews {
    padding: 60px 0;
    background-color: var(--light-shade);
}

.ReviewsGrid {
    display: flex;
    gap: 30px;
}

.ReviewCard {
    flex: 1;
    background-color: white;
    padding: 25px;
    border-radius: var(--border-radius);
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
}

.ReviewText {
    font-style: italic;
    margin-bottom: 15px;
    position: relative;
    padding-left: 20px;
}

.ReviewText:before {
    content: '"';
    position: absolute;
    left: 0;
    top: 0;
    font-size: 30px;
    color: var(--primary-color);
    line-height: 1;
}

.ReviewAuthor {
    text-align: right;
    font-weight: 700;
}

/* Newsletter */
.Newsletter {
    padding: 60px 0;
    background-color: var(--primary-color);
    color: white;
}

.NewsletterContent {
    text-align: center;
    max-width: 600px;
    margin: 0 auto;
}

.NewsletterContent h2 {
    color: white;
    margin-bottom: 15px;
}

.NewsletterContent p {
    margin-bottom: 30px;
}

.NewsletterForm {
    display: flex;
    max-width: 500px;
    margin: 0 auto;
}

.NewsletterForm input {
    flex: 1;
    padding: 12px 15px;
    border: none;
    border-radius: var(--border-radius) 0 0 var(--border-radius);
    font-family: 'Lato', sans-serif;
}

.NewsletterForm .ButtonPrimary {
    border-radius: 0 var(--border-radius) var(--border-radius) 0;
    background-color: var(--dark-shade);
}

.NewsletterForm .ButtonPrimary:hover {
    background-color: white;
    color: var(--dark-shade);
}

/* Footer */
.Footer {
    background-color: #222;
    color: white;
    padding: 60px 0 20px;
}

.FooterContent {
    display: flex;
    flex-wrap: wrap;
    gap: 40px;
    margin-bottom: 40px;
}

.FooterAbout {
    flex: 2;
}

.FooterLogo {
    max-width: 150px;
    margin-bottom: 15px;
}

.FooterNav, .FooterLegal, .FooterContact {
    flex: 1;
}

.Footer h3 {
    color: white;
    margin-bottom: 20px;
    font-size: 1.2rem;
}

.Footer ul {
    list-style: none;
}

.Footer ul li {
    margin-bottom: 10px;
}

.Footer a {
    color: rgba(255, 255, 255, 0.8);
    transition: color 0.3s;
}

.Footer a:hover {
    color: var(--primary-color);
}

.FooterBottom {
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    padding-top: 20px;
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
}

.Copyright, .CookieConsent {
    color: rgba(255, 255, 255, 0.6);
    font-size: 0.9rem;
}

.CookieConsent a {
    color: var(--primary-color);
}

/* Mobile Navigation */
@media screen and (max-width: 768px) {
    .nav-toggle-label {
        display: block;
        cursor: pointer;
        padding: 15px;
        z-index: 2;
    }

    .nav-wrapper {
        position: fixed;
        top: 0;
        left: -100%;
        width: 100%;
        height: 100vh;
        background: white;
        transition: all 0.3s ease;
        padding-top: 80px;
        z-index: 1;
    }

    .NavbarNav {
        flex-direction: column;
        align-items: center;
        width: 100%;
        gap: 20px;
    }

    .nav-item {
        width: 100%;
        text-align: center;
    }

    .nav-link {
        display: inline-block;
        padding: 10px 20px;
        font-size: 1.2rem;
    }

    .nav-toggle:checked ~ .nav-wrapper {
        left: 0;
    }

    .nav-toggle:checked ~ .nav-toggle-label .hamburger {
        background: transparent;
    }

    .nav-toggle:checked ~ .nav-toggle-label .hamburger:before {
        transform: rotate(45deg);
        top: 0;
    }

    .nav-toggle:checked ~ .nav-toggle-label .hamburger:after {
        transform: rotate(-45deg);
        top: 0;
    }
}

/* Responsive Design */
@media screen and (max-width: 992px) {
    .ProductGrid {
        gap: 20px;
    }

    .ProductCard {
        width: calc(50% - 10px);
    }

    .ExperienceContent {
        flex-direction: column;
    }

    .AdviceOptions, .CategoryGrid, .ReviewsGrid {
        flex-direction: column;
        gap: 20px;
    }

    .AdviceCard {
        max-width: 100%;
    }
}

@media screen and (max-width: 768px) {
    .HeroContent h1 {
        font-size: 2rem;
    }

    .ProductCard {
        width: 100%;
    }

    .FooterContent {
        flex-direction: column;
        gap: 30px;
    }

    .FooterAbout, .FooterNav, .FooterLegal, .FooterContact {
        flex: 1 0 100%;
    }

    .FooterBottom {
        flex-direction: column;
        gap: 15px;
        text-align: center;
    }

    .NewsletterForm {
        flex-direction: column;
        gap: 10px;
    }

    .NewsletterForm input, .NewsletterForm .ButtonPrimary {
        width: 100%;
        border-radius: var(--border-radius);
    }
}

/* Consultation CTA Section */
.ConsultationCta {
    padding: 80px 0;
    background-color: var(--light-shade);
    overflow: hidden;
    position: relative;
}

.CtaWrapper {
    display: flex;
    align-items: center;
    position: relative;
}

.CtaContent {
    flex: 1;
    max-width: 60%;
    padding-right: 40px;
    position: relative;
    z-index: 2;
}

.CtaContent h2 {
    font-size: 2.5rem;
    margin-bottom: 20px;
    color: var(--dark-shade);
}

.CtaContent p {
    font-size: 1.1rem;
    margin-bottom: 25px;
    line-height: 1.6;
}

.CtaBenefits {
    margin-bottom: 30px;
    padding-left: 20px;
}

.CtaBenefits li {
    margin-bottom: 12px;
    position: relative;
    padding-left: 15px;
}

.CtaBenefits li:before {
    content: "";
    position: absolute;
    left: -15px;
    top: 10px;
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background-color: var(--primary-color);
}

.CtaButtons {
    display: flex;
    align-items: center;
    gap: 20px;
}

.CtaPrice {
    font-size: 1.1rem;
    font-weight: 600;
    color: var(--dark-shade);
}

.CtaDesign {
    flex: 1;
    max-width: 40%;
    height: 400px;
    position: relative;
}

.CtaShape {
    position: absolute;
    border: 3px solid var(--primary-color);
}

.ShapeCircle {
    width: 200px;
    height: 200px;
    border-radius: 50%;
    top: 50px;
    right: 50px;
    border-color: var(--primary-color);
    opacity: 0.7;
}

.ShapeSquare {
    width: 150px;
    height: 150px;
    bottom: 70px;
    right: 120px;
    border-color: var(--dark-shade);
    transform: rotate(45deg);
    opacity: 0.5;
}

.ShapeTriangle {
    width: 0;
    height: 0;
    border-left: 100px solid transparent;
    border-right: 100px solid transparent;
    border-bottom: 170px solid var(--primary-color);
    top: 120px;
    right: 180px;
    opacity: 0.3;
    transform: rotate(-15deg);
}

/* Seasonal Collection Preview */
.SeasonalPreview {
    padding: 80px 0;
    background-color: white;
}

.SeasonalHeader {
    text-align: center;
    margin-bottom: 60px;
}

.SeasonalHeader h2 {
    font-size: 2.2rem;
    margin-bottom: 15px;
}

.SeasonalHeader p {
    font-size: 1.1rem;
    color: #666;
    max-width: 600px;
    margin: 0 auto;
}

.SeasonalCategories {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 30px;
}

.SeasonalItem {
    position: relative;
    height: 200px;
}

.SeasonalItemBox {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: var(--light-shade);
    border-radius: var(--border-radius);
    padding: 30px;
    transition: all 0.4s ease;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    overflow: hidden;
}

.SeasonalItemBox:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.1);
    background-color: var(--primary-color);
}

.SeasonalItemBox h3 {
    font-size: 1.5rem;
    margin-bottom: 15px;
    transition: all 0.4s ease;
}

.SeasonalItemBox:hover h3 {
    color: white;
}

.SeasonalItemInfo {
    display: flex;
    justify-content: space-between;
    align-items: flex-end;
}

.SeasonalItemInfo p {
    max-width: 70%;
    transition: all 0.4s ease;
}

.SeasonalItemBox:hover .SeasonalItemInfo p {
    color: white;
}

.ButtonText {
    position: relative;
    font-weight: 600;
    padding-bottom: 3px;
    transition: all 0.3s ease;
}

.ButtonText:after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 2px;
    background-color: var(--primary-color);
    transition: all 0.3s ease;
}

.SeasonalItemBox:hover .ButtonText {
    color: white;
}

.SeasonalItemBox:hover .ButtonText:after {
    background-color: white;
}

/* Contact Section */
.ContactSection {
    padding: 100px 0;
    background-color: var(--light-shade);
    position: relative;
    overflow: hidden;
}

.ContactSection:before {
    content: '';
    position: absolute;
    top: -100px;
    right: -100px;
    width: 300px;
    height: 300px;
    border-radius: 50%;
    background-color: rgba(255, 0, 110, 0.1);
}

.ContactSection:after {
    content: '';
    position: absolute;
    bottom: -100px;
    left: -100px;
    width: 300px;
    height: 300px;
    border-radius: 50%;
    background-color: rgba(255, 0, 110, 0.1);
}

.ContactHeader {
    text-align: center;
    margin-bottom: 60px;
}

.ContactHeader h2 {
    font-size: 2.2rem;
    margin-bottom: 15px;
}

.ContactHeader p {
    font-size: 1.1rem;
    max-width: 700px;
    margin: 0 auto;
    color: #666;
}

.ContactWrapper {
    display: flex;
    gap: 50px;
    position: relative;
    z-index: 2;
}

.ContactForm {
    flex: 2;
    background-color: white;
    padding: 40px;
    border-radius: var(--border-radius);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
}

.FormGroup {
    margin-bottom: 25px;
    position: relative;
}

.FormGroup label {
    display: block;
    margin-bottom: 8px;
    font-weight: 600;
    color: var(--dark-shade);
}

.FormGroup input,
.FormGroup select,
.FormGroup textarea {
    width: 100%;
    padding: 12px 15px;
    border: 2px solid #e0e0e0;
    border-radius: var(--border-radius);
    font-family: 'Lato', sans-serif;
    font-size: 1rem;
    transition: all 0.3s ease;
    background-color: #f9f9f9;
}

.FormGroup input:focus,
.FormGroup select:focus,
.FormGroup textarea:focus {
    outline: none;
    border-color: var(--primary-color);
    background-color: white;
}

.FormDecoration {
    position: absolute;
    bottom: -2px;
    left: 0;
    height: 2px;
    width: 0;
    background-color: var(--primary-color);
    transition: width 0.3s ease;
}

.FormGroup input:focus ~ .FormDecoration,
.FormGroup select:focus ~ .FormDecoration,
.FormGroup textarea:focus ~ .FormDecoration {
    width: 100%;
}

.FormSubmit {
    margin-top: 35px;
}

.FormSubmit .ButtonPrimary {
    padding: 15px 30px;
    font-size: 1.1rem;
}

.ContactInfo {
    flex: 1;
    display: flex;
    flex-direction: column;
    gap: 30px;
    position: relative;
}

.ContactCard {
    background-color: white;
    padding: 30px;
    border-radius: var(--border-radius);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
}

.ContactCard h3 {
    font-size: 1.3rem;
    margin-bottom: 15px;
    color: var(--primary-color);
}

.ContactCard p {
    margin-bottom: 10px;
}

.ContactAccent {
    position: absolute;
    top: 50%;
    left: -20px;
    transform: translateY(-50%);
    width: 40px;
    height: 80%;
    background-color: var(--primary-color);
    border-radius: var(--border-radius);
    opacity: 0.3;
}

/* Responsive Styles */
@media screen and (max-width: 992px) {
    .CtaWrapper {
        flex-direction: column;
    }

    .CtaContent {
        max-width: 100%;
        padding-right: 0;
        margin-bottom: 40px;
    }

    .CtaDesign {
        max-width: 100%;
    }

    .SeasonalCategories {
        grid-template-columns: 1fr;
    }

    .ContactWrapper {
        flex-direction: column;
    }

    .ContactAccent {
        display: none;
    }
}

@media screen and (max-width: 768px) {
    .ConsultationCta {
        padding: 60px 0;
    }

    .CtaContent h2 {
        font-size: 2rem;
    }

    .CtaButtons {
        flex-direction: column;
        align-items: flex-start;
        gap: 15px;
    }

    .ContactForm {
        padding: 30px 20px;
    }
}

/* Shop Page Styles */
.ShopBanner {
    background-color: var(--primary-color);
    padding: 80px 0;
    text-align: center;
    color: white;
    margin-bottom: 60px;
    position: relative;
    overflow: hidden;
}

.ShopBanner:before {
    content: '';
    position: absolute;
    top: -50px;
    right: -50px;
    width: 200px;
    height: 200px;
    border-radius: 50%;
    background-color: rgba(255, 255, 255, 0.1);
}

.ShopBanner:after {
    content: '';
    position: absolute;
    bottom: -80px;
    left: -80px;
    width: 250px;
    height: 250px;
    border-radius: 50%;
    background-color: rgba(255, 255, 255, 0.1);
}

.ShopHeroContent {
    position: relative;
    z-index: 2;
}

.ShopHeroContent h1 {
    font-size: 2.8rem;
    margin-bottom: 15px;
    color: white;
}

.ShopHeroContent p {
    font-size: 1.2rem;
    max-width: 600px;
    margin: 0 auto;
}

/* Shop Categories */
.ShopCategories {
    padding: 40px 0 70px;
}

.CategoryWrapper {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
}

.ShopCategory {
    background-color: var(--light-shade);
    border-radius: var(--border-radius);
    padding: 25px;
    text-align: center;
    transition: all 0.3s ease;
    height: 150px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    position: relative;
    overflow: hidden;
}

.ShopCategory:before {
    content: '';
    position: absolute;
    top: -20px;
    right: -20px;
    width: 80px;
    height: 80px;
    border-radius: 50%;
    background-color: var(--primary-color);
    opacity: 0.2;
    transition: all 0.3s ease;
}

.ShopCategory:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.1);
}

.ShopCategory:hover:before {
    width: 100px;
    height: 100px;
    opacity: 0.3;
}

.ShopCategory h3 {
    font-size: 1.4rem;
    margin-bottom: 20px;
}

.CategoryButton {
    display: inline-block;
    padding: 8px 25px;
    background-color: white;
    color: var(--primary-color);
    border-radius: var(--border-radius);
    font-weight: 600;
    transition: all 0.3s ease;
}

.ShopCategory:hover .CategoryButton {
    background-color: var(--primary-color);
    color: white;
}

/* Style Services */
.StyleServices {
    padding: 80px 0;
    background-color: white;
}

.ServicesHeader {
    text-align: center;
    margin-bottom: 60px;
}

.ServicesHeader h2 {
    font-size: 2.2rem;
    margin-bottom: 15px;
}

.ServicesHeader p {
    font-size: 1.1rem;
    max-width: 700px;
    margin: 0 auto;
    color: #666;
}

.ServicesGrid {
    display: flex;
    flex-direction: column;
    gap: 60px;
}

.ServiceCard {
    display: flex;
    gap: 40px;
    background-color: var(--light-shade);
    border-radius: var(--border-radius);
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
}

.ServiceCardReverse {
    flex-direction: row-reverse;
}

.ServiceImageContainer {
    flex: 1;
    max-width: 40%;
}

.ServiceImageContainer img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 0;
}

.ServiceContent {
    flex: 1.5;
    padding: 40px;
    display: flex;
    flex-direction: column;
}

.ServiceContent h3 {
    font-size: 1.8rem;
    margin-bottom: 15px;
    color: var(--dark-shade);
}

.ServiceDivider {
    width: 60px;
    height: 3px;
    background-color: var(--primary-color);
    margin-bottom: 20px;
}

.ServiceDescription {
    margin-bottom: 20px;
    line-height: 1.6;
}

.ServiceFeatures {
    margin-bottom: 25px;
    padding-left: 20px;
}

.ServiceFeatures li {
    margin-bottom: 8px;
    position: relative;
}

.ServiceFeatures li:before {
    content: "•";
    color: var(--primary-color);
    position: absolute;
    left: -15px;
    font-weight: bold;
}

.ServicePrice {
    margin: auto 0 20px;
    font-size: 1.2rem;
    font-weight: 700;
    color: var(--primary-color);
}

.ServiceContent .ButtonPrimary {
    align-self: flex-start;
}

/* Shop Newsletter */
.ShopNewsletter {
    padding: 60px 0;
    background-color: var(--dark-shade);
    color: white;
}

.NewsletterWrapper {
    max-width: 600px;
    margin: 0 auto;
    text-align: center;
}

.ShopNewsletter h2 {
    color: white;
    font-size: 1.8rem;
    margin-bottom: 15px;
}

.ShopNewsletter p {
    margin-bottom: 25px;
}

/* Responsive Styles */
@media screen and (max-width: 992px) {
    .CategoryWrapper {
        grid-template-columns: repeat(2, 1fr);
    }

    .ServiceCard, .ServiceCardReverse {
        flex-direction: column;
    }

    .ServiceImageContainer {
        max-width: 100%;
        height: 300px;
    }
}

@media screen and (max-width: 768px) {
    .ShopHeroContent h1 {
        font-size: 2rem;
    }

    .CategoryWrapper {
        grid-template-columns: 1fr;
        gap: 15px;
    }

    .ShopCategory {
        height: 120px;
    }

    .ServiceContent {
        padding: 25px;
    }

    .ServiceContent h3 {
        font-size: 1.5rem;
    }
}

/* Thank You Page Styles */
.ThankYouSection {
    min-height: 80vh;
    display: flex;
    align-items: center;
    position: relative;
    overflow: hidden;
    padding: 80px 0;
}

.ThankYouSection:before {
    content: '';
    position: absolute;
    top: -150px;
    right: -150px;
    width: 350px;
    height: 350px;
    border-radius: 50%;
    background-color: rgba(255, 0, 110, 0.1);
    z-index: -1;
}

.ThankYouSection:after {
    content: '';
    position: absolute;
    bottom: -100px;
    left: -100px;
    width: 250px;
    height: 250px;
    border-radius: 50%;
    background-color: rgba(255, 0, 110, 0.1);
    z-index: -1;
}

.ThankYouContent {
    text-align: center;
    max-width: 700px;
    margin: 0 auto;
    background-color: white;
    padding: 60px;
    border-radius: var(--border-radius);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.08);
    position: relative;
    z-index: 1;
}

.ThankYouContent:before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 8px;
    background: linear-gradient(to right, var(--primary-color), var(--dark-shade));
    border-radius: var(--border-radius) var(--border-radius) 0 0;
}

.ThankYouIcon {
    width: 80px;
    height: 80px;
    background-color: var(--light-shade);
    border-radius: 50%;
    margin: 0 auto 30px;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
}

.ThankYouIcon:before {
    content: '✓';
    font-size: 40px;
    color: var(--primary-color);
}

.ThankYouContent h1 {
    font-size: 2.5rem;
    margin-bottom: 20px;
    color: var(--dark-shade);
}

.ThankYouContent p {
    font-size: 1.1rem;
    margin-bottom: 30px;
    line-height: 1.6;
}

.ReturnHomeLink {
    display: inline-block;
    position: relative;
    font-weight: 600;
    color: var(--primary-color);
    padding-bottom: 3px;
    margin-top: 20px;
}

.ReturnHomeLink:after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 2px;
    background-color: var(--primary-color);
    transform: scaleX(0);
    transition: transform 0.3s ease;
    transform-origin: right;
}

.ReturnHomeLink:hover:after {
    transform: scaleX(1);
    transform-origin: left;
}

/* Cookie Disclaimer Styles */
.CookieBanner {
    position: fixed;
    bottom: -100%;
    left: 0;
    width: 100%;
    background-color: var(--dark-shade);
    color: white;
    padding: 15px 0;
    z-index: 1000;
    box-shadow: 0 -5px 20px rgba(0, 0, 0, 0.1);
    transition: bottom 0.5s ease;
}

.CookieBanner.show {
    bottom: 0;
}

.CookieContainer {
    display: flex;
    align-items: center;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 15px;
}

.CookieText {
    flex: 1;
    min-width: 280px;
    padding-right: 20px;
}

.CookieButton {
    background-color: white;
    color: var(--dark-shade);
    border: none;
    padding: 10px 20px;
    border-radius: var(--border-radius);
    font-weight: 600;
    font-family: 'Lato', sans-serif;
    cursor: pointer;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
    z-index: 1;
}

.CookieButton:before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background-color: var(--primary-color);
    transition: all 0.3s ease;
    z-index: -1;
}

.CookieButton:hover {
    color: white;
}

.CookieButton:hover:before {
    left: 0;
}

@media screen and (max-width: 768px) {
    .ThankYouContent {
        padding: 40px 25px;
    }

    .ThankYouContent h1 {
        font-size: 2rem;
    }

    .CookieContainer {
        flex-direction: column;
        text-align: center;
    }

    .CookieText {
        padding-right: 0;
    }
}