        .footer {
            background: linear-gradient(to bottom right, #9333ea, #a855f7, #7e22ce);
            color: white;
            padding: 48px 0;
        }

        .footer-container {
            max-width: 1280px;
            margin: 0 auto;
            padding: 0 16px;
        }

        .footer-grid {
            display: grid;
            grid-template-columns: 1fr;
            gap: 32px;
            margin-bottom: 32px;
        }

        @media (min-width: 768px) {
            .footer-grid {
                grid-template-columns: repeat(2, 1fr);
            }
        }

        @media (min-width: 1024px) {
            .footer-grid {
                grid-template-columns: repeat(4, 1fr);
            }
        }

        .footer-section h3 {
            color: white;
            font-size: 18px;
            font-weight: 500;
            margin-bottom: 16px;
        }

        .footer-section p {
            color: #e9d5ff;
            opacity: 0.9;
            margin-bottom: 16px;
        }

        .social-links {
            display: flex;
            gap: 12px;
        }

        .social-link {
            width: 40px;
            height: 40px;
            border-radius: 50%;
            background-color: rgba(255, 255, 255, 0.2);
            display: flex;
            align-items: center;
            justify-content: center;
            transition: background-color 0.3s;
            text-decoration: none;
            color: white;
        }

        .social-link:hover {
            background-color: rgba(255, 255, 255, 0.3);
        }

        .footer-links {
            list-style: none;
        }

        .footer-links li {
            margin-bottom: 8px;
        }

        .footer-links a {
            color: #e9d5ff;
            text-decoration: none;
            transition: color 0.3s;
        }

        .footer-links a:hover {
            color: white;
        }

        .contact-item {
            display: flex;
            align-items: flex-start;
            gap: 8px;
            margin-bottom: 12px;
            color: #e9d5ff;
        }

        .contact-item svg {
            flex-shrink: 0;
            margin-top: 2px;
			    overflow: visible;
        }
.social-links svg{overflow: visible;}
        .contact-item a {
            color: #e9d5ff;
            text-decoration: none;
            transition: color 0.3s;
        }

        .contact-item a:hover {
            color: white;
        }

        .newsletter-section {
            border-top: 1px solid rgba(255, 255, 255, 0.2);
            padding-top: 32px;
            margin-bottom: 32px;
            text-align: center;
        }

        .newsletter-content {
            max-width: 672px;
            margin: 0 auto;
        }

        .newsletter-content h3 {
            color: white;
            margin-bottom: 8px;
        }

        .newsletter-content p {
            color: #e9d5ff;
            margin-bottom: 16px;
        }

        .newsletter-form {
            display: flex;
            flex-direction: column;
            gap: 12px;
            max-width: 448px;
            margin: 0 auto;
        }

        @media (min-width: 640px) {
            .newsletter-form {
                flex-direction: row;
            }
        }

        .newsletter-input {
            flex: 1;
            padding: 12px 16px;
            border-radius: 8px;
            background-color: rgba(255, 255, 255, 0.2);
            border: 1px solid rgba(255, 255, 255, 0.3);
            color: white;
            font-size: 16px;
            outline: none;
        }

        .newsletter-input::placeholder {
            color: #e9d5ff;
        }

        .newsletter-input:focus {
            ring: 2px solid rgba(255, 255, 255, 0.5);
        }

        .newsletter-button {
            padding: 12px 24px;
            background-color: white;
            color: #9333ea;
            border: none;
            border-radius: 8px;
            font-size: 16px;
            font-weight: 500;
            cursor: pointer;
            transition: background-color 0.3s;
        }

        .newsletter-button:hover {
            background-color: #faf5ff;
        }

        .footer-bottom {
            border-top: 1px solid rgba(255, 255, 255, 0.2);
            padding-top: 24px;
            text-align: center;
        }

        .footer-bottom p {
            color: #e9d5ff;
        }


/* 
        .footer {
            position: relative;
            background: linear-gradient(to bottom right, #9333ea, #a855f7, #7e22ce);
            color: white;
            padding: 64px 0;
            overflow: hidden;
        }

        .footer-bg {
            position: absolute;
            inset: 0;
            opacity: 0.1;
            pointer-events: none;
        }

        .footer-bg-circle-1 {
            position: absolute;
            top: 0;
            left: 0;
            width: 384px;
            height: 384px;
            background: white;
            border-radius: 50%;
            filter: blur(100px);
            transform: translate(-50%, -50%);
        }

        .footer-bg-circle-2 {
            position: absolute;
            bottom: 0;
            right: 0;
            width: 384px;
            height: 384px;
            background: #f9a8d4;
            border-radius: 50%;
            filter: blur(100px);
            transform: translate(50%, 50%);
        }

        .footer-bg-circle-3 {
            position: absolute;
            top: 50%;
            left: 50%;
            width: 384px;
            height: 384px;
            background: #93c5fd;
            border-radius: 50%;
            filter: blur(100px);
            transform: translate(-50%, -50%);
        }

        .footer-container {
            position: relative;
            max-width: 1280px;
            margin: 0 auto;
            padding: 0 16px;
        }

        .footer-grid {
            display: grid;
            grid-template-columns: 1fr;
            gap: 48px;
            margin-bottom: 48px;
        }

        @media (min-width: 768px) {
            .footer-grid {
                grid-template-columns: repeat(2, 1fr);
            }
        }

        @media (min-width: 1024px) {
            .footer-grid {
                grid-template-columns: repeat(4, 1fr);
            }
        }

        .footer-section h3 {
            color: white;
            font-size: 18px;
            font-weight: 500;
            margin-bottom: 20px;
        }

        .footer-section p {
            color: #e9d5ff;
            opacity: 0.9;
            line-height: 1.625;
        }

        .brand-title {
            display: flex;
            align-items: center;
            gap: 8px;
        }

        .heart-icon {
            width: 20px;
            height: 20px;
            fill: #f9a8d4;
            stroke: #f9a8d4;
        }

        .social-label {
            color: #e9d5ff;
            margin-bottom: 12px;
            font-size: 14px;
        }

        .social-links {
            display: flex;
            gap: 12px;
        }

        .social-link {
            width: 44px;
            height: 44px;
            border-radius: 12px;
            background-color: rgba(255, 255, 255, 0.1);
            display: inline-flex;
            align-items: center;
            justify-content: center;
            text-decoration: none;
            color: white;
            border: 1px solid rgba(255, 255, 255, 0.2);
            backdrop-filter: blur(8px);
            transition: all 0.3s ease;
        }

        .social-link:hover {
            background-color: white;
            color: #9333ea;
            transform: scale(1.1);
            border-color: rgba(255, 255, 255, 0.4);
        }

        .social-link svg {
            width: 20px;
            height: 20px;
        }

        .footer-links {
            list-style: none;
        }

        .footer-links li {
            margin-bottom: 12px;
        }

        .footer-link {
            color: #e9d5ff;
            text-decoration: none;
            display: flex;
            align-items: center;
            gap: 8px;
            transition: all 0.3s ease;
        }

        .footer-link:hover {
            color: white;
        }

        .arrow-icon {
            width: 16px;
            height: 16px;
            opacity: 0;
            margin-left: -24px;
            transition: all 0.3s ease;
        }

        .footer-link:hover .arrow-icon {
            opacity: 1;
            margin-left: 0;
        }

        .contact-item {
            display: flex;
            align-items: flex-start;
            gap: 12px;
            margin-bottom: 16px;
            transition: transform 0.3s ease;
        }

        .contact-item:hover {
            transform: translateX(4px);
        }

        .contact-icon-box {
            width: 40px;
            height: 40px;
            border-radius: 8px;
            background-color: rgba(255, 255, 255, 0.1);
            backdrop-filter: blur(8px);
            display: flex;
            align-items: center;
            justify-content: center;
            flex-shrink: 0;
            border: 1px solid rgba(255, 255, 255, 0.2);
        }

        .contact-icon-box svg {
            width: 20px;
            height: 20px;
        }

        .contact-item span,
        .contact-item a {
            color: #e9d5ff;
            text-decoration: none;
            padding-top: 6px;
        }

        .contact-item a:hover {
            color: white;
        }

        .newsletter-section {
            border-top: 1px solid rgba(255, 255, 255, 0.2);
            padding-top: 48px;
            margin-bottom: 48px;
        }

        .newsletter-content {
            max-width: 768px;
            margin: 0 auto;
        }

        .newsletter-card {
            background-color: rgba(255, 255, 255, 0.1);
            backdrop-filter: blur(16px);
            border-radius: 16px;
            padding: 40px;
            border: 1px solid rgba(255, 255, 255, 0.2);
            box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.25);
        }

        @media (min-width: 768px) {
            .newsletter-card {
                padding: 40px 48px;
            }
        }

        .newsletter-header {
            text-center;
            margin-bottom: 24px;
        }

        .newsletter-icon {
            display: inline-flex;
            align-items: center;
            justify-content: center;
            width: 56px;
            height: 56px;
            border-radius: 50%;
            background-color: rgba(255, 255, 255, 0.2);
            backdrop-filter: blur(8px);
            margin-bottom: 16px;
            border: 1px solid rgba(255, 255, 255, 0.3);
        }

        .newsletter-icon svg {
            width: 24px;
            height: 24px;
        }

        .newsletter-header h3 {
            color: white;
            margin-bottom: 8px;
        }

        .newsletter-header p {
            color: #e9d5ff;
        }

        .newsletter-form {
            display: flex;
            flex-direction: column;
            gap: 12px;
            max-width: 512px;
            margin: 0 auto;
        }

        @media (min-width: 640px) {
            .newsletter-form {
                flex-direction: row;
            }
        }

        .newsletter-input {
            flex: 1;
            padding: 16px 20px;
            border-radius: 12px;
            background-color: rgba(255, 255, 255, 0.2);
            backdrop-filter: blur(8px);
            border: 1px solid rgba(255, 255, 255, 0.3);
            color: white;
            font-size: 16px;
            outline: none;
            transition: all 0.3s ease;
        }

        .newsletter-input::placeholder {
            color: #e9d5ff;
        }

        .newsletter-input:focus {
            border-color: rgba(255, 255, 255, 0.6);
            box-shadow: 0 0 0 2px rgba(255, 255, 255, 0.3);
        }

        .newsletter-button {
            padding: 16px 32px;
            background-color: white;
            color: #9333ea;
            border: none;
            border-radius: 12px;
            font-size: 16px;
            font-weight: 500;
            cursor: pointer;
            transition: all 0.3s ease;
            display: flex;
            align-items: center;
            justify-content: center;
            gap: 8px;
        }

        .newsletter-button:hover {
            background-color: #faf5ff;
            transform: scale(1.05);
            box-shadow: 0 10px 25px -5px rgba(0, 0, 0, 0.1);
        }

        .newsletter-button svg {
            width: 16px;
            height: 16px;
            transition: transform 0.3s ease;
        }

        .newsletter-button:hover svg {
            transform: translateX(4px);
        }

        .footer-bottom {
            border-top: 1px solid rgba(255, 255, 255, 0.2);
            padding-top: 32px;
        }

        .footer-bottom-content {
            display: flex;
            flex-direction: column;
            justify-content: space-between;
            align-items: center;
            gap: 16px;
        }

        @media (min-width: 768px) {
            .footer-bottom-content {
                flex-direction: row;
            }
        }

        .footer-bottom p {
            color: #e9d5ff;
            text-align: center;
        }

        @media (min-width: 768px) {
            .footer-bottom p {
                text-align: left;
            }
        }

        .footer-legal-links {
            display: flex;
            gap: 24px;
            font-size: 14px;
        }

        .footer-legal-links a {
            color: #e9d5ff;
            text-decoration: none;
            transition: color 0.3s ease;
        }

        .footer-legal-links a:hover {
            color: white;
        }

        .space-y-6 > * + * {
            margin-top: 24px;
        } */