/* ===================================
   Variables & Reset
   =================================== */
:root {
    --radius: 0.75rem;
    --background: #FFF5F8;
    --foreground: #3D1F2E;
    --card: #FFFFFF;
    --card-foreground: #3D1F2E;
    --primary: #E9A5BA;
    --primary-foreground: #FFFFFF;
    --secondary: #F8D7E3;
    --secondary-foreground: #3D1F2E;
    --muted: #FFF0F5;
    --muted-foreground: #9D7B8A;
    --border: #F5C2D1;
    --pink: #E9A5BA;
    --pink-light: #F8D7E3;
    --pink-dark: #D88FA8;
    --gold: #D4AF37;
    --gold-light: #E8C870;
    
    /* Responsive Breakpoints */
    --mobile-sm: 320px;
    --mobile: 480px;
    --tablet: 768px;
    --desktop: 1024px;
    --desktop-lg: 1280px;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

*,
*::before,
*::after {
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
    overflow-x: hidden;
    width: 100%;
    max-width: 100vw;
    /* تحسين أداء السكرول */
    -webkit-overflow-scrolling: touch;
}

html,
body {
    max-width: 100%;
    overflow-x: hidden;
}

body {
    font-family: 'Cairo', 'Tajawal', sans-serif;
    background-color: var(--background);
    color: var(--foreground);
    line-height: 1.6;
    direction: rtl;
    overflow-x: hidden;
    margin: 0;
    padding: 0;
    width: 100%;
    max-width: 100vw;
    /* تحسين أداء الرسم */
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    text-rendering: optimizeSpeed;
}

html {
    overflow-x: hidden;
    width: 100%;
    max-width: 100vw;
}

h1, h2, h3, h4, h5, h6 {
    font-family: 'Cairo', sans-serif;
    font-weight: 700;
}

img {
    max-width: 100%;
    height: auto;
    display: block;
}

a {
    text-decoration: none;
    color: inherit;
}

button {
    font-family: inherit;
    border: none;
    cursor: pointer;
    background: none;
}

/* ===================================
   Loading Screen
   =================================== */
.loading-screen {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, #FFF5F8 0%, #F8D7E3 50%, #E9A5BA 100%);
    display: flex;
    justify-content: center;
    align-items: center;
    z-index: 9999;
    transition: opacity 0.6s ease, visibility 0.6s ease;
}

.loading-screen.hidden {
    opacity: 0;
    visibility: hidden;
}

.loading-content {
    text-align: center;
    animation: fadeInUp 0.8s ease;
}

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.loading-logo {
    margin-bottom: 2rem;
    animation: pulse 2s ease-in-out infinite;
}

.loading-logo img {
    width: 150px;
    height: auto;
    margin: 0 auto;
    filter: drop-shadow(0 10px 30px rgba(219, 112, 147, 0.4));
}

@keyframes pulse {
    0%, 100% {
        transform: scale(1);
    }
    50% {
        transform: scale(1.05);
    }
}

.loading-spinner {
    position: relative;
    width: 80px;
    height: 80px;
    margin: 0 auto 1.5rem;
}

.spinner-ring {
    position: absolute;
    width: 100%;
    height: 100%;
    border: 4px solid transparent;
    border-top-color: #E9A5BA;
    border-radius: 50%;
    animation: spin 1.5s cubic-bezier(0.5, 0, 0.5, 1) infinite;
}

.spinner-ring:nth-child(1) {
    animation-delay: -0.45s;
    border-top-color: #E9A5BA;
}

.spinner-ring:nth-child(2) {
    animation-delay: -0.3s;
    border-top-color: #D4AF37;
}

.spinner-ring:nth-child(3) {
    animation-delay: -0.15s;
    border-top-color: #F8D7E3;
}

@keyframes spin {
    0% {
        transform: rotate(0deg);
    }
    100% {
        transform: rotate(360deg);
    }
}

.loading-text {
    font-size: 1.25rem;
    font-weight: 600;
    color: var(--foreground);
    letter-spacing: 1px;
    animation: fadeInOut 1.5s ease-in-out infinite;
}

@keyframes fadeInOut {
    0%, 100% {
        opacity: 0.4;
    }
    50% {
        opacity: 1;
    }
}

@media (max-width: 480px) {
    .loading-logo img {
        width: 120px;
    }
    
    .loading-spinner {
        width: 60px;
        height: 60px;
    }
    
    .loading-text {
        font-size: 1rem;
    }
}

/* ===================================
   Utilities
   =================================== */
.container {
    width: 100%;
    max-width: 1280px;
    margin: 0 auto;
    padding: 0 1rem;
    box-sizing: border-box;
}

@media (max-width: 768px) {
    .container {
        padding: 0 1rem;
        max-width: 100%;
        box-sizing: border-box;
    }
}

@media (max-width: 480px) {
    .container {
        padding: 0 0.75rem;
        max-width: 100%;
        box-sizing: border-box;
    }
}

@media (max-width: 380px) {
    .container {
        padding: 0 0.5rem;
        max-width: 100%;
        box-sizing: border-box;
    }
}

@media (max-width: 360px) { 
    .container { 
        padding: 0 0.4rem;
        max-width: 100%;
        box-sizing: border-box;
    } 
}

.gradient-pink {
    background: linear-gradient(135deg, var(--pink-light) 0%, var(--pink) 50%, var(--pink-dark) 100%);
}

.gradient-gold {
    background: linear-gradient(135deg, var(--gold-light) 0%, var(--gold) 100%);
}

.gradient-text {
    background: linear-gradient(135deg, var(--pink-light) 0%, var(--pink) 50%, var(--pink-dark) 100%);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
}

.glass-effect {
    background: rgba(255, 255, 255, 0.7);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.3);
}

/* ===================================
   Animations
   =================================== */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes fadeIn {
    from { opacity: 0; }
    to { opacity: 1; }
}

@keyframes slideInRight {
    from {
        opacity: 0;
        transform: translateX(-50px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

@keyframes slideInLeft {
    from {
        opacity: 0;
        transform: translateX(50px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

@keyframes float {
    0%, 100% { transform: translateY(0px); }
    50% { transform: translateY(-20px); }
}

@keyframes shimmer {
    0% { transform: translateX(-100%); }
    100% { transform: translateX(100%); }
}

[data-aos] {
    /* AOS معطّل: أظهر العناصر مباشرة بدون أنيميشن */
    opacity: 1 !important;
}

[data-aos].aos-animate,
[data-aos="fade-right"].aos-animate,
[data-aos="fade-left"].aos-animate {
    animation: none !important;
}

/* ===================================
   Header
   =================================== */
.header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    transition: all 0.3s ease;
    width: 100%;
}

.header.scrolled {
    background: rgba(255, 255, 255, 0.7);
    backdrop-filter: blur(10px);
    border-bottom: 1px solid rgba(255, 255, 255, 0.3);
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
}

.header-content {
    display: flex;
    align-items: center;
    justify-content: space-between;
    height: 80px;
}

.logo img {
    height: 48px;
    width: auto;
}

@media (max-width: 480px) {
    .header-content {
        height: 70px;
    }
    
    .logo img {
        height: 40px;
    }
}

.main-nav {
    display: none;
    gap: 2rem;
}

@media (min-width: 1024px) and (max-width: 1279px) {
    .main-nav {
        gap: 1.5rem;
    }
}

.nav-link {
    font-size: 0.875rem;
    font-weight: 500;
    color: var(--foreground);
    transition: color 0.3s ease;
    position: relative;
}

.nav-link::after {
    content: '';
    position: absolute;
    bottom: -4px;
    right: 0;
    width: 0;
    height: 2px;
    background: linear-gradient(to left, var(--gold), var(--gold-light));
    transition: width 0.3s ease;
}

.nav-link:hover {
    color: var(--primary);
}

.nav-link:hover::after {
    width: 100%;
}

.header-actions {
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.icon-btn {
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    color: var(--foreground);
    transition: all 0.3s ease;
}

.icon-btn:hover {
    color: var(--primary);
    background: var(--muted);
}

.cart-btn {
    position: relative;
}

.cart-badge {
    position: absolute;
    top: -4px;
    left: -4px;
    background: var(--primary);
    color: white;
    font-size: 0.75rem;
    font-weight: 600;
    width: 20px;
    height: 20px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.mobile-menu-btn {
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--foreground);
}

@media (min-width: 1024px) {
    .main-nav {
        display: flex;
    }
    .mobile-menu-btn {
        display: none;
    }
}

/* ===================================
   Mobile Menu
   =================================== */
.mobile-menu {
    position: fixed;
    top: 0;
    right: -100%;
    width: 320px;
    height: 100vh;
    background: white;
    z-index: 2000;
    transition: right 0.3s ease;
    box-shadow: -4px 0 20px rgba(0, 0, 0, 0.1);
    overflow-y: auto;
}

@media (max-width: 480px) {
    .mobile-menu {
        width: 100%;
    }
}

.mobile-menu.active {
    right: 0;
}

.mobile-menu-content {
    padding: 2rem;
}

@media (max-width: 480px) {
    .mobile-menu-content {
        padding: 1.5rem;
    }
}

.mobile-menu-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 2rem;
}

.mobile-menu-header h2 {
    font-size: 1.5rem;
    color: var(--primary);
}

.close-btn {
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    transition: background 0.3s ease;
}

.close-btn:hover {
    background: var(--muted);
}

.mobile-nav {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.mobile-nav-link {
    font-size: 1.125rem;
    font-weight: 500;
    color: var(--foreground);
    padding: 0.75rem 0;
    transition: color 0.3s ease;
    border-bottom: 1px solid var(--border);
}

.mobile-nav-link:last-child {
    border-bottom: none;
}

.mobile-nav-link:hover {
    color: var(--primary);
}

/* ===================================
   Search Overlay
   =================================== */
/* تم حذف جميع أنماط البحث */

/* ===================================
   Cart Drawer
   =================================== */
.cart-drawer {
    position: fixed;
    top: 0;
    left: -400px;
    width: 400px;
    height: 100vh;
    background: white;
    z-index: 2000;
    transition: left 0.3s ease;
    box-shadow: 4px 0 20px rgba(0, 0, 0, 0.1);
    overflow-y: auto;
}

@media (max-width: 480px) {
    .cart-drawer {
        width: 100%;
        left: -100%;
    }
}

.cart-drawer.active {
    left: 0;
}

.cart-content {
    display: flex;
    flex-direction: column;
    height: 100%;
}

.cart-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 1.5rem;
    border-bottom: 1px solid var(--border);
}

@media (max-width: 480px) {
    .cart-header {
        padding: 1.25rem;
    }
}

.cart-header h3 {
    font-size: 1.25rem;
}

.cart-body {
    flex: 1;
    padding: 1.5rem;
    overflow-y: auto;
}

@media (max-width: 480px) {
    .cart-body {
        padding: 1.25rem;
    }
}

.empty-cart {
    text-align: center;
    color: var(--muted-foreground);
    padding: 2rem 0;
}

.cart-footer {
    padding: 1.5rem;
    border-top: 1px solid var(--border);
}

@media (max-width: 480px) {
    .cart-footer {
        padding: 1.25rem;
    }
}

.cart-total {
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-size: 1.25rem;
    font-weight: 700;
    margin-bottom: 1rem;
    padding: 1rem;
    background: var(--accent);
    border-radius: var(--radius);
}

.total-price {
    color: var(--pink);
    font-size: 1.5rem;
}

.cart-item {
    display: flex;
    gap: 1rem;
    padding: 1rem;
    border: 1px solid var(--border);
    border-radius: var(--radius);
    margin-bottom: 1rem;
    background: var(--card);
}

.cart-item-image {
    width: 80px;
    height: 80px;
    object-fit: cover;
    border-radius: var(--radius);
}

.cart-item-details {
    flex: 1;
}

.cart-item-name {
    font-weight: 600;
    margin-bottom: 0.5rem;
    color: var(--foreground);
}

.cart-item-price {
    color: var(--pink);
    font-weight: 700;
    font-size: 1.125rem;
}

.cart-item-actions {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    margin-top: 0.5rem;
}

.cart-item-qty {
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.qty-btn {
    width: 28px;
    height: 28px;
    border-radius: 50%;
    border: 1px solid var(--border);
    background: white;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.2s ease;
}

.qty-btn:hover {
    background: var(--pink);
    color: white;
    border-color: var(--pink);
}

.qty-number {
    font-weight: 600;
    min-width: 30px;
    text-align: center;
}

.remove-item-btn {
    margin-right: auto;
    color: #ef4444;
    cursor: pointer;
    padding: 0.25rem 0.5rem;
    border-radius: var(--radius);
    transition: all 0.2s ease;
}

.remove-item-btn:hover {
    background: #fee;
}

.btn-success {
    background: linear-gradient(135deg, #25D366 0%, #128C7E 100%);
    color: white;
    border: none;
}

.btn-success:hover {
    opacity: 0.9;
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(37, 211, 102, 0.3);
}

/* ===================================
   Buttons
   =================================== */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    padding: 0.75rem 2rem;
    font-size: 1rem;
    font-weight: 600;
    border-radius: var(--radius);
    transition: all 0.3s ease;
    cursor: pointer;
    text-align: center;
}

@media (max-width: 480px) {
    .btn {
        padding: 0.625rem 1.5rem;
        font-size: 0.9375rem;
    }
}

.btn-primary {
    background: linear-gradient(135deg, var(--pink-light) 0%, var(--pink) 50%, var(--pink-dark) 100%);
    color: white;
}

.btn-primary:hover {
    opacity: 0.9;
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(233, 165, 186, 0.3);
}

.btn-block {
    display: flex;
    width: 100%;
}

.btn-outline {
    border: 2px solid var(--primary);
    color: var(--primary);
    background: transparent;
}

.btn-outline:hover {
    background: var(--primary);
    color: white;
}

.btn-outline-large {
    border: 2px solid var(--primary);
    color: var(--primary);
    background: transparent;
    padding: 1rem 2rem;
    font-size: 1.125rem;
}

.btn-outline-large:hover {
    background: var(--primary);
    color: white;
}

.btn-block {
    width: 100%;
}

/* ===================================
   Hero Section
   =================================== */
.hero-section {
    position: relative;
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    padding-top: 80px;
}

@media (max-width: 768px) {
    .hero-section {
        min-height: auto;
        padding: 100px 0 60px;
    }
}

.particles-canvas {
    position: absolute;
    inset: 0;
    z-index: 1;
}

.hero-gradient {
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, var(--pink-light) 0%, var(--pink) 50%, var(--pink-dark) 100%);
    opacity: 0.3;
    z-index: 2;
}

.hero-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(to bottom, rgba(255, 245, 248, 0.5), transparent, var(--background));
    z-index: 3;
}

.hero-grid {
    position: relative;
    z-index: 10;
    display: grid;
    gap: 3rem;
    align-items: center;
}

@media (max-width: 768px) {
    .hero-grid {
        grid-template-columns: 1fr;
        gap: 2rem;
        text-align: center;
    }
    
    .hero-content {
        order: 1;
    }
    
    .hero-carousel {
        order: 2;
        max-width: 100%;
    }
}

.hero-content {
    text-align: right;
}

@media (max-width: 768px) {
    .hero-content {
        text-align: center;
    }
}

.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    background: rgba(255, 255, 255, 0.8);
    backdrop-filter: blur(4px);
    padding: 0.5rem 1rem;
    border-radius: 9999px;
    margin-bottom: 1.5rem;
    font-size: 0.875rem;
    font-weight: 500;
}

.hero-badge svg {
    width: 16px;
    height: 16px;
    color: var(--gold);
}

.hero-title {
    font-size: 3rem;
    font-weight: 800;
    line-height: 1.2;
    margin-bottom: 1.5rem;
    text-shadow: 0 2px 10px rgba(212, 175, 55, 0.3);
}

@media (max-width: 1024px) {
    .hero-title {
        font-size: 2.5rem;
    }
}

@media (max-width: 768px) {
    .hero-title {
        font-size: 2rem;
    }
}

@media (max-width: 480px) {
    .hero-title {
        font-size: 1.75rem;
        margin-bottom: 1rem;
    }
}

.hero-description {
    font-size: 1.125rem;
    color: var(--muted-foreground);
    line-height: 1.8;
    margin-bottom: 2rem;
}

@media (max-width: 768px) {
    .hero-description {
        font-size: 1rem;
        margin-bottom: 1.5rem;
    }
}

@media (max-width: 480px) {
    .hero-description {
        font-size: 0.9375rem;
        line-height: 1.6;
    }
}

.hero-buttons {
    display: flex;
    gap: 1rem;
    flex-wrap: wrap;
}

@media (max-width: 768px) {
    .hero-buttons {
        justify-content: center;
    }
}

@media (max-width: 480px) {
    .hero-buttons {
        gap: 0.75rem;
    }
}

.hero-stats {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
    margin-top: 3rem;
    padding-top: 3rem;
    border-top: 1px solid var(--border);
}

@media (max-width: 768px) {
    .hero-stats {
        gap: 1.5rem;
        margin-top: 2.5rem;
        padding-top: 2.5rem;
        justify-items: center;
    }
}

@media (max-width: 480px) {
    .hero-stats {
        grid-template-columns: repeat(3, 1fr);
        gap: 1rem;
        margin-top: 2rem;
        padding-top: 2rem;
    }
}

.stat-item {
    text-align: right;
}

@media (max-width: 768px) {
    .stat-item {
        text-align: center;
    }
}

.stat-number {
    font-size: 2rem;
    font-weight: 700;
    background: linear-gradient(135deg, var(--pink-light) 0%, var(--pink) 50%, var(--pink-dark) 100%);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
}

@media (max-width: 768px) {
    .stat-number {
        font-size: 1.75rem;
    }
}

@media (max-width: 480px) {
    .stat-number {
        font-size: 1.5rem;
    }
}

.stat-label {
    font-size: 0.875rem;
    color: var(--muted-foreground);
    margin-top: 0.25rem;
}

@media (max-width: 480px) {
    .stat-label {
        font-size: 0.75rem;
    }
}

/* Carousel */
.hero-carousel {
    position: relative;
}

.carousel-container {
    position: relative;
    aspect-ratio: 4/3;
    border-radius: 1.5rem;
    overflow: hidden;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.2);
}

@media (max-width: 768px) {
    .carousel-container {
        border-radius: 1.25rem;
        box-shadow: 0 15px 45px rgba(0, 0, 0, 0.15);
    }
}

@media (max-width: 480px) {
    .carousel-container {
        border-radius: 1rem;
        box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
        aspect-ratio: 1 / 1; /* يمنع الفيض الطولي على أصغر الشاشات */
    }
}

.carousel-wrapper {
    position: relative;
    width: 100%;
    height: 100%;
}

.carousel-slide {
    position: absolute;
    inset: 0;
    opacity: 0;
    transition: opacity 0.5s ease;
}

.carousel-slide.active {
    opacity: 1;
}

.carousel-slide img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.carousel-btn {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 48px;
    height: 48px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.7);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.3);
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 10;
    transition: all 0.3s ease;
}
@media (max-width: 480px) { .carousel-btn { width: 40px; height: 40px; } }

.carousel-btn:hover {
    background: rgba(255, 255, 255, 0.9);
}

.carousel-prev {
    right: 1rem;
}

.carousel-next {
    left: 1rem;
}

.carousel-dots {
    position: absolute;
    bottom: 1.5rem;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    gap: 0.5rem;
    z-index: 10;
}

.dot {
    width: 8px;
    height: 8px;
    border-radius: 9999px;
    background: rgba(255, 255, 255, 0.5);
    transition: all 0.3s ease;
}

.dot.active {
    width: 32px;
    background: var(--primary);
}

.carousel-glow {
    position: absolute;
    inset: -1rem;
    background: linear-gradient(to bottom right, rgba(233, 165, 186, 0.2), rgba(212, 175, 55, 0.2));
    filter: blur(3rem);
    z-index: -1;
}

.floating-badge {
    position: absolute;
    top: -1.5rem;
    right: -1.5rem;
    z-index: 20;
    animation: float 3s ease-in-out infinite;
}

@media (max-width: 480px) {
    .floating-badge { display: none; }
}

.badge-content {
    background: linear-gradient(135deg, var(--gold-light) 0%, var(--gold) 100%);
    border-radius: 50%;
    width: 80px;
    height: 80px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    color: white;
    font-weight: 700;
    box-shadow: 0 10px 30px rgba(212, 175, 55, 0.4);
}

.badge-content div:first-child {
    font-size: 1.5rem;
}

.badge-content div:last-child {
    font-size: 1.25rem;
}

@media (min-width: 1024px) {
    .hero-grid {
        grid-template-columns: 1fr 1fr;
    }
    
    .hero-title {
        font-size: 4.5rem;
    }
}

/* ===================================
   Sections
   =================================== */
section {
    position: relative;
    padding: 6rem 0;
    /* let sections size naturally; specific wrappers handle overflow */
}
@media (max-width: 768px) {
    section {
        padding: 4rem 0;
    }
}
@media (max-width: 480px) {
    section {
        padding: 3rem 0;
    }
}

.section-decor {
    position: absolute;
    width: 128px;
    height: 128px;
    border-radius: 50%;
    opacity: 0.1;
    filter: blur(3rem);
}

.decor-top-left {
    top: 5rem;
    left: 2.5rem;
    background: linear-gradient(135deg, var(--pink-light), var(--pink));
}

.decor-top-right {
    top: 0;
    right: 0;
    width: 384px;
    height: 384px;
    background: linear-gradient(135deg, var(--pink-light), var(--pink));
}

.decor-bottom-left {
    bottom: 0;
    left: 0;
    width: 384px;
    height: 384px;
    background: linear-gradient(135deg, var(--gold-light), var(--gold));
}

.decor-bottom-right {
    bottom: 5rem;
    right: 2.5rem;
    background: linear-gradient(135deg, var(--gold-light), var(--gold));
}

.section-header {
    text-align: center;
    margin-bottom: 4rem;
}

@media (max-width: 768px) {
    .section-header {
        margin-bottom: 3rem;
    }
}

@media (max-width: 480px) {
    .section-header {
        margin-bottom: 2.5rem;
    }
}

.section-subtitle {
    display: inline-block;
    background: linear-gradient(135deg, var(--pink-light) 0%, var(--pink) 50%, var(--pink-dark) 100%);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
    font-size: 0.875rem;
    font-weight: 600;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    margin-bottom: 1rem;
}

@media (max-width: 480px) {
    .section-subtitle {
        font-size: 0.75rem;
        margin-bottom: 0.75rem;
    }
}

.section-title {
    font-size: 2.5rem;
    margin-bottom: 1.5rem;
}

.section-description {
    font-size: 1.125rem;
    color: var(--muted-foreground);
    max-width: 672px;
    margin: 0 auto;
    line-height: 1.8;
}

@media (max-width: 768px) {
    .section-description {
        font-size: 1rem;
        line-height: 1.7;
    }
}

@media (max-width: 480px) {
    .section-description {
        font-size: 0.9375rem;
        line-height: 1.6;
    }
}

.section-footer {
    text-align: center;
    margin-top: 3rem;
}

/* Categories grid (product category tiles) */
.categories-grid {
    display: grid;
    grid-template-columns: repeat(7, 1fr);
    gap: 0.75rem;
    margin: 0 auto 1.5rem;
    align-items: start;
    max-width: 800px;
}

@media (max-width: 768px) {
    .categories-grid {
        grid-template-columns: repeat(3, 1fr);
        max-width: 100%;
        gap: 1rem;
        padding: 0 1rem;
    }
    
    .category-tile {
        padding: 1.25rem 0.75rem;
        gap: 0.6rem;
    }
    
    .category-tile i {
        font-size: 2.25rem !important;
        width: 64px !important;
        height: 64px !important;
    }
    
    .category-label {
        font-size: 0.9rem !important;
    }
}

@media (max-width: 480px) {
    .categories-grid {
        grid-template-columns: repeat(3, 1fr);
        max-width: 100%;
        gap: 0.8rem;
        padding: 0 0.75rem;
    }
    
    .category-tile {
        padding: 1rem 0.6rem;
        gap: 0.5rem;
    }
    
    .category-tile i {
        font-size: 2rem !important;
        width: 56px !important;
        height: 56px !important;
    }
    
    .category-label {
        font-size: 0.85rem !important;
    }
}

/* تحسين للشاشات الصغيرة جداً */
@media (max-width: 380px) {
    .categories-grid {
        grid-template-columns: repeat(3, 1fr);
        gap: 0.6rem;
        padding: 0 0.5rem;
    }
    
    .category-tile {
        padding: 0.85rem 0.4rem;
        gap: 0.4rem;
        border-radius: 12px;
    }
    
    .category-tile i {
        font-size: 1.75rem !important;
        width: 48px !important;
        height: 48px !important;
        border-radius: 10px !important;
    }
    
    .category-label {
        font-size: 0.75rem !important;
        line-height: 1.2 !important;
    }
}

.category-tile {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    padding: 1rem 0.5rem;
    cursor: pointer;
    text-align: center;
    transition: transform 0.2s ease, box-shadow 0.2s ease;
    border: 2px solid rgba(233,165,186,0.3);
    border-radius: 16px;
    background: white;
    aspect-ratio: 1;
    position: relative;
    overflow: hidden;
    box-shadow: 0 4px 12px rgba(0,0,0,0.06);
}

.category-tile::before {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, rgba(248,215,227,0.3), rgba(233,165,186,0.2));
    opacity: 0;
    transition: opacity 0.2s ease;
}

.category-tile:hover::before {
    opacity: 1;
}

.category-tile:hover {
    transform: translateY(-2px);
    box-shadow: 0 12px 28px rgba(233,165,186,0.25);
    border-color: var(--pink);
}

.category-tile.active {
    background: linear-gradient(135deg, #FFF5F8, #FFFFFF);
    border-color: var(--pink);
    box-shadow: 0 8px 24px rgba(233,165,186,0.3);
    transform: translateY(-2px);
}

.category-tile.active::after {
    content: '';
    position: absolute;
    top: 0;
    right: 0;
    width: 24px;
    height: 24px;
    background: linear-gradient(135deg, var(--pink), var(--gold));
    clip-path: polygon(100% 0, 0 0, 100% 100%);
}

.category-tile i {
    font-size: 2rem;
    width: 56px;
    height: 56px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border-radius: 14px;
    background: linear-gradient(135deg, rgba(248,215,227,0.5), rgba(233,165,186,0.4));
    transition: all 0.4s ease;
    position: relative;
    z-index: 2;
}

.category-tile:hover i {
    transform: scale(1.15) rotate(5deg);
    background: linear-gradient(135deg, var(--pink-light), var(--pink));
}

.category-tile.active i {
    background: linear-gradient(135deg, var(--pink), var(--gold));
    box-shadow: 0 6px 16px rgba(233,165,186,0.4);
}

.category-label {
    font-size: 0.875rem;
    font-weight: 600;
    color: var(--foreground);
    position: relative;
    z-index: 2;
    transition: color 0.3s ease;
}

.category-tile:hover .category-label {
    color: var(--pink);
}

.category-tile.active .category-label {
    color: var(--pink);
    font-weight: 700;
}

/* تصغير حجم الأقسام على الموبايل */
@media (max-width: 768px) {
    .category-tile {
        padding: 0.6rem 0.3rem;
        gap: 0.3rem;
    }
    
    .category-tile i {
        font-size: 1.3rem;
        width: 40px;
        height: 40px;
        border-radius: 10px;
    }
    
    .category-label {
        font-size: 0.65rem;
        line-height: 1.2;
    }
}

@media (max-width: 480px) {
    .category-tile {
        padding: 0.5rem 0.2rem;
        gap: 0.25rem;
        border-radius: 12px;
    }
    
    .category-tile i {
        font-size: 1.1rem;
        width: 32px;
        height: 32px;
        border-radius: 8px;
    }
    
    .category-label {
        font-size: 0.55rem;
        line-height: 1.1;
    }
}

@media (min-width: 1024px) {
    .section-title {
        font-size: 3rem;
    }
}

/* ===================================
   About Section
   =================================== */
.about-section {
    background: linear-gradient(to bottom, var(--background), rgba(255, 240, 245, 0.3));
}

.about-grid {
    display: grid;
    gap: 4rem;
    align-items: center;
    margin-bottom: 5rem;
}

.about-image {
    position: relative;
}

.image-glow {
    position: absolute;
    inset: -1rem;
    background: linear-gradient(135deg, var(--pink-light), var(--pink));
    opacity: 0.2;
    filter: blur(2rem);
    border-radius: 1.5rem;
}

.about-image img {
    position: relative;
    border-radius: 1.5rem;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.2);
    width: 100%;
}

.about-badge {
    position: absolute;
    bottom: -2rem;
    left: -2rem;
    background: white;
    border-radius: 1rem;
    padding: 1.5rem;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.15);
    backdrop-filter: blur(4px);
    display: flex;
    align-items: center;
    gap: 1rem;
}

/* Mobile: keep badge on image corner, fully inside */
@media (max-width: 768px) {
    .about-badge {
        position: absolute;
        bottom: 0.5rem;
        left: 0.5rem;
        margin: 0;
        padding: 0.6rem 0.8rem;
        border-radius: 0.75rem;
        gap: 0.5rem;
        align-items: center;
        justify-content: flex-start;
        width: auto;
        max-width: calc(100% - 1rem);
    }

    .about-image img {
        border-radius: 1rem;
    }

    .badge-icon {
        width: 40px;
        height: 40px;
    }

    .badge-icon svg {
        width: 18px;
        height: 18px;
    }

    .badge-number {
        font-size: 1rem;
    }

    .badge-label {
        font-size: 0.7rem;
    }
}

.badge-icon {
    width: 64px;
    height: 64px;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--gold-light), var(--gold));
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
}

.badge-icon svg {
    width: 32px;
    height: 32px;
}

.badge-text {
    text-align: right;
}

.badge-number {
    font-size: 1.5rem;
    font-weight: 700;
    background: linear-gradient(135deg, var(--pink-light), var(--pink));
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
}

.badge-label {
    font-size: 0.875rem;
    color: var(--muted-foreground);
}

.about-content {
    text-align: right;
}

.about-content h3 {
    font-size: 2rem;
    margin-bottom: 1.5rem;
}

.about-content p {
    color: var(--muted-foreground);
    line-height: 1.8;
    margin-bottom: 1.5rem;
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1rem;
    margin-top: 2rem;
}

.feature-item {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    background: rgba(255, 255, 255, 0.5);
    backdrop-filter: blur(4px);
    padding: 0.75rem;
    border-radius: var(--radius);
}

.feature-icon {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--pink-light), var(--pink));
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    flex-shrink: 0;
}

.feature-icon svg {
    width: 20px;
    height: 20px;
}

.feature-item span {
    font-size: 0.875rem;
    font-weight: 500;
}

@media (min-width: 1024px) {
    .about-grid {
        grid-template-columns: 1fr 1fr;
    }
}

/* ===================================
   Products Section
   =================================== */
.products-section {
    position: relative;
    padding: 6rem 0;
    background: linear-gradient(180deg, #ffffff 0%, #FFF8FB 50%, #FFF5F8 100%);
    overflow: hidden;
}

.products-pattern {
    position: absolute;
    inset: 0;
    opacity: 0.04;
    background-image: radial-gradient(circle, var(--pink) 1px, transparent 1px);
    background-size: 30px 30px;
    pointer-events: none;
}

.products-glow {
    position: absolute;
    top: -100px;
    left: 50%;
    transform: translateX(-50%);
    width: 600px;
    height: 600px;
    background: radial-gradient(circle, rgba(233,165,186,0.15), transparent 70%);
    border-radius: 50%;
    filter: blur(60px);
    pointer-events: none;
}

/* Luxury Section Header */
.section-header--luxury {
    position: relative;
    padding: 0;
}

.header-decoration {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 1rem;
    margin-bottom: 0.25rem;
    opacity: 0;
    animation: fadeInDown 0.8s ease forwards;
}

.decoration-line {
    width: 60px;
    height: 2px;
    background: linear-gradient(90deg, transparent, var(--pink), transparent);
}

.decoration-icon {
    width: 24px;
    height: 24px;
    color: var(--gold);
    animation: sparkleRotate 3s ease-in-out infinite;
}

@keyframes sparkleRotate {
    0%, 100% { transform: rotate(0deg) scale(1); }
    50% { transform: rotate(180deg) scale(1.2); }
}

.section-subtitle--animated {
    display: inline-block;
    background: linear-gradient(135deg, var(--pink-light) 0%, var(--pink) 50%, var(--gold) 100%);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
    font-size: 0.95rem;
    font-weight: 700;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    margin-bottom: 0.25rem;
    position: relative;
    opacity: 0;
    animation: fadeInUp 0.8s ease 0.2s forwards;
}

.section-title--luxury {
    font-size: 3rem;
    font-weight: 800;
    line-height: 1.2;
    margin-bottom: 0.25rem;
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 0.75rem;
}

.title-word {
    display: inline-block;
    opacity: 0;
    animation: fadeInUp 0.6s ease forwards;
}

.title-word:nth-child(1) { animation-delay: 0.3s; }
.title-word:nth-child(2) { animation-delay: 0.45s; }
.title-word:nth-child(3) { animation-delay: 0.6s; }

.title-word--accent {
    background: linear-gradient(135deg, var(--pink) 0%, var(--gold) 100%);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
    position: relative;
}

.title-word--accent::after {
    content: '';
    position: absolute;
    bottom: -8px;
    left: 0;
    right: 0;
    height: 3px;
    background: linear-gradient(90deg, var(--pink), var(--gold));
    border-radius: 2px;
}

.section-description--elegant {
    font-size: 1.125rem;
    color: var(--muted-foreground);
    max-width: 700px;
    margin: 0 auto 0.25rem;
    line-height: 1.8;
    opacity: 0;
    animation: fadeInUp 0.8s ease 0.7s forwards;
}

.description-accent {
    display: inline-block;
    margin-right: 0.5rem;
    animation: float 2s ease-in-out infinite;
}

.header-accent-line {
    width: 120px;
    height: 4px;
    background: linear-gradient(90deg, transparent, var(--pink), var(--gold), transparent);
    margin: 2rem auto 0;
    border-radius: 2px;
    opacity: 0;
    animation: fadeIn 1s ease 0.9s forwards, expandWidth 1.2s ease 0.9s forwards;
}

@keyframes fadeInDown {
    from { opacity: 0; transform: translateY(-20px); }
    to { opacity: 1; transform: translateY(0); }
}

@keyframes fadeInUp {
    from { opacity: 0; transform: translateY(20px); }
    to { opacity: 1; transform: translateY(0); }
}

@keyframes expandWidth {
    from { width: 0; }
    to { width: 120px; }
}

@media (max-width: 768px) {
    .products-glow { width: 400px; height: 400px; }
    
    /* إظهار كل العناصر على الموبايل */
    .section-subtitle--animated {
        display: inline-block !important;
        opacity: 1 !important;
        visibility: visible !important;
    }
    
    .section-description--elegant {
        display: block !important;
        opacity: 1 !important;
        visibility: visible !important;
    }
}

@media (max-width: 480px) {
    .products-section { padding: 0.5rem 0; }
    
    /* إظهار كل العناصر على الموبايل */
    .section-subtitle--animated {
        display: inline-block !important;
        opacity: 1 !important;
        visibility: visible !important;
    }
    
    .section-description--elegant {
        display: block !important;
        opacity: 1 !important;
        visibility: visible !important;
    }
}

.products-grid {
    display: grid;
    gap: 2.5rem;
    align-items: stretch;
    grid-template-columns: repeat(2, minmax(320px, 1fr));
    max-width: 1200px;
    margin: 3rem auto 0;
}

/* إلغاء الأنيميشن على الموبايل */
@media (min-width: 769px) {
    .products-grid {
        opacity: 0;
        animation: fadeIn 0.8s ease 1s forwards;
    }
    
    .products-grid > * {
        opacity: 0;
        animation: slideUpFade 0.6s ease forwards;
    }
    
    .products-grid > *:nth-child(1) { animation-delay: 1.1s; }
    .products-grid > *:nth-child(2) { animation-delay: 1.2s; }
    .products-grid > *:nth-child(3) { animation-delay: 1.3s; }
    .products-grid > *:nth-child(4) { animation-delay: 1.4s; }
    .products-grid > *:nth-child(5) { animation-delay: 1.5s; }
    .products-grid > *:nth-child(6) { animation-delay: 1.6s; }
    .products-grid > *:nth-child(n+7) { animation-delay: 1.7s; }
}

/* ظهور فوري على الموبايل */
@media (max-width: 768px) {
    .products-grid,
    .products-grid > * {
        opacity: 1 !important;
        animation: none !important;
    }
}

@keyframes slideUpFade {
    from { opacity: 0; transform: translateY(30px); }
    to { opacity: 1; transform: translateY(0); }
}

/* تصميم للتابلت الصغير والمتوسط (641px - 900px) */
@media (max-width: 900px) and (min-width: 641px) {
    .products-grid {
        grid-template-columns: 1fr;
        gap: 1.75rem;
        margin-top: 2rem;
        max-width: 700px;
    }
}

@media (max-width: 768px) {
    .products-grid {
        grid-template-columns: repeat(2, 1fr); /* عمودين بدل واحد */
        gap: 0.75rem; /* مسافات أصغر */
        margin-top: 1rem;
        padding: 0 0.5rem;
        /* تحسين أداء الرندر */
        contain: layout;
        will-change: auto;
    }
}
@media (max-width: 480px) {
    .products-grid {
        grid-template-columns: repeat(2, 1fr); /* كمان عمودين للشاشات الصغيرة */
        gap: 0.5rem; /* مسافات أصغر للسرعة */
        margin-top: 0.75rem;
        padding: 0 0.5rem;
    }
}

/* تحسين للشاشات الصغيرة جداً (344px وأصغر) */
@media (max-width: 380px) {
    .products-grid { 
        grid-template-columns: 1fr;
        gap: 1rem;
        padding: 0 0.5rem;
    }
}

@media (max-width: 360px) {
    .products-grid { 
        grid-template-columns: 1fr;
        gap: 0.9rem;
        padding: 0 0.4rem;
    }
}

.product-card {
    position: relative;
    background: rgba(255, 255, 255, 0.98);
    border-radius: 1.5rem;
    overflow: hidden;
    border: 1px solid rgba(233, 165, 186, 0.2);
    box-shadow: 
        0 2px 8px rgba(233, 165, 186, 0.1),
        0 1px 3px rgba(0,0,0,0.05);
    transition: transform 0.2s ease, box-shadow 0.2s ease;
    display: flex;
    flex-direction: column;
    height: auto;
    min-height: 100%;
    /* تحسين أداء الرندر */
    contain: layout style paint;
    opacity: 1 !important; /* إظهار الكاردات دائماً */
    visibility: visible !important;
}

.product-card:hover {
    transform: translateY(-2px);
    box-shadow: 
        0 4px 12px rgba(233, 165, 186, 0.15),
        0 2px 6px rgba(0,0,0,0.08);
    border-color: rgba(233, 165, 186, 0.35);
}

/* تحسينات الموبايل - تبسيط كامل */
@media (max-width: 768px) {
    /* إلغاء كل backdrop-filter و filter:blur على كل العناصر */
    * {
        backdrop-filter: none !important;
        -webkit-backdrop-filter: none !important;
        animation: none !important; /* إلغاء كل الأنيميشن */
        transition: none !important; /* إلغاء كل الانتقالات */
    }
    
    *[style*="backdrop-filter"],
    *[style*="filter"] {
        backdrop-filter: none !important;
        -webkit-backdrop-filter: none !important;
    }
    
    /* إيقاف كل الأنيميشن والانتقالات */
    *,
    *::before,
    *::after {
        animation-duration: 0s !important;
        animation-delay: 0s !important;
        transition-duration: 0s !important;
        transition-delay: 0s !important;
    }
    
    .product-card {
        transition: none !important;
        animation: none !important;
        transform: none !important;
        backdrop-filter: none !important;
        will-change: auto !important;
        border-radius: 0.9rem;
        box-shadow: 0 1px 3px rgba(0,0,0,0.1);
        contain: layout; /* تخفيف من layout style */
        font-size: 0.85rem;
        opacity: 1 !important;
        visibility: visible !important;
        overflow: visible !important; /* مهم جداً */
    }
    
    .product-card:hover,
    .product-card:active,
    .product-card:focus {
        transform: none !important;
        box-shadow: 0 1px 3px rgba(0,0,0,0.1) !important;
        transition: none !important;
    }
    
    /* إلغاء أي تأثيرات على الصور - الصور تظل ظاهرة دائماً */
    .product-img {
        transition: none !important;
        transform: none !important;
        will-change: auto !important;
        opacity: 1 !important;
        visibility: visible !important;
    }
    
    /* تحسين أداء المحتوى النصي */
    .product-content {
        contain: layout style;
    }
    
    /* إلغاء كل التأثيرات من category tiles */
    .category-tile {
        transition: none !important;
        animation: none !important;
        transform: none !important;
        will-change: auto !important;
    }
    
    .category-tile:hover,
    .category-tile.active {
        transform: none !important;
    }
    
    .category-tile::before {
        display: none !important;
    }
    
    .category-tile i {
        transition: none !important;
        transform: none !important;
    }
    
    .category-tile:hover i {
        transform: none !important;
    }
    
    /* إلغاء الشادو والتأثيرات الثقيلة */
    header,
    .hero,
    .carousel,
    section {
        box-shadow: none !important;
    }
}

@media (max-width: 640px) {
    .product-card {
        border-radius: 1rem;
    }
    
    .product-card:hover {
        transform: none;
    }
}

/* جعل الكارد الأفقي عمودي على الموبايل وتثبيت أبعاد الصورة */
@media (max-width: 768px) {
    .product-card--horizontal { flex-direction: column; }
    .product-card--horizontal .product-image-container {
        width: 100%;
        flex-basis: auto;
        aspect-ratio: 1 / 1; /* صورة مربعة نظيفة على الموبايل */
    }
    .product-card--horizontal .product-content { padding: 12px 14px; }
}

/* تقليل تمدد النصوص وتثبيت ارتفاع الكروت بالنص */
@media (max-width: 768px) {
    .product-name {
        display: -webkit-box;
            line-clamp: 2;
        -webkit-line-clamp: 2;
        -webkit-box-orient: vertical;
        overflow: hidden;
    }
    .product-description {
        display: -webkit-box;
            line-clamp: 3;
        -webkit-line-clamp: 3;
        -webkit-box-orient: vertical;
        overflow: hidden;
    }
}

/* premium corner fold */
/* removed conflicting ::before/::after on card element to keep edgy effects intact */

/* Luxe gradient border using mask technique */
.product-card::before {
    content: '';
    position: absolute;
    inset: 0;
    border-radius: inherit;
    padding: 1.5px;
    background: linear-gradient(135deg, 
        rgba(248, 215, 227, 0.8) 0%, 
        rgba(233, 165, 186, 0.6) 50%, 
        rgba(212, 175, 55, 0.8) 100%);
    mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
    -webkit-mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
    -webkit-mask-composite: xor;
    mask-composite: exclude;
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.4s ease;
}

.product-card::after {
    content: '';
    position: absolute;
    inset: -30% -30% calc(100% - 60%) -30%;
    background: radial-gradient(60% 60% at 50% 0%, rgba(233,165,186,0.2), rgba(212,175,55,0.12), transparent 70%);
    filter: blur(40px);
    opacity: 0;
    transition: opacity 0.35s ease;
    pointer-events: none;
}

@media (max-width: 480px) {
    .product-card {
        border-radius: 1rem;
        /* تحسين أداء الموبايل */
        contain: layout style;
        will-change: auto;
    }
    
    /* إلغاء hover effects على الموبايل */
    .product-card:hover {
        transform: none;
        box-shadow: 
            0 8px 24px rgba(233, 165, 186, 0.15),
            0 4px 12px rgba(0,0,0,0.08);
    }
}

.product-card:hover {
    transform: translateY(-12px) scale(1.02);
    box-shadow: 
        0 24px 60px rgba(233, 165, 186, 0.3), 
        0 12px 28px rgba(0,0,0,0.1);
}

.product-card:hover::before { opacity: 1; }
.product-card:hover::after { opacity: 1; }

.product-image-container {
    position: relative;
    aspect-ratio: 1 / 1;
    overflow: hidden;
    flex: 0 0 auto;
    background: var(--muted);
    cursor: pointer;
}

/* Soft bottom gradient over image for better text contrast */
.product-image-container::after {
    content: '';
    position: absolute;
    inset: auto 0 0 0;
    height: 35%;
    background: linear-gradient(to top, rgba(255, 245, 248, 0.9), rgba(255, 245, 248, 0.0));
    pointer-events: none;
}

.product-image-container img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

/* hover effects على Desktop فقط */
@media (min-width: 769px) {
    .product-image-container img {
        transition: transform 0.5s ease;
    }
    
    .product-card:hover .product-image-container img {
        transform: scale(1.1);
    }
}

/* على الموبايل: بدون أي effects */
@media (max-width: 768px) {
    .product-image-container img {
        transition: none !important;
        transform: none !important;
    }
    
    .product-card:hover .product-image-container img {
        transform: none !important;
    }
}

/* subtle moving shine on image */
.product-image-container::before {
    content: '';
    position: absolute;
    top: 0; bottom: 0; right: -60%; width: 40%;
    background: linear-gradient(120deg, rgba(255,255,255,0) 0%, rgba(255,255,255,0.45) 50%, rgba(255,255,255,0) 100%);
    transform: skewX(-20deg);
    opacity: 0;
    transition: opacity 0.3s ease, right 0.6s ease;
    pointer-events: none;
}
.product-card:hover .product-image-container::before {
    opacity: 1;
    right: 110%;
}

.product-badge {
    position: absolute;
    top: 0.75rem;
    right: 0.75rem;
    background: linear-gradient(135deg, var(--gold-light), var(--gold));
    color: white;
    font-size: 0.7rem;
    font-weight: 700;
    padding: 0.3rem 0.7rem;
    border-radius: 9999px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.2);
}

@media (max-width: 480px) {
    .product-badge {
        font-size: 0.6rem;
        padding: 0.25rem 0.5rem;
        top: 0.5rem;
        right: 0.5rem;
    }
}

/* ===================================
   Horizontal Product Card Layout (image right, details left)
   =================================== */
.product-card--horizontal {
    flex-direction: row-reverse; /* الصورة على اليمين */
    align-items: stretch;
    min-height: 220px;
}

/* accent stripe between image and content */
.product-card--horizontal { position: relative; }
.product-card--horizontal .product-image-container { position: relative; }
.product-card--horizontal .product-content { position: relative; }
.product-card--horizontal .product-content::before {
    content: '';
    position: absolute;
    top: 0; right: -1px; bottom: 0; width: 6px;
    background: linear-gradient(180deg, rgba(233,165,186,0.15), rgba(212,175,55,0.15));
    border-right: 1px solid rgba(233,165,186,0.25);
}

/* subtle sparkles within content on hover */
.product-card--horizontal .product-content::after {
        content: '';
        position: absolute;
        left: 10%; bottom: 8%; width: 120px; height: 120px;
        background:
            radial-gradient(6px 6px at 20% 30%, rgba(233,165,186,0.35), transparent 60%),
            radial-gradient(4px 4px at 70% 60%, rgba(212,175,55,0.35), transparent 60%),
            radial-gradient(3px 3px at 40% 80%, rgba(233,165,186,0.25), transparent 60%);
        filter: blur(0.5px);
        opacity: 0; transition: opacity 0.35s ease;
        pointer-events: none;
}
.product-card--horizontal:hover .product-content::after { opacity: 1; }

.product-card--horizontal .product-image-container {
    flex: 0 0 240px; /* عرض ثابت للصورة */
    height: auto;
    aspect-ratio: auto;
}

@media (min-width: 1024px) {
    .product-card--horizontal .product-image-container { flex-basis: 280px; }
}

.product-card--horizontal .product-content {
    text-align: right; /* نص عربي */
    padding: 1.25rem 1.25rem;
    border-right: 1px solid rgba(233, 165, 186, 0.25); /* فاصل لطيف بين الصورة والتفاصيل */
    background:
      linear-gradient(to left, rgba(233,165,186,0.08), rgba(233,165,186,0)) 0 0/100% 100% no-repeat; /* تدرج خفيف للخلفية */
}

/* دمج مع الشكل الحاد دون قص مائل للصورة في الوضع الأفقي */
.product-card--horizontal.product-card--edgy .product-image-container {
    clip-path: none;
    background: var(--muted);
}

/* تصميم التابلت (768px - 1024px) */
@media (max-width: 1024px) and (min-width: 641px) {
    .product-card--horizontal {
        min-height: 200px;
    }
    .product-card--horizontal .product-image-container {
        flex: 0 0 220px;
    }
    .product-card--horizontal .product-content {
        padding: 1.1rem;
    }
}

/* تصميم الموبايل والتابلت الصغير */
@media (max-width: 640px) {
    .product-card--horizontal {
        flex-direction: column;
        min-height: auto;
        align-items: stretch;
        border-radius: 1.2rem;
        overflow: hidden;
        position: relative;
    }
    .product-card--horizontal .product-image-container {
        flex: 0 0 auto;
        width: 100%;
        height: auto;
        aspect-ratio: 1 / 1;
        border-radius: 0;
        overflow: hidden;
        position: relative;
        box-shadow: none;
    }
    
    .product-card--horizontal .product-image-container img {
        width: 100%;
        height: 100%;
        object-fit: cover;
        transition: transform 0.4s ease;
    }
    
    .product-card--horizontal:hover .product-image-container img {
        transform: scale(1.05);
    }
    
    .product-card--horizontal .product-content {
        border-right: none;
        border-top: 1px solid rgba(233, 165, 186, 0.15);
        padding: 1rem;
        flex: 1;
        text-align: right;
        display: flex;
        flex-direction: column;
        justify-content: flex-start;
        gap: 0.5rem;
        background: linear-gradient(to bottom, rgba(255,250,252,0.5), rgba(255,255,255,1));
        position: relative;
    }
    .product-card--horizontal .product-content::before {
        content: '';
        position: absolute;
        top: -1px;
        left: 0.5rem;
        right: 0.5rem;
        height: 2px;
        background: linear-gradient(90deg, 
            rgba(233,165,186,0.4) 0%, 
            rgba(212,175,55,0.3) 50%,
            rgba(233,165,186,0.4) 100%);
        border-radius: 2px;
        box-shadow: 0 1px 3px rgba(233,165,186,0.15);
    }
    
    /* تحسين المسافات */
    .product-card--horizontal .product-meta {
        margin-bottom: 0.4rem;
    }
    
    .product-card--horizontal .product-name {
        margin-bottom: 0.4rem;
        font-size: 1.05rem;
    }
    
    .product-card--horizontal .product-description {
        flex: 1;
        margin-bottom: 0.5rem;
        overflow-wrap: break-word;
        word-wrap: break-word;
        display: block;
        font-size: 0.82rem;
        line-height: 1.55;
    }
    
    .product-card--horizontal .product-footer {
        margin-top: auto;
        gap: 0.6rem;
    }
}

/* تحسينات للشاشات الصغيرة جداً (344x882 وما شابه) */
@media (max-width: 380px) {
    .product-card--horizontal {
        min-height: auto !important;
    }
    
    .product-card--horizontal .product-image-container {
        flex: 0 0 auto !important;
        width: 100% !important;
        aspect-ratio: 1 / 1 !important;
    }
    
    .product-card--horizontal .product-content {
        padding: 0.85rem 0.75rem !important;
        gap: 0.45rem !important;
    }
    
    .product-card--horizontal .product-meta {
        margin-bottom: 0.3rem !important;
    }
    
    .product-card--horizontal .product-category {
        font-size: 0.65rem !important;
        padding: 0.2rem 0.45rem !important;
    }
    
    .product-card--horizontal .product-name {
        font-size: 0.98rem !important;
        line-height: 1.3 !important;
        margin-bottom: 0.35rem !important;
    }
    
    .product-card--horizontal .product-description {
        font-size: 0.78rem !important;
        line-height: 1.5 !important;
        margin-bottom: 0.45rem !important;
        overflow-wrap: break-word !important;
        word-wrap: break-word !important;
        display: block !important;
    }
    
    .product-card--horizontal .product-footer {
        gap: 0.5rem !important;
    }
    
    .product-card--horizontal .price {
        font-size: 1.35rem !important;
    }
    
    .product-card--horizontal .buy-now-btn {
        padding: 0.7rem 1rem !important;
        font-size: 0.85rem !important;
    }
    
    .product-card--horizontal .buy-now-btn i {
        font-size: 0.9rem !important;
    }
}

/* favorite button removed per request */

.product-content {
    padding: 1.25rem;
    text-align: center;
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
    flex: 1 1 auto;
    position: relative;
    z-index: 1;
    min-height: fit-content;
}

@media (max-width: 768px) { 
    .product-content { 
        padding: 0.6rem; /* تقليل padding */
        gap: 0.35rem; /* تقليل المسافات بين العناصر */
    } 
}

@media (max-width: 480px) { 
    .product-content { 
        padding: 0.5rem;
        gap: 0.3rem;
    } 
}

/* product meta (category chip) */
.product-meta {
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.product-category {
    display: inline-flex;
    align-items: center;
    padding: 0.3rem 0.7rem;
    border-radius: 9999px;
    font-size: 0.72rem;
    font-weight: 600;
    color: #5D3F4E;
    background: linear-gradient(135deg, rgba(248,215,227,0.7), rgba(233,165,186,0.45));
    border: 1px solid rgba(233,165,186,0.25);
    box-shadow: 0 1px 3px rgba(233,165,186,0.15);
    letter-spacing: 0.01em;
}

.product-name {
    font-size: 1.05rem;
    font-weight: 700;
    margin: 0;
    line-height: 1.35;
    color: #2D1F2A;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
    letter-spacing: -0.01em;
}

@media (max-width: 768px) { 
    .product-name { 
        font-size: 0.8rem; /* خط أصغر للكاردات الصغيرة */
        line-height: 1.2;
        -webkit-line-clamp: 2; /* سطرين بس */
        line-clamp: 2;
    } 
}

@media (max-width: 480px) { 
    .product-name { 
        font-size: 0.75rem;
        line-height: 1.2;
    } 
}

/* تحسين للتابلت 853x1280 */
@media (max-width: 900px) and (min-width: 641px) {
    .product-name {
        font-size: 1.15rem;
        line-height: 1.3;
    }
    
    .product-description {
        font-size: 0.9rem;
        line-height: 1.55;
    }
}

.product-description {
    color: #6B5563;
    font-size: 0.865rem;
    margin: 0;
    line-height: 1.6;
    overflow-wrap: break-word;
    opacity: 0.95;
}

@media (max-width: 640px) {
    .product-description {
        font-size: 0.8rem;
        line-height: 1.5;
        color: #7A6570;
    }
}

@media (max-width: 480px) {
    .product-description {
        font-size: 0.78rem;
        line-height: 1.48;
        overflow-wrap: break-word;
        word-wrap: break-word;
        display: block;
        max-height: none;
    }
}

.product-footer {
    margin-top: auto;
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
    width: 100%;
}

/* On larger screens, align price and button horizontally */
@media (min-width: 768px) {
    .product-footer {
        flex-direction: row;
        align-items: center;
        justify-content: space-between;
        gap: 1rem;
    }
}

.product-price {
    margin: 0;
    text-align: center;
}

.original-price {
    margin-inline-start: 0.5rem;
    color: var(--muted-foreground);
    text-decoration: line-through;
    font-weight: 600;
    opacity: 0.8;
}

.price {
    font-size: 1.65rem;
    font-weight: 800;
    background: linear-gradient(135deg, #E9A5BA 0%, #D88FA8 100%);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
    letter-spacing: -0.02em;
    text-shadow: 0 1px 2px rgba(233,165,186,0.1);
    filter: drop-shadow(0 1px 1px rgba(233,165,186,0.2));
}

@media (max-width: 768px) {
    .price {
        font-size: 1.1rem; /* سعر أصغر */
        font-weight: 700;
    }
}

@media (max-width: 640px) {
    .price {
        font-size: 1rem;
    }
}

@media (max-width: 480px) { 
    .price { 
        font-size: 0.95rem;
        font-weight: 700;
    }
    
    .product-category {
        font-size: 0.65rem;
        padding: 0.2rem 0.45rem;
    }
    
    .product-meta {
        margin-bottom: 0.25rem;
    }
}

.buy-now-btn {
    width: 100%;
    margin-top: 0;
    padding: 0.85rem 1.5rem;
    font-size: 0.95rem;
    font-weight: 600;
    border-radius: 0.7rem;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    z-index: 10;
    pointer-events: auto;
    cursor: pointer;
    box-shadow: 0 2px 8px rgba(233, 165, 186, 0.25);
}

.buy-now-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(233, 165, 186, 0.35);
}

.buy-now-btn i { 
    transition: transform 0.3s ease;
    font-size: 1.05em;
}
.buy-now-btn:hover i { 
    transform: translateX(-2px); 
}

@media (max-width: 768px) {
    .buy-now-btn {
        padding: 0.55rem 0.8rem; /* زر أصغر */
        font-size: 0.75rem;
        border-radius: 0.5rem;
        gap: 0.3rem;
    }
    
    .buy-now-btn i {
        font-size: 0.85em;
    }
}

@media (max-width: 640px) {
    .buy-now-btn:hover {
        transform: none;
    }
}

@media (max-width: 480px) {
    .buy-now-btn {
        padding: 0.5rem 0.7rem;
        font-size: 0.7rem;
        border-radius: 0.5rem;
        gap: 0.25rem;
    }
    
    .buy-now-btn i {
        font-size: 0.8em;
    }
}

.product-badge {
    position: absolute;
    top: 1rem;
    right: 1rem;
    background: linear-gradient(135deg, var(--gold-light), var(--gold));
    color: white;
    font-size: 0.75rem;
    font-weight: 600;
    padding: 0.25rem 0.75rem;
    border-radius: 9999px;
}

@media (max-width: 480px) {
    .product-badge {
        font-size: 0.65rem;
        padding: 0.2rem 0.5rem;
        top: 0.5rem;
        right: 0.5rem;
    }
}

/* Old CSS removed - التصميم القديم تم حذفه */

.product-content {
    padding: 1.25rem;
    text-align: right;
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
    flex: 1 1 auto;
}

@media (max-width: 480px) { 
    .product-content { 
        padding: 0.75rem;
        gap: 0.35rem;
    } 
}

/* Old product styles removed - new simple design applied */

/* ===================================
   Edgy Product Card Variant
   =================================== */
.product-card--edgy {
    border-radius: 1rem;
    background: linear-gradient(180deg, #FFFFFF 0%, #FFF7FA 60%, #FFF5F8 100%);
    overflow: hidden;
    position: relative;
    box-shadow: 0 18px 50px rgba(233, 165, 186, 0.22), 0 6px 18px rgba(0,0,0,0.06);
    transform-style: preserve-3d;
}

/* Animated neon border */
.product-card--edgy::before {
    content: '';
    position: absolute;
    inset: 0;
    border-radius: inherit;
    padding: 2px;
    background: linear-gradient(135deg, #F8D7E3, #E9A5BA, #D4AF37, #E9A5BA);
    background-size: 200% 200%;
    animation: edgyBorder 6s ease infinite;
    mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
    -webkit-mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
    -webkit-mask-composite: xor;
    mask-composite: exclude;
    pointer-events: none;
    opacity: 0.9;
}

@keyframes edgyBorder {
    0% { background-position: 0% 50%; }
    50% { background-position: 100% 50%; }
    100% { background-position: 0% 50%; }
}

/* Diagonal top accent */
.product-card--edgy::after {
    content: '';
    position: absolute;
    top: -24px; left: -10px; right: -10px;
    height: 56px;
    background: linear-gradient(90deg, rgba(233,165,186,0.12), rgba(212,175,55,0.14));
    transform: skewY(-6deg);
    pointer-events: none;
}

.product-card--edgy:hover {
    transform: translateY(-10px) rotateX(1deg);
    box-shadow: 0 26px 70px rgba(233, 165, 186, 0.28), 0 12px 26px rgba(0,0,0,0.08);
}

/* Image with diagonal bottom cut */
.product-card--edgy .product-image-container {
    aspect-ratio: 4 / 5; /* taller image */
    background: linear-gradient(180deg, #FFF0F5, #FFFFFF);
    clip-path: polygon(0 0, 100% 0, 100% 88%, 0 100%);
}

@media (max-width: 768px) {
    .product-card--edgy .product-image-container { aspect-ratio: 1 / 1; /* keep clarity on mobile */ }
}

.product-card--edgy .product-image-container img {
    transform-origin: center;
}

.product-card--edgy:hover .product-image-container img {
    transform: scale(1.08);
}

/* Ribbon-style badge */
.product-card--edgy .product-badge {
    left: 0.25rem; right: auto;
    top: 0.25rem;
    transform: translate(-20%, 10%) rotate(-12deg);
    transform-origin: left top;
    background: linear-gradient(135deg, #E9A5BA, #D4AF37);
    box-shadow: 0 10px 20px rgba(233,165,186,0.25);
    letter-spacing: 0.3px;
}

/* Content separation with accent underline */
.product-card--edgy .product-content {
    text-align: center;
    padding-top: 0.75rem;
}

.product-card--edgy .product-content::before {
    content: '';
    display: block;
    width: 56px;
    height: 2.5px;
    margin: 0 auto 0.5rem;
    border-radius: 9999px;
    background: linear-gradient(90deg, #F8D7E3, #E9A5BA);
    opacity: 0.9;
}

.product-card--edgy .product-name {
    letter-spacing: -0.2px;
}

.product-card--edgy .price {
    filter: drop-shadow(0 6px 16px rgba(233,165,186,0.25));
}

.product-card--edgy .buy-now-btn {
    border: 1px solid rgba(233,165,186,0.4);
    background: linear-gradient(135deg, rgba(248,215,227,0.6), rgba(233,165,186,0.6));
}

.product-card--edgy .buy-now-btn:hover {
    box-shadow: 0 16px 28px rgba(233,165,186,0.35);
}

/* ===================================
   Features Section
   =================================== */
.features-section {
    background: linear-gradient(to bottom, rgba(255, 240, 245, 0.3), var(--background));
}

.features-cards-grid {
    display: grid;
    gap: 2rem;
}

.feature-card {
    position: relative;
    background: white;
    border-radius: 1rem;
    padding: 2rem;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
    border: 1px solid var(--border);
    text-align: right;
    overflow: hidden;
    transition: all 0.3s ease;
}

.feature-card:hover {
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.2);
    transform: translateY(-4px);
}

.feature-card::before {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(to bottom right, rgba(248, 215, 227, 0.5), transparent);
    opacity: 0;
    transition: opacity 0.3s ease;
}

.feature-card:hover::before {
    opacity: 1;
}

.feature-card-content {
    position: relative;
    z-index: 10;
}

.feature-card-icon {
    display: inline-flex;
    width: 64px;
    height: 64px;
    align-items: center;
    justify-content: center;
    border-radius: 1rem;
    margin-bottom: 1.5rem;
    transition: all 0.3s ease;
}

.feature-card:hover .feature-card-icon {
    transform: scale(1.1) rotate(3deg);
}

.feature-card-icon svg {
    width: 32px;
    height: 32px;
    color: white;
}

.feature-card h3 {
    font-size: 1.25rem;
    margin-bottom: 0.75rem;
}

.feature-card p {
    color: var(--muted-foreground);
    line-height: 1.8;
}

.feature-card::after {
    content: '';
    position: absolute;
    bottom: -1.5rem;
    left: -1.5rem;
    width: 96px;
    height: 96px;
    background: linear-gradient(135deg, var(--pink-light), var(--pink));
    opacity: 0.1;
    border-radius: 50%;
    filter: blur(2rem);
    transition: opacity 0.3s ease;
}

.feature-card:hover::after {
    opacity: 0.2;
}

@media (min-width: 640px) {
    .features-cards-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (min-width: 1024px) {
    .features-cards-grid {
        grid-template-columns: repeat(3, 1fr);
    }
}

/* Trust Section */
.trust-section {
    margin-top: 5rem;
}

.trust-card {
    background: white;
    border-radius: 1.5rem;
    padding: 3rem;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.1);
    border: 1px solid var(--border);
    text-align: center;
    max-width: 1024px;
    margin: 0 auto;
}

.trust-card h3 {
    font-size: 2rem;
    margin-bottom: 1.5rem;
}

.trust-card p {
    font-size: 1.125rem;
    color: var(--muted-foreground);
    line-height: 1.8;
    margin-bottom: 2rem;
}

.trust-stats {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 2rem;
}

.trust-stat {
    text-align: center;
}

.trust-number {
    font-size: 2.5rem;
    font-weight: 700;
    background: linear-gradient(135deg, var(--pink-light), var(--pink));
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
    margin-bottom: 0.5rem;
}

.trust-label {
    font-size: 0.875rem;
    color: var(--muted-foreground);
}

@media (min-width: 768px) {
    .trust-stats {
        grid-template-columns: repeat(4, 1fr);
    }
}

/* ===================================
   Social Section
   =================================== */
.social-section {
    background: linear-gradient(to bottom, var(--background), rgba(255, 240, 245, 0.3));
}

/* ===================================
   Elegant Social Cards Section
   =================================== */
.social-section-simple {
    position: relative;
    padding: 6rem 0;
    background: #ffffff;
    overflow: hidden;
}

.social-simple-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 1.5rem;
    max-width: 900px;
    margin: 0 auto;
    padding: 0 1rem;
}

.social-simple-btn {
    position: relative;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 1rem;
    padding: 2rem 1rem;
    background: white;
    border-radius: 24px;
    text-decoration: none;
    transition: all 0.4s cubic-bezier(0.34, 1.56, 0.64, 1);
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
    border: 2px solid transparent;
}

.social-simple-btn:hover {
    transform: translateY(-8px);
    box-shadow: 0 12px 35px rgba(0, 0, 0, 0.15);
}

.social-simple-btn i,
.social-simple-btn svg {
    width: 48px;
    height: 48px;
    transition: transform 0.3s ease;
}

.social-simple-btn:hover i,
.social-simple-btn:hover svg {
    transform: scale(1.15) rotate(5deg);
}

.social-simple-btn span {
    font-size: 1rem;
    font-weight: 600;
    transition: color 0.3s ease;
}

/* Instagram Card */
.instagram-btn {
    border-color: #e91e63;
}

.instagram-btn i {
    color: #e91e63;
    filter: drop-shadow(0 2px 8px rgba(233, 30, 99, 0.3));
}

.instagram-btn span {
    color: #e91e63;
}

.instagram-btn:hover {
    background: linear-gradient(135deg, #f093fb 0%, #f5576c 100%);
    border-color: transparent;
}

.instagram-btn:hover i {
    color: white;
    filter: drop-shadow(0 4px 12px rgba(0, 0, 0, 0.3));
}

.instagram-btn:hover span {
    color: white;
}

/* Facebook Card */
.facebook-btn {
    border-color: #1877f2;
}

.facebook-btn i {
    color: #1877f2;
    filter: drop-shadow(0 2px 8px rgba(24, 119, 242, 0.3));
}

.facebook-btn span {
    color: #1877f2;
}

.facebook-btn:hover {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    border-color: transparent;
}

.facebook-btn:hover i,
.facebook-btn:hover span {
    color: white;
}

/* TikTok Card */
.tiktok-btn {
    border-color: #000000;
}

.tiktok-btn svg {
    color: #000000;
    filter: drop-shadow(0 2px 8px rgba(0, 0, 0, 0.3));
}

.tiktok-btn span {
    color: #000000;
}

.tiktok-btn:hover {
    background: linear-gradient(135deg, #ee0979 0%, #ff6a00 100%);
    border-color: transparent;
}

.tiktok-btn:hover svg,
.tiktok-btn:hover span {
    color: white;
}

/* WhatsApp Card */
.whatsapp-btn {
    border-color: #25d366;
}

.whatsapp-btn i {
    color: #25d366;
    filter: drop-shadow(0 2px 8px rgba(37, 211, 102, 0.3));
}

.whatsapp-btn span {
    color: #25d366;
}

.whatsapp-btn:hover {
    background: linear-gradient(135deg, #56ab2f 0%, #a8e063 100%);
    border-color: transparent;
}

.whatsapp-btn:hover i,
.whatsapp-btn:hover span {
    color: white;
}

/* Responsive */
@media (max-width: 768px) {
    .social-simple-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 1.2rem;
    }
    
    .social-simple-btn {
        padding: 1.5rem 1rem;
    }
    
    .social-simple-btn i,
    .social-simple-btn svg {
        width: 40px;
        height: 40px;
    }
    
    .social-simple-btn span {
        font-size: 0.9rem;
    }
}

@media (max-width: 480px) {
    .social-section-simple {
        padding: 4rem 0;
    }
    
    .social-simple-grid {
        gap: 1rem;
    }
    
    .social-simple-btn {
        padding: 1.2rem 0.8rem;
    }
    
    .social-simple-btn i,
    .social-simple-btn svg {
        width: 36px;
        height: 36px;
    }
    
    .social-simple-btn span {
        font-size: 0.85rem;
    }
}

/* Old social pattern - keeping for compatibility */
.social-pattern {
    position: absolute;
    inset: 0;
    opacity: 0.05;
    background-image: 
        linear-gradient(45deg, var(--pink) 25%, transparent 25%, transparent 75%, var(--pink) 75%, var(--pink)),
        linear-gradient(45deg, var(--pink) 25%, transparent 25%, transparent 75%, var(--pink) 75%, var(--pink));
    background-size: 60px 60px;
    background-position: 0 0, 30px 30px;
}

/* Vibrant Social Cards - Bold Modern Design */
.social-vibrant-grid {
    display: grid;
    grid-template-columns: repeat(4, 200px);
    gap: 2rem;
    max-width: 950px;
    margin: 0 auto;
    padding: 1rem;
    justify-content: center;
}

@media (max-width: 768px) {
    .social-vibrant-grid {
        grid-template-columns: repeat(2, minmax(150px, 1fr));
        gap: 1.5rem;
        padding: 0.5rem;
    }
}

@media (max-width: 480px) {
    .social-vibrant-grid {
        grid-template-columns: repeat(2, minmax(140px, 1fr));
        gap: 1rem;
        padding: 0.5rem;
    }
}

.social-vibrant-card {
    position: relative;
    aspect-ratio: 1;
    border-radius: 2rem;
    text-decoration: none;
    overflow: hidden;
    transition: all 0.4s cubic-bezier(0.34, 1.56, 0.64, 1);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.2);
}

@media (max-width: 480px) {
    .social-vibrant-card {
        border-radius: 1.5rem;
        box-shadow: 0 10px 30px rgba(0, 0, 0, 0.15);
    }
}

.social-vibrant-card:hover {
    transform: translateY(-10px) scale(1.05);
    box-shadow: 0 25px 60px rgba(0, 0, 0, 0.3);
}

/* Background Gradients */
.vibrant-bg {
    position: absolute;
    inset: 0;
    transition: transform 0.4s ease;
}

.instagram-vibrant .vibrant-bg {
    background: linear-gradient(135deg, #833ab4 0%, #fd1d1d 50%, #fcb045 100%);
}

.facebook-vibrant .vibrant-bg {
    background: linear-gradient(135deg, #0866ff 0%, #1877f2 50%, #42a5f5 100%);
}

.tiktok-vibrant .vibrant-bg {
    background: linear-gradient(135deg, #000000 0%, #fe2c55 50%, #00f2ea 100%);
}

.whatsapp-vibrant .vibrant-bg {
    background: linear-gradient(135deg, #075e54 0%, #25d366 50%, #dcf8c6 100%);
}

.social-vibrant-card:hover .vibrant-bg {
    transform: scale(1.1) rotate(5deg);
}

/* Pattern Overlay */
.vibrant-pattern {
    position: absolute;
    inset: 0;
    background-image: 
        repeating-linear-gradient(
            45deg,
            transparent,
            transparent 10px,
            rgba(255, 255, 255, 0.05) 10px,
            rgba(255, 255, 255, 0.05) 20px
        );
    opacity: 0.5;
}

/* Content */
.vibrant-content {
    position: relative;
    z-index: 2;
    height: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding: 2rem;
    text-align: center;
}

@media (max-width: 480px) {
    .vibrant-content {
        padding: 1rem;
    }
}

/* Icon */
.vibrant-icon {
    margin-bottom: 1.25rem;
    transition: all 0.4s ease;
}

@media (max-width: 480px) {
    .vibrant-icon {
        margin-bottom: 1rem;
    }
}

.social-vibrant-card:hover .vibrant-icon {
    transform: scale(1.15) rotate(10deg);
}

.vibrant-icon i {
    width: 100px;
    height: 100px;
    color: white;
    filter: drop-shadow(0 8px 15px rgba(0, 0, 0, 0.4));
}

.vibrant-icon svg {
    color: white;
    filter: drop-shadow(0 8px 15px rgba(0, 0, 0, 0.4));
}

@media (max-width: 480px) {
    .vibrant-icon i {
        width: 70px;
        height: 70px;
    }
    
    .vibrant-icon svg {
        width: 70px;
        height: 70px;
    }
}

/* Title */
.vibrant-content h3 {
    font-size: 1.75rem;
    font-weight: 900;
    color: white;
    margin: 0;
    text-transform: uppercase;
    letter-spacing: 2px;
    text-shadow: 0 4px 12px rgba(0, 0, 0, 0.5);
    transition: all 0.3s ease;
}

@media (max-width: 480px) {
    .vibrant-content h3 {
        font-size: 1.1rem;
        letter-spacing: 1px;
    }
}

.social-vibrant-card:hover .vibrant-content h3 {
    transform: scale(1.1);
    text-shadow: 0 6px 18px rgba(0, 0, 0, 0.7);
}

/* Old social styles - keeping for compatibility */
.social-grid {
    position: relative;
    aspect-ratio: 1;
    border-radius: 1.75rem;
    text-decoration: none;
    overflow: hidden;
    transition: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.08);
}

.social-luxury-pro:hover {
    transform: translateY(-12px);
    box-shadow: 0 25px 60px rgba(0, 0, 0, 0.15);
}

/* Soft Gradient Backgrounds */
.luxury-bg {
    position: absolute;
    inset: 0;
    transition: all 0.5s ease;
}

.instagram-pro .luxury-bg {
    background: linear-gradient(135deg, #ffeef8 0%, #ffe8f5 100%);
}

.facebook-pro .luxury-bg {
    background: linear-gradient(135deg, #e7f3ff 0%, #dae9ff 100%);
}

.tiktok-pro .luxury-bg {
    background: linear-gradient(135deg, #fff0f5 0%, #ffe4ee 100%);
}

.whatsapp-pro .luxury-bg {
    background: linear-gradient(135deg, #e8f8f5 0%, #d5f4e6 100%);
}

.social-luxury-pro:hover .luxury-bg {
    transform: scale(1.1);
}

/* Decorative Circle */
.luxury-circle {
    position: absolute;
    width: 140px;
    height: 140px;
    border-radius: 50%;
    opacity: 0.4;
    transition: all 0.6s ease;
    filter: blur(40px);
}

.instagram-circle {
    background: radial-gradient(circle, #e1306c, #fd1d1d, #f77737);
    top: -30px;
    right: -30px;
}

.facebook-circle {
    background: radial-gradient(circle, #1877f2, #0866ff);
    top: -30px;
    right: -30px;
}

.tiktok-circle {
    background: radial-gradient(circle, #fe2c55, #000000);
    top: -30px;
    right: -30px;
}

.whatsapp-circle {
    background: radial-gradient(circle, #25d366, #128c7e);
    top: -30px;
    right: -30px;
}

.social-luxury-pro:hover .luxury-circle {
    opacity: 0.6;
    transform: scale(1.3);
}

/* Shine Effect */
.luxury-shine {
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: linear-gradient(
        45deg,
        transparent 30%,
        rgba(255, 255, 255, 0.3) 50%,
        transparent 70%
    );
    transform: translateX(-100%);
    transition: transform 0.6s ease;
}

.social-luxury-pro:hover .luxury-shine {
    transform: translateX(100%);
}

/* Content Details */
.luxury-details {
    position: relative;
    z-index: 2;
    height: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding: 2rem;
}

@media (max-width: 480px) {
    .luxury-details {
        padding: 1.5rem;
    }
}

/* Icon Box */
.luxury-icon-box {
    width: 70px;
    height: 70px;
    background: white;
    border-radius: 1.25rem;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1.25rem;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.1);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

@media (max-width: 480px) {
    .luxury-icon-box {
        width: 60px;
        height: 60px;
        margin-bottom: 1rem;
    }
}

.social-luxury-pro:hover .luxury-icon-box {
    transform: scale(1.1) rotate(-5deg);
    box-shadow: 0 12px 35px rgba(0, 0, 0, 0.15);
}

.luxury-icon-box i {
    width: 35px;
    height: 35px;
    transition: all 0.3s ease;
}

@media (max-width: 480px) {
    .luxury-icon-box i {
        width: 30px;
        height: 30px;
    }
}

.instagram-pro .luxury-icon-box i {
    color: #e1306c;
}

.facebook-pro .luxury-icon-box i {
    color: #1877f2;
}

.tiktok-pro .luxury-icon-box i {
    color: #fe2c55;
}

.whatsapp-pro .luxury-icon-box i {
    color: #25d366;
}

.social-luxury-pro:hover .luxury-icon-box i {
    transform: scale(1.1);
}

/* Name */
.luxury-name {
    font-size: 1.4rem;
    font-weight: 800;
    color: #1a1a1a;
    margin: 0 0 0.75rem 0;
    transition: all 0.3s ease;
    letter-spacing: 0.5px;
}

@media (max-width: 480px) {
    .luxury-name {
        font-size: 1.2rem;
        margin-bottom: 0.6rem;
    }
}

.social-luxury-pro:hover .luxury-name {
    transform: translateY(-3px);
}

.instagram-pro:hover .luxury-name {
    color: #e1306c;
}

.facebook-pro:hover .luxury-name {
    color: #1877f2;
}

.tiktok-pro:hover .luxury-name {
    color: #fe2c55;
}

.whatsapp-pro:hover .luxury-name {
    color: #25d366;
}

/* Decorative Line */
.luxury-line {
    width: 50px;
    height: 3px;
    background: #e0e0e0;
    border-radius: 3px;
    margin-bottom: 0.75rem;
    transition: all 0.4s ease;
}

@media (max-width: 480px) {
    .luxury-line {
        width: 40px;
        height: 2px;
        margin-bottom: 0.6rem;
    }
}

.instagram-pro:hover .luxury-line {
    width: 70px;
    background: linear-gradient(90deg, #e1306c, #fd1d1d, #f77737);
}

.facebook-pro:hover .luxury-line {
    width: 70px;
    background: linear-gradient(90deg, #1877f2, #0866ff);
}

.tiktok-pro:hover .luxury-line {
    width: 70px;
    background: linear-gradient(90deg, #fe2c55, #000000);
}

.whatsapp-pro:hover .luxury-line {
    width: 70px;
    background: linear-gradient(90deg, #25d366, #128c7e);
}

/* Followers Count */
.luxury-followers {
    font-size: 1.1rem;
    font-weight: 700;
    color: #666;
    margin: 0;
    transition: all 0.3s ease;
}

@media (max-width: 480px) {
    .luxury-followers {
        font-size: 1rem;
    }
}

.social-luxury-pro:hover .luxury-followers {
    color: #333;
    transform: scale(1.05);
}

/* Old social styles - keeping for compatibility */
.social-grid {
    position: relative;
    aspect-ratio: 1;
    border-radius: 2rem;
    overflow: hidden;
    text-decoration: none;
    display: flex;
    backdrop-filter: blur(20px);
    transition: all 0.5s cubic-bezier(0.34, 1.56, 0.64, 1);
    box-shadow: 
        0 8px 32px rgba(0, 0, 0, 0.1),
        inset 0 1px 1px rgba(255, 255, 255, 0.2);
    border: 1px solid rgba(255, 255, 255, 0.18);
}

.social-modern-card:hover {
    transform: translateY(-15px) scale(1.05);
    box-shadow: 
        0 20px 60px rgba(0, 0, 0, 0.25),
        inset 0 1px 1px rgba(255, 255, 255, 0.3);
}

/* Animated Gradient Background */
.modern-gradient {
    position: absolute;
    inset: -50%;
    opacity: 0.9;
    transition: all 0.8s ease;
    animation: rotateGradient 10s linear infinite;
}

@keyframes rotateGradient {
    0% { transform: rotate(0deg) scale(1); }
    50% { transform: rotate(180deg) scale(1.2); }
    100% { transform: rotate(360deg) scale(1); }
}

.social-modern-card:hover .modern-gradient {
    opacity: 1;
    animation: rotateGradient 4s linear infinite;
}

.instagram-modern .modern-gradient {
    background: conic-gradient(
        from 0deg,
        #833ab4 0deg,
        #fd1d1d 120deg,
        #fcb045 240deg,
        #833ab4 360deg
    );
}

.facebook-modern .modern-gradient {
    background: conic-gradient(
        from 0deg,
        #0866ff 0deg,
        #1877f2 120deg,
        #42a5f5 240deg,
        #0866ff 360deg
    );
}

.tiktok-modern .modern-gradient {
    background: conic-gradient(
        from 0deg,
        #000000 0deg,
        #fe2c55 120deg,
        #00f2ea 240deg,
        #000000 360deg
    );
}

.whatsapp-modern .modern-gradient {
    background: conic-gradient(
        from 0deg,
        #075e54 0deg,
        #25d366 120deg,
        #128c7e 240deg,
        #075e54 360deg
    );
}

/* Pattern Overlay */
.modern-pattern {
    position: absolute;
    inset: 0;
    background-image: 
        radial-gradient(circle at 20% 50%, rgba(255, 255, 255, 0.1) 0%, transparent 50%),
        radial-gradient(circle at 80% 80%, rgba(255, 255, 255, 0.1) 0%, transparent 50%);
    mix-blend-mode: overlay;
    pointer-events: none;
}

/* Content */
.modern-content {
    position: relative;
    z-index: 2;
    width: 100%;
    height: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding: 2rem;
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    border-radius: 2rem;
}

@media (max-width: 480px) {
    .modern-content {
        padding: 1.5rem;
    }
}

/* Icon Holder */
.modern-icon-holder {
    width: 90px;
    height: 90px;
    background: rgba(255, 255, 255, 0.95);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1.5rem;
    box-shadow: 
        0 15px 35px rgba(0, 0, 0, 0.2),
        inset 0 -5px 15px rgba(0, 0, 0, 0.05);
    transition: all 0.5s cubic-bezier(0.34, 1.56, 0.64, 1);
}

@media (max-width: 480px) {
    .modern-icon-holder {
        width: 75px;
        height: 75px;
        margin-bottom: 1.25rem;
    }
}

.social-modern-card:hover .modern-icon-holder {
    transform: scale(1.15) rotate(10deg);
    box-shadow: 
        0 20px 50px rgba(0, 0, 0, 0.3),
        inset 0 -5px 15px rgba(0, 0, 0, 0.1);
}

.modern-icon-holder i {
    width: 45px;
    height: 45px;
    transition: all 0.4s ease;
}

@media (max-width: 480px) {
    .modern-icon-holder i {
        width: 38px;
        height: 38px;
    }
}

.instagram-modern .modern-icon-holder i {
    color: #d62976;
}

.facebook-modern .modern-icon-holder i {
    color: #0866ff;
}

.tiktok-modern .modern-icon-holder i {
    color: #fe2c55;
}

.whatsapp-modern .modern-icon-holder i {
    color: #25D366;
}

.social-modern-card:hover .modern-icon-holder i {
    transform: scale(1.1);
    filter: drop-shadow(0 5px 10px rgba(0, 0, 0, 0.3));
}

/* Info Section */
.modern-info {
    text-align: center;
}

.modern-info h3 {
    font-size: 1.5rem;
    font-weight: 900;
    color: white;
    margin: 0 0 0.5rem 0;
    text-shadow: 0 4px 12px rgba(0, 0, 0, 0.4);
    text-transform: uppercase;
    letter-spacing: 1px;
    transition: all 0.4s ease;
}

@media (max-width: 480px) {
    .modern-info h3 {
        font-size: 1.3rem;
    }
}

.social-modern-card:hover .modern-info h3 {
    transform: translateY(-5px) scale(1.05);
    text-shadow: 0 6px 16px rgba(0, 0, 0, 0.6);
}

.modern-count {
    display: inline-block;
    font-size: 2rem;
    font-weight: 900;
    color: white;
    text-shadow: 0 4px 12px rgba(0, 0, 0, 0.4);
    padding: 0.5rem 1.25rem;
    background: rgba(255, 255, 255, 0.15);
    backdrop-filter: blur(10px);
    border-radius: 1.5rem;
    border: 1px solid rgba(255, 255, 255, 0.2);
    transition: all 0.4s ease;
}

@media (max-width: 480px) {
    .modern-count {
        font-size: 1.75rem;
        padding: 0.4rem 1rem;
    }
}

.social-modern-card:hover .modern-count {
    transform: scale(1.1);
    background: rgba(255, 255, 255, 0.25);
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.3);
}

/* Old social styles - keeping for compatibility */
.social-grid {
    position: relative;
    background: white;
    border-radius: 2rem;
    padding: 0;
    text-decoration: none;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    aspect-ratio: 1;
    overflow: hidden;
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.12);
    border: 3px solid transparent;
}

.social-minimal-card::before {
    content: '';
    position: absolute;
    inset: 0;
    opacity: 0;
    transition: opacity 0.4s ease;
    z-index: 0;
}

.social-minimal-card:hover {
    transform: translateY(-12px) scale(1.03);
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.2);
}

/* Platform Colors */
.instagram-minimal::before {
    background: linear-gradient(135deg, #feda75, #fa7e1e, #d62976, #962fbf, #4f5bd5);
}

.instagram-minimal:hover {
    border-color: #d62976;
}

.instagram-minimal:hover::before {
    opacity: 0.08;
}

.facebook-minimal::before {
    background: linear-gradient(135deg, #0866ff, #1877f2);
}

.facebook-minimal:hover {
    border-color: #0866ff;
}

.facebook-minimal:hover::before {
    opacity: 0.08;
}

.tiktok-minimal::before {
    background: linear-gradient(135deg, #25f4ee, #fe2c55, #000000);
}

.tiktok-minimal:hover {
    border-color: #fe2c55;
}

.tiktok-minimal:hover::before {
    opacity: 0.08;
}

.whatsapp-minimal::before {
    background: linear-gradient(135deg, #25D366, #128C7E);
}

.whatsapp-minimal:hover {
    border-color: #25D366;
}

.whatsapp-minimal:hover::before {
    opacity: 0.08;
}

/* Icon */
.minimal-icon {
    position: relative;
    z-index: 1;
    width: 80px;
    height: 80px;
    background: var(--accent);
    border-radius: 2rem;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1.25rem;
    transition: all 0.5s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1);
}

@media (max-width: 480px) {
    .minimal-icon {
        width: 70px;
        height: 70px;
        margin-bottom: 1rem;
    }
}

.social-minimal-card:hover .minimal-icon {
    transform: scale(1.15) rotate(-5deg);
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.2);
}

.instagram-minimal:hover .minimal-icon {
    background: linear-gradient(135deg, #feda75, #fa7e1e, #d62976, #962fbf, #4f5bd5);
}

.facebook-minimal:hover .minimal-icon {
    background: linear-gradient(135deg, #0866ff, #1877f2);
}

.tiktok-minimal:hover .minimal-icon {
    background: linear-gradient(135deg, #25f4ee, #fe2c55, #000000);
}

.whatsapp-minimal:hover .minimal-icon {
    background: linear-gradient(135deg, #25D366, #128C7E);
}

.minimal-icon i {
    width: 40px;
    height: 40px;
    color: var(--foreground);
    transition: color 0.4s ease;
}

@media (max-width: 480px) {
    .minimal-icon i {
        width: 35px;
        height: 35px;
    }
}

.social-minimal-card:hover .minimal-icon i {
    color: white;
}

/* Name */
.minimal-name {
    position: relative;
    z-index: 1;
    font-size: 1.5rem;
    font-weight: 900;
    color: var(--foreground);
    margin: 0 0 0.5rem 0;
    transition: all 0.4s ease;
}

@media (max-width: 480px) {
    .minimal-name {
        font-size: 1.3rem;
    }
}

.social-minimal-card:hover .minimal-name {
    transform: scale(1.08);
}

.instagram-minimal:hover .minimal-name {
    color: #d62976;
}

.facebook-minimal:hover .minimal-name {
    color: #0866ff;
}

.tiktok-minimal:hover .minimal-name {
    color: #fe2c55;
}

.whatsapp-minimal:hover .minimal-name {
    color: #25D366;
}

/* Stat */
.minimal-stat {
    position: relative;
    z-index: 1;
    font-size: 1rem;
    font-weight: 700;
    color: var(--muted-foreground);
    margin: 0;
    transition: all 0.4s ease;
}

@media (max-width: 480px) {
    .minimal-stat {
        font-size: 0.9rem;
    }
}

.social-minimal-card:hover .minimal-stat {
    transform: translateY(-3px);
    color: var(--foreground);
}

/* Old social styles - keeping for compatibility */
.social-grid {
    position: relative;
    border-radius: 2rem;
    padding: 0;
    text-decoration: none;
    display: flex;
    aspect-ratio: 1;
    overflow: hidden;
    transition: all 0.6s cubic-bezier(0.23, 1, 0.32, 1);
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.3);
    transform-style: preserve-3d;
}

.social-elite-card:hover {
    transform: translateY(-15px) rotateX(5deg) rotateY(5deg) scale(1.05);
    box-shadow: 0 30px 80px rgba(0, 0, 0, 0.4);
}

/* Background Pattern */
.elite-bg-pattern {
    position: absolute;
    inset: 0;
    opacity: 0.1;
    background-image: 
        repeating-linear-gradient(45deg, transparent, transparent 10px, rgba(255,255,255,.03) 10px, rgba(255,255,255,.03) 20px),
        repeating-linear-gradient(-45deg, transparent, transparent 10px, rgba(255,255,255,.03) 10px, rgba(255,255,255,.03) 20px);
    pointer-events: none;
}

/* Glow Effect */
.elite-glow {
    position: absolute;
    inset: -2px;
    border-radius: 2rem;
    opacity: 0;
    transition: opacity 0.6s ease;
    pointer-events: none;
    filter: blur(20px);
}

.social-elite-card:hover .elite-glow {
    opacity: 0.8;
    animation: pulseGlow 2s ease-in-out infinite;
}

@keyframes pulseGlow {
    0%, 100% { opacity: 0.6; transform: scale(0.95); }
    50% { opacity: 1; transform: scale(1.05); }
}

/* Platform Specific Gradients */
.instagram-elite {
    background: linear-gradient(135deg, #833ab4 0%, #fd1d1d 50%, #fcb045 100%);
}

.instagram-elite .elite-glow {
    background: linear-gradient(135deg, #833ab4, #fd1d1d, #fcb045);
}

.facebook-elite {
    background: linear-gradient(135deg, #0a4d92 0%, #1877f2 50%, #42a5f5 100%);
}

.facebook-elite .elite-glow {
    background: linear-gradient(135deg, #0a4d92, #1877f2, #42a5f5);
}

.tiktok-elite {
    background: linear-gradient(135deg, #000000 0%, #fe2c55 50%, #00f2ea 100%);
}

.tiktok-elite .elite-glow {
    background: linear-gradient(135deg, #000000, #fe2c55, #00f2ea);
}

.whatsapp-elite {
    background: linear-gradient(135deg, #075e54 0%, #25d366 50%, #128c7e 100%);
}

.whatsapp-elite .elite-glow {
    background: linear-gradient(135deg, #075e54, #25d366, #128c7e);
}

/* Content Layout */
.elite-content {
    position: relative;
    z-index: 2;
    width: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding: 2rem 1.5rem;
}

@media (max-width: 480px) {
    .elite-content {
        padding: 1.5rem 1.25rem;
    }
}

/* Icon Wrapper with Orbit */
.elite-icon-wrapper {
    position: relative;
    margin-bottom: 1.5rem;
}

@media (max-width: 480px) {
    .elite-icon-wrapper {
        margin-bottom: 1.25rem;
    }
}

.elite-icon-orbit {
    position: absolute;
    top: 50%;
    left: 50%;
    width: 90px;
    height: 90px;
    border: 2px dashed rgba(255, 255, 255, 0.3);
    border-radius: 50%;
    transform: translate(-50%, -50%);
    animation: rotateOrbit 8s linear infinite;
}

@media (max-width: 480px) {
    .elite-icon-orbit {
        width: 75px;
        height: 75px;
    }
}

@keyframes rotateOrbit {
    from { transform: translate(-50%, -50%) rotate(0deg); }
    to { transform: translate(-50%, -50%) rotate(360deg); }
}

.social-elite-card:hover .elite-icon-orbit {
    animation: rotateOrbit 4s linear infinite;
    border-color: rgba(255, 255, 255, 0.6);
    box-shadow: 0 0 20px rgba(255, 255, 255, 0.3);
}

.elite-icon {
    width: 70px;
    height: 70px;
    background: rgba(255, 255, 255, 0.15);
    backdrop-filter: blur(10px);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    border: 2px solid rgba(255, 255, 255, 0.3);
    transition: all 0.5s ease;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
}

@media (max-width: 480px) {
    .elite-icon {
        width: 60px;
        height: 60px;
    }
}

.social-elite-card:hover .elite-icon {
    transform: scale(1.15) rotateY(180deg);
    background: rgba(255, 255, 255, 0.25);
    border-color: rgba(255, 255, 255, 0.6);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.5);
}

.elite-icon i {
    width: 35px;
    height: 35px;
    color: white;
    filter: drop-shadow(0 2px 4px rgba(0, 0, 0, 0.3));
}

@media (max-width: 480px) {
    .elite-icon i {
        width: 30px;
        height: 30px;
    }
}

/* Title */
.elite-title {
    font-size: 1.5rem;
    font-weight: 900;
    color: white;
    margin: 0 0 1rem 0;
    text-transform: uppercase;
    letter-spacing: 2px;
    text-shadow: 0 4px 8px rgba(0, 0, 0, 0.4);
    transition: all 0.4s ease;
}

@media (max-width: 480px) {
    .elite-title {
        font-size: 1.25rem;
        letter-spacing: 1.5px;
    }
}

.social-elite-card:hover .elite-title {
    transform: scale(1.1);
    text-shadow: 0 6px 12px rgba(0, 0, 0, 0.6);
}

/* Separator */
.elite-separator {
    display: flex;
    gap: 0.5rem;
    margin-bottom: 1.25rem;
}

@media (max-width: 480px) {
    .elite-separator {
        margin-bottom: 1rem;
    }
}

.elite-separator span {
    width: 8px;
    height: 8px;
    background: rgba(255, 255, 255, 0.4);
    border-radius: 50%;
    transition: all 0.4s ease;
}

.social-elite-card:hover .elite-separator span {
    background: white;
    box-shadow: 0 0 10px rgba(255, 255, 255, 0.8);
}

.social-elite-card:hover .elite-separator span:nth-child(1) {
    animation: bounce 0.6s ease-in-out infinite;
}

.social-elite-card:hover .elite-separator span:nth-child(2) {
    animation: bounce 0.6s ease-in-out 0.2s infinite;
}

.social-elite-card:hover .elite-separator span:nth-child(3) {
    animation: bounce 0.6s ease-in-out 0.4s infinite;
}

@keyframes bounce {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-8px); }
}

/* Stats */
.elite-stats {
    display: flex;
    justify-content: center;
}

.elite-stat {
    text-align: center;
}

.elite-stat-num {
    display: block;
    font-size: 2rem;
    font-weight: 900;
    color: white;
    text-shadow: 0 4px 8px rgba(0, 0, 0, 0.4);
    margin-bottom: 0.25rem;
    transition: all 0.4s ease;
}

@media (max-width: 480px) {
    .elite-stat-num {
        font-size: 1.75rem;
    }
}

.social-elite-card:hover .elite-stat-num {
    transform: scale(1.2);
    text-shadow: 0 6px 12px rgba(0, 0, 0, 0.6);
}

.elite-stat-label {
    display: block;
    font-size: 0.85rem;
    font-weight: 700;
    color: rgba(255, 255, 255, 0.9);
    text-transform: uppercase;
    letter-spacing: 1px;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.3);
}

@media (max-width: 480px) {
    .elite-stat-label {
        font-size: 0.75rem;
    }
}

/* Old social styles - keeping for compatibility */
.social-grid {
    position: relative;
    background: white;
    border-radius: 1.5rem;
    padding: 1.75rem 1.25rem;
    text-decoration: none;
    display: flex;
    flex-direction: column;
    align-items: center;
    overflow: hidden;
    transition: all 0.5s cubic-bezier(0.34, 1.56, 0.64, 1);
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.1);
    border: 2px solid transparent;
    aspect-ratio: 1;
}

@media (max-width: 480px) {
    .social-supreme-card {
        padding: 1.25rem 1rem;
    }
}

.social-supreme-card::before {
    content: '';
    position: absolute;
    inset: 0;
    background: inherit;
    opacity: 0;
    transition: opacity 0.5s ease;
}

.social-supreme-card:hover {
    transform: translateY(-15px) scale(1.03);
    box-shadow: 0 25px 60px rgba(0, 0, 0, 0.2);
}

/* Shine Effect */
.supreme-shine {
    position: absolute;
    inset: 0;
    background: linear-gradient(120deg, transparent 0%, rgba(255, 255, 255, 0.4) 50%, transparent 100%);
    transform: translateX(-100%) skewX(-25deg);
    transition: transform 0.8s ease;
    pointer-events: none;
}

.social-supreme-card:hover .supreme-shine {
    transform: translateX(100%) skewX(-25deg);
}

/* Floating Particles */
.supreme-particles {
    position: absolute;
    inset: 0;
    pointer-events: none;
    overflow: hidden;
}

.supreme-particles span {
    position: absolute;
    width: 6px;
    height: 6px;
    background: rgba(255, 255, 255, 0.5);
    border-radius: 50%;
    opacity: 0;
    transition: all 0.6s ease;
}

.social-supreme-card:hover .supreme-particles span {
    opacity: 1;
    animation: floatParticle 2s ease-in-out infinite;
}

.supreme-particles span:nth-child(1) { left: 20%; animation-delay: 0s; }
.supreme-particles span:nth-child(2) { left: 40%; animation-delay: 0.3s; }
.supreme-particles span:nth-child(3) { left: 60%; animation-delay: 0.6s; }
.supreme-particles span:nth-child(4) { left: 80%; animation-delay: 0.9s; }
.supreme-particles span:nth-child(5) { left: 50%; animation-delay: 1.2s; }

@keyframes floatParticle {
    0% { 
        bottom: -10px;
        transform: translateY(0) scale(0);
    }
    50% {
        transform: translateY(-50px) scale(1);
    }
    100% { 
        bottom: 100%;
        transform: translateY(-100px) scale(0);
    }
}

/* Icon Wrapper with Ring Animation */
.supreme-icon-wrapper {
    position: relative;
    margin-bottom: 1rem;
    z-index: 2;
}

@media (max-width: 480px) {
    .supreme-icon-wrapper {
        margin-bottom: 0.75rem;
    }
}

.supreme-icon-ring {
    position: absolute;
    top: 50%;
    left: 50%;
    width: 70px;
    height: 70px;
    border-radius: 50%;
    border: 2px solid;
    transform: translate(-50%, -50%) scale(1);
    opacity: 0;
    transition: all 0.5s ease;
}

@media (max-width: 480px) {
    .supreme-icon-ring {
        width: 60px;
        height: 60px;
    }
}

.social-supreme-card:hover .supreme-icon-ring {
    transform: translate(-50%, -50%) scale(1.3);
    opacity: 0.3;
}

.supreme-icon-bg {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    transition: all 0.5s cubic-bezier(0.34, 1.56, 0.64, 1);
    box-shadow: 0 12px 30px rgba(0, 0, 0, 0.2);
}

@media (max-width: 480px) {
    .supreme-icon-bg {
        width: 50px;
        height: 50px;
    }
}

.social-supreme-card:hover .supreme-icon-bg {
    transform: rotate(360deg) scale(1.1);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.3);
}

.supreme-icon-bg i {
    width: 30px;
    height: 30px;
    color: white;
}

@media (max-width: 480px) {
    .supreme-icon-bg i {
        width: 26px;
        height: 26px;
    }
}

/* Platform Specific Colors */
.instagram-supreme .supreme-icon-bg {
    background: linear-gradient(135deg, #feda75, #fa7e1e, #d62976, #962fbf, #4f5bd5);
}

.instagram-supreme .supreme-icon-ring {
    border-color: #d62976;
}

.instagram-supreme:hover {
    border-color: #d62976;
}

.facebook-supreme .supreme-icon-bg {
    background: linear-gradient(135deg, #0866ff, #1877f2);
}

.facebook-supreme .supreme-icon-ring {
    border-color: #0866ff;
}

.facebook-supreme:hover {
    border-color: #0866ff;
}

.tiktok-supreme .supreme-icon-bg {
    background: linear-gradient(135deg, #25f4ee, #fe2c55, #000000);
}

.tiktok-supreme .supreme-icon-ring {
    border-color: #fe2c55;
}

.tiktok-supreme:hover {
    border-color: #fe2c55;
}

.whatsapp-supreme .supreme-icon-bg {
    background: linear-gradient(135deg, #25D366, #128C7E);
}

.whatsapp-supreme .supreme-icon-ring {
    border-color: #25D366;
}

.whatsapp-supreme:hover {
    border-color: #25D366;
}

/* Content Section */
.supreme-content {
    position: relative;
    z-index: 2;
    width: 100%;
    text-align: center;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    flex: 1;
}

.supreme-title {
    font-size: 1.25rem;
    font-weight: 900;
    margin: 0 0 0.25rem 0;
    color: var(--foreground);
    transition: all 0.4s ease;
}

@media (max-width: 480px) {
    .supreme-title {
        font-size: 1.1rem;
    }
}

.social-supreme-card:hover .supreme-title {
    transform: scale(1.08);
    color: var(--pink);
}

.supreme-handle {
    font-size: 0.75rem;
    color: var(--muted-foreground);
    margin: 0 0 0.75rem 0;
    font-weight: 600;
    transition: all 0.3s ease;
}

@media (max-width: 480px) {
    .supreme-handle {
        font-size: 0.7rem;
        margin-bottom: 0.5rem;
    }
}

.social-supreme-card:hover .supreme-handle {
    color: var(--foreground);
}

/* Animated Divider */
.supreme-divider {
    width: 40px;
    height: 2px;
    background: linear-gradient(90deg, transparent, var(--pink), transparent);
    margin: 0 auto 0.75rem auto;
    border-radius: 2px;
    transition: all 0.4s ease;
}

@media (max-width: 480px) {
    .supreme-divider {
        width: 35px;
        margin-bottom: 0.5rem;
    }
}

.social-supreme-card:hover .supreme-divider {
    width: 60px;
    background: var(--pink);
    box-shadow: 0 0 12px var(--pink);
}

/* Stats Section */
.supreme-stats {
    display: flex;
    gap: 0.75rem;
    justify-content: center;
    margin-bottom: 1rem;
}

@media (max-width: 480px) {
    .supreme-stats {
        gap: 0.5rem;
        margin-bottom: 0.75rem;
    }
}

.supreme-stat-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.25rem;
    transition: all 0.3s ease;
}

.social-supreme-card:hover .supreme-stat-item {
    transform: translateY(-3px);
}

.supreme-stat-icon {
    font-size: 1rem;
    transition: all 0.4s ease;
}

@media (max-width: 480px) {
    .supreme-stat-icon {
        font-size: 0.9rem;
    }
}

.social-supreme-card:hover .supreme-stat-icon {
    transform: scale(1.3) rotate(360deg);
}

.supreme-stat-value {
    font-size: 1rem;
    font-weight: 900;
    color: var(--foreground);
    transition: all 0.3s ease;
}

@media (max-width: 480px) {
    .supreme-stat-value {
        font-size: 0.9rem;
    }
}

.social-supreme-card:hover .supreme-stat-value {
    color: var(--pink);
    transform: scale(1.15);
}

.supreme-stat-label {
    font-size: 0.65rem;
    color: var(--muted-foreground);
    font-weight: 600;
}

@media (max-width: 480px) {
    .supreme-stat-label {
        font-size: 0.6rem;
    }
}

/* Call to Action Button */
.supreme-cta {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    padding: 0.65rem 1.25rem;
    background: var(--accent);
    border: none;
    border-radius: 2rem;
    font-weight: 800;
    font-size: 0.8rem;
    color: var(--foreground);
    cursor: pointer;
    transition: all 0.4s cubic-bezier(0.34, 1.56, 0.64, 1);
    position: relative;
    overflow: hidden;
    width: 100%;
}

@media (max-width: 480px) {
    .supreme-cta {
        padding: 0.55rem 1rem;
        font-size: 0.75rem;
    }
}

.supreme-cta::before {
    content: '';
    position: absolute;
    inset: 0;
    background: var(--pink);
    transform: scaleX(0);
    transform-origin: left;
    transition: transform 0.4s ease;
    z-index: 0;
}

.social-supreme-card:hover .supreme-cta {
    transform: scale(1.08);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
}

.social-supreme-card:hover .supreme-cta::before {
    transform: scaleX(1);
}

.supreme-cta span,
.supreme-cta-icon {
    position: relative;
    z-index: 1;
    transition: all 0.3s ease;
}

.social-supreme-card:hover .supreme-cta span,
.social-supreme-card:hover .supreme-cta-icon {
    color: white;
}

.supreme-cta-icon {
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.4s ease;
}

.supreme-cta-icon i {
    width: 16px;
    height: 16px;
}

@media (max-width: 480px) {
    .supreme-cta-icon i {
        width: 14px;
        height: 14px;
    }
}

.social-supreme-card:hover .supreme-cta-icon {
    transform: translate(-5px, -5px);
}

/* Old social styles - keeping for compatibility */
.social-grid {
    position: relative;
    background: white;
    border-radius: 1.75rem;
    padding: 2rem 1.75rem;
    text-decoration: none;
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    overflow: hidden;
    border: 2px solid transparent;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.08);
}

@media (max-width: 480px) {
    .social-luxury-card {
        padding: 1.5rem 1.25rem;
    }
}

.social-luxury-card:hover {
    transform: translateY(-12px) scale(1.02);
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.15);
}

.luxury-gradient {
    position: absolute;
    inset: 0;
    opacity: 0;
    transition: opacity 0.4s ease;
    z-index: 0;
}

.social-luxury-card:hover .luxury-gradient {
    opacity: 0.08;
}

.instagram-luxury .luxury-gradient {
    background: radial-gradient(circle at top, #feda75, #fa7e1e, #d62976, #962fbf, #4f5bd5);
}

.instagram-luxury:hover {
    border-color: #d62976;
}

.facebook-luxury .luxury-gradient {
    background: radial-gradient(circle at top, #0866ff, #1877f2);
}

.facebook-luxury:hover {
    border-color: #0866ff;
}

.tiktok-luxury .luxury-gradient {
    background: radial-gradient(circle at top, #25f4ee, #fe2c55, #000000);
}

.tiktok-luxury:hover {
    border-color: #fe2c55;
}

.whatsapp-luxury .luxury-gradient {
    background: radial-gradient(circle at top, #25D366, #128C7E);
}

.whatsapp-luxury:hover {
    border-color: #25D366;
}

.luxury-header {
    position: relative;
    z-index: 1;
    margin-bottom: 1.5rem;
}

.luxury-icon-circle {
    width: 85px;
    height: 85px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.4s ease;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.15);
}

@media (max-width: 480px) {
    .luxury-icon-circle {
        width: 70px;
        height: 70px;
    }
}

.instagram-luxury .luxury-icon-circle {
    background: linear-gradient(135deg, #feda75, #fa7e1e, #d62976, #962fbf, #4f5bd5);
}

.facebook-luxury .luxury-icon-circle {
    background: linear-gradient(135deg, #0866ff, #1877f2);
}

.tiktok-luxury .luxury-icon-circle {
    background: linear-gradient(135deg, #25f4ee, #fe2c55, #000000);
}

.whatsapp-luxury .luxury-icon-circle {
    background: linear-gradient(135deg, #25D366, #128C7E);
}

.social-luxury-card:hover .luxury-icon-circle {
    transform: scale(1.15) rotate(360deg);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.25);
}

.luxury-icon-circle svg {
    width: 38px;
    height: 38px;
    color: white;
}

@media (max-width: 480px) {
    .luxury-icon-circle svg {
        width: 32px;
        height: 32px;
    }
}

.luxury-body {
    position: relative;
    z-index: 1;
    width: 100%;
}

.luxury-body h3 {
    font-size: 1.5rem;
    font-weight: 800;
    margin: 0 0 0.5rem 0;
    color: var(--foreground);
    transition: all 0.3s ease;
}

@media (max-width: 480px) {
    .luxury-body h3 {
        font-size: 1.25rem;
    }
}

.social-luxury-card:hover .luxury-body h3 {
    color: var(--pink);
    transform: scale(1.05);
}

.luxury-handle {
    font-size: 0.9rem;
    color: var(--muted-foreground);
    margin: 0 0 1.5rem 0;
    font-weight: 600;
}

@media (max-width: 480px) {
    .luxury-handle {
        font-size: 0.8rem;
        margin-bottom: 1rem;
    }
}

.luxury-stats-row {
    display: flex;
    gap: 1rem;
    justify-content: center;
    margin-bottom: 1.5rem;
    padding: 1rem 0;
    border-top: 1px solid var(--border);
    border-bottom: 1px solid var(--border);
}

@media (max-width: 480px) {
    .luxury-stats-row {
        gap: 0.75rem;
        padding: 0.75rem 0;
        margin-bottom: 1rem;
    }
}

.luxury-stat {
    display: flex;
    flex-direction: column;
    gap: 0.25rem;
}

.stat-number {
    font-size: 1.25rem;
    font-weight: 800;
    color: var(--foreground);
    transition: all 0.3s ease;
}

@media (max-width: 480px) {
    .stat-number {
        font-size: 1.1rem;
    }
}

.social-luxury-card:hover .stat-number {
    color: var(--pink);
    transform: scale(1.1);
}

.stat-label {
    font-size: 0.75rem;
    color: var(--muted-foreground);
    font-weight: 600;
}

@media (max-width: 480px) {
    .stat-label {
        font-size: 0.7rem;
    }
}

.luxury-btn {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    padding: 0.75rem 1.5rem;
    background: var(--accent);
    border-radius: 2rem;
    font-weight: 700;
    color: var(--foreground);
    transition: all 0.3s ease;
}

@media (max-width: 480px) {
    .luxury-btn {
        padding: 0.6rem 1.25rem;
        font-size: 0.875rem;
    }
}

.social-luxury-card:hover .luxury-btn {
    background: var(--pink);
    color: white;
    transform: scale(1.05);
}

.luxury-btn svg {
    width: 18px;
    height: 18px;
    transition: transform 0.3s ease;
}

.social-luxury-card:hover .luxury-btn svg {
    transform: translate(-3px, -3px);
}

/* Old social styles - keeping for compatibility */
.social-grid {
    display: grid;
    gap: 1.5rem;
    max-width: 1536px;
    margin: 0 auto;
}

@media (max-width: 480px) {
    .social-elegant-grid {
        gap: 1.5rem;
        grid-template-columns: 1fr;
    }
}

.social-elegant-card {
    display: flex;
    align-items: center;
    gap: 1.5rem;
    background: white;
    padding: 2rem;
    border-radius: 1.5rem;
    text-decoration: none;
    transition: all 0.3s ease;
    border: 2px solid var(--border);
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.05);
}

@media (max-width: 480px) {
    .social-elegant-card {
        padding: 1.5rem;
        gap: 1.25rem;
    }
}

.social-elegant-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.12);
    border-color: var(--pink);
}

.social-elegant-icon {
    width: 70px;
    height: 70px;
    border-radius: 1.25rem;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    transition: all 0.3s ease;
}

@media (max-width: 480px) {
    .social-elegant-icon {
        width: 60px;
        height: 60px;
    }
}

.social-elegant-card:hover .social-elegant-icon {
    transform: scale(1.1) rotate(-5deg);
}

.social-elegant-icon svg {
    width: 32px;
    height: 32px;
    color: white;
}

@media (max-width: 480px) {
    .social-elegant-icon svg {
        width: 28px;
        height: 28px;
    }
}

.instagram-bg {
    background: linear-gradient(135deg, #833ab4 0%, #fd1d1d 50%, #fcb045 100%);
}

.facebook-bg {
    background: linear-gradient(135deg, #0866ff 0%, #1877f2 100%);
}

.tiktok-bg {
    background: linear-gradient(135deg, #000000 0%, #fe2c55 100%);
}

.whatsapp-bg {
    background: linear-gradient(135deg, #25D366 0%, #128C7E 100%);
}

.social-elegant-info {
    display: flex;
    flex-direction: column;
    gap: 0.25rem;
}

.social-elegant-info h3 {
    font-size: 1.35rem;
    font-weight: 700;
    margin: 0;
    color: var(--foreground);
    transition: color 0.3s ease;
}

@media (max-width: 480px) {
    .social-elegant-info h3 {
        font-size: 1.2rem;
    }
}

.social-elegant-card:hover .social-elegant-info h3 {
    color: var(--pink);
}

.social-elegant-info p {
    font-size: 0.95rem;
    color: var(--muted-foreground);
    margin: 0;
    font-weight: 500;
}

@media (max-width: 480px) {
    .social-elegant-info p {
        font-size: 0.875rem;
    }
}

/* Old social styles - keeping for compatibility */
.social-grid {
    display: grid;
    gap: 1.5rem;
    max-width: 1536px;
    margin: 0 auto;
}

@media (max-width: 480px) {
    .social-glass-grid {
        gap: 1.5rem;
        grid-template-columns: 1fr;
    }
}

.social-glass-card {
    position: relative;
    background: rgba(255, 255, 255, 0.7);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border-radius: 2rem;
    padding: 2.5rem 2rem;
    overflow: hidden;
    text-decoration: none;
    display: block;
    border: 1px solid rgba(255, 255, 255, 0.3);
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.1);
    transition: all 0.6s cubic-bezier(0.23, 1, 0.32, 1);
    cursor: pointer;
}

@media (max-width: 480px) {
    .social-glass-card {
        padding: 2rem 1.5rem;
    }
}

.social-glass-card::before {
    content: '';
    position: absolute;
    inset: 0;
    border-radius: 2rem;
    padding: 2px;
    background: linear-gradient(135deg, transparent, rgba(255, 255, 255, 0.5), transparent);
    mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
    -webkit-mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
    -webkit-mask-composite: xor;
    mask-composite: exclude;
    opacity: 0;
    transition: opacity 0.6s ease;
}

.social-glass-card:hover::before {
    opacity: 1;
}

.social-glass-card:hover {
    transform: translateY(-20px) scale(1.05);
    box-shadow: 0 40px 80px rgba(0, 0, 0, 0.25);
    border-color: rgba(255, 255, 255, 0.6);
    background: rgba(255, 255, 255, 0.85);
}

.glass-gradient {
    position: absolute;
    inset: -50%;
    opacity: 0.15;
    filter: blur(40px);
    transition: all 0.6s ease;
    animation: gradientRotate 8s ease-in-out infinite;
}

@keyframes gradientRotate {
    0%, 100% { transform: rotate(0deg) scale(1); }
    50% { transform: rotate(180deg) scale(1.2); }
}

.social-glass-card:hover .glass-gradient {
    opacity: 0.3;
    filter: blur(30px);
}

.instagram-gradient {
    background: radial-gradient(circle, #feda75 0%, #fa7e1e 25%, #d62976 50%, #962fbf 75%, #4f5bd5 100%);
}

.facebook-gradient {
    background: radial-gradient(circle, #0866ff 0%, #0a7cff 50%, #1877f2 100%);
}

.tiktok-gradient {
    background: radial-gradient(circle, #25f4ee 0%, #fe2c55 50%, #000000 100%);
}

.whatsapp-gradient {
    background: radial-gradient(circle, #25D366 0%, #128C7E 50%, #075e54 100%);
}

.glass-content {
    position: relative;
    z-index: 2;
    text-align: center;
}

.glass-icon-wrapper {
    position: relative;
    display: inline-block;
    margin-bottom: 1.5rem;
}

.glass-icon {
    width: 80px;
    height: 80px;
    border-radius: 2rem;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
    transition: all 0.5s cubic-bezier(0.68, -0.55, 0.265, 1.55);
    position: relative;
    z-index: 2;
    animation: iconFloat 3s ease-in-out infinite;
}

@keyframes iconFloat {
    0%, 100% { transform: translateY(0px); }
    50% { transform: translateY(-10px); }
}

@media (max-width: 480px) {
    .glass-icon {
        width: 70px;
        height: 70px;
    }
}

.social-glass-card:hover .glass-icon {
    transform: rotateY(360deg) scale(1.15);
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.4);
    animation: none;
}

.instagram-icon {
    background: linear-gradient(135deg, #feda75, #fa7e1e, #d62976, #962fbf, #4f5bd5);
}

.facebook-icon {
    background: linear-gradient(135deg, #0866ff, #1877f2);
}

.tiktok-icon {
    background: linear-gradient(135deg, #25f4ee, #fe2c55, #000000);
}

.whatsapp-icon {
    background: linear-gradient(135deg, #25D366, #128C7E);
}

.glass-icon svg {
    width: 36px;
    height: 36px;
    color: white;
    filter: drop-shadow(0 2px 4px rgba(0, 0, 0, 0.2));
}

@media (max-width: 480px) {
    .glass-icon svg {
        width: 32px;
        height: 32px;
    }
}

.glass-pulse {
    position: absolute;
    inset: -10px;
    border-radius: 2rem;
    background: inherit;
    opacity: 0;
    animation: pulse 2s ease-in-out infinite;
}

@keyframes pulse {
    0%, 100% {
        transform: scale(1);
        opacity: 0;
    }
    50% {
        transform: scale(1.2);
        opacity: 0.3;
    }
}

.glass-title {
    font-size: 1.75rem;
    font-weight: 800;
    margin: 0 0 0.5rem 0;
    background: linear-gradient(135deg, var(--foreground) 0%, var(--pink) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    transition: all 0.4s ease;
    text-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
}

@media (max-width: 480px) {
    .glass-title {
        font-size: 1.5rem;
    }
}

.social-glass-card:hover .glass-title {
    transform: scale(1.05);
    letter-spacing: 0.05em;
}

.glass-subtitle {
    font-size: 1rem;
    color: var(--muted-foreground);
    margin: 0 0 1.25rem 0;
    font-weight: 600;
}

@media (max-width: 480px) {
    .glass-subtitle {
        font-size: 0.9rem;
    }
}

.glass-divider {
    height: 3px;
    background: linear-gradient(90deg, 
        transparent, 
        rgba(233, 165, 186, 0.3) 10%,
        var(--pink) 50%, 
        rgba(233, 165, 186, 0.3) 90%,
        transparent);
    margin: 1.25rem 0;
    border-radius: 3px;
    box-shadow: 0 2px 10px rgba(233, 165, 186, 0.3);
    animation: dividerGlow 3s ease-in-out infinite;
}

@keyframes dividerGlow {
    0%, 100% { opacity: 0.7; }
    50% { opacity: 1; box-shadow: 0 2px 15px rgba(233, 165, 186, 0.5); }
}

.glass-stats {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.75rem;
    font-size: 0.95rem;
    color: var(--muted-foreground);
    font-weight: 600;
}

@media (max-width: 480px) {
    .glass-stats {
        font-size: 0.85rem;
        gap: 0.5rem;
    }
}

.glass-stat {
    transition: all 0.3s ease;
    padding: 0.4rem 0.8rem;
    border-radius: 1rem;
    background: rgba(255, 255, 255, 0.5);
}

.social-glass-card:hover .glass-stat {
    color: white;
    transform: scale(1.1);
    background: var(--pink);
    box-shadow: 0 4px 15px rgba(233, 165, 186, 0.5);
}

.glass-dot {
    color: var(--pink);
    font-size: 1.2rem;
}

.glass-shine {
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: linear-gradient(45deg, 
        transparent 30%, 
        rgba(255, 255, 255, 0.8) 50%, 
        transparent 70%);
    opacity: 0;
    transition: all 0.8s ease;
    pointer-events: none;
}

.social-glass-card:hover .glass-shine {
    opacity: 1;
    animation: shineMove 1.5s ease-in-out;
}

@keyframes shineMove {
    0% {
        transform: translate(-100%, -100%);
    }
    100% {
        transform: translate(100%, 100%);
    }
}

/* Old social styles - keeping for compatibility */
.social-grid {
    display: grid;
    gap: 1.5rem;
    max-width: 1536px;
    margin: 0 auto;
}

@media (max-width: 480px) {
    .social-premium-grid {
        gap: 1.5rem;
        grid-template-columns: 1fr;
    }
}

.social-premium-card {
    position: relative;
    background: white;
    border-radius: 1.5rem;
    padding: 2rem;
    overflow: hidden;
    text-decoration: none;
    display: block;
    transition: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
    transform-style: preserve-3d;
    border: 1px solid rgba(0, 0, 0, 0.06);
}

@media (max-width: 480px) {
    .social-premium-card {
        padding: 1.5rem;
    }
}

.social-premium-card:hover {
    transform: translateY(-15px) rotateX(5deg);
    box-shadow: 0 30px 60px rgba(0, 0, 0, 0.2);
}

.social-premium-bg {
    position: absolute;
    inset: 0;
    opacity: 0.05;
    transition: opacity 0.5s ease;
}

.social-premium-card:hover .social-premium-bg {
    opacity: 0.15;
}

.social-premium-glow {
    position: absolute;
    inset: -2px;
    opacity: 0;
    border-radius: 1.5rem;
    transition: opacity 0.5s ease;
    z-index: -1;
    filter: blur(20px);
}

.social-premium-card:hover .social-premium-glow {
    opacity: 0.8;
}

/* Instagram Styling */
.social-premium-card.instagram .social-premium-bg {
    background: radial-gradient(circle at 30% 107%, #fdf497 0%, #fdf497 5%, #fd5949 45%,#d6249f 60%,#285AEB 90%);
}

.social-premium-card.instagram .social-premium-glow {
    background: radial-gradient(circle at 30% 107%, #fdf497 0%, #fdf497 5%, #fd5949 45%,#d6249f 60%,#285AEB 90%);
}

.social-premium-card.instagram .social-premium-icon {
    background: radial-gradient(circle at 30% 107%, #fdf497 0%, #fdf497 5%, #fd5949 45%,#d6249f 60%,#285AEB 90%);
}

.social-premium-card.instagram .social-premium-badge {
    background: linear-gradient(135deg, #d6249f, #285AEB);
}

/* Facebook Styling */
.social-premium-card.facebook .social-premium-bg {
    background: linear-gradient(135deg, #0866ff 0%, #0a7cff 100%);
}

.social-premium-card.facebook .social-premium-glow {
    background: linear-gradient(135deg, #0866ff 0%, #0a7cff 100%);
}

.social-premium-card.facebook .social-premium-icon {
    background: linear-gradient(135deg, #0866ff 0%, #0a7cff 100%);
}

.social-premium-card.facebook .social-premium-badge {
    background: linear-gradient(135deg, #0866ff, #0a7cff);
}

/* TikTok Styling */
.social-premium-card.tiktok .social-premium-bg {
    background: linear-gradient(135deg, #000000 0%, #fe2c55 50%, #25f4ee 100%);
}

.social-premium-card.tiktok .social-premium-glow {
    background: linear-gradient(135deg, #000000 0%, #fe2c55 50%, #25f4ee 100%);
}

.social-premium-card.tiktok .social-premium-icon {
    background: linear-gradient(135deg, #000000 0%, #fe2c55 50%, #25f4ee 100%);
}

.social-premium-card.tiktok .social-premium-badge {
    background: linear-gradient(135deg, #fe2c55, #25f4ee);
}

/* WhatsApp Styling */
.social-premium-card.whatsapp .social-premium-bg {
    background: linear-gradient(135deg, #25D366 0%, #128C7E 100%);
}

.social-premium-card.whatsapp .social-premium-glow {
    background: linear-gradient(135deg, #25D366 0%, #128C7E 100%);
}

.social-premium-card.whatsapp .social-premium-icon {
    background: linear-gradient(135deg, #25D366 0%, #128C7E 100%);
}

.social-premium-card.whatsapp .social-premium-badge {
    background: linear-gradient(135deg, #25D366, #128C7E);
}

.social-premium-content {
    position: relative;
    z-index: 1;
}

.social-premium-header {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    margin-bottom: 1.25rem;
}

.social-premium-icon {
    width: 60px;
    height: 60px;
    border-radius: 1.25rem;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.2);
    transition: all 0.4s ease;
}

@media (max-width: 480px) {
    .social-premium-icon {
        width: 50px;
        height: 50px;
    }
}

.social-premium-card:hover .social-premium-icon {
    transform: scale(1.15) rotate(-10deg);
}

.social-premium-icon svg {
    width: 28px;
    height: 28px;
    color: white;
}

@media (max-width: 480px) {
    .social-premium-icon svg {
        width: 24px;
        height: 24px;
    }
}

.social-premium-badge {
    padding: 0.35rem 0.75rem;
    border-radius: 2rem;
    font-size: 0.75rem;
    font-weight: 700;
    color: white;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
}

@media (max-width: 480px) {
    .social-premium-badge {
        padding: 0.25rem 0.6rem;
        font-size: 0.7rem;
    }
}

.social-premium-content h3 {
    font-size: 1.5rem;
    font-weight: 800;
    margin: 0 0 0.5rem 0;
    color: var(--foreground);
}

@media (max-width: 480px) {
    .social-premium-content h3 {
        font-size: 1.25rem;
    }
}

.social-handle {
    font-size: 0.95rem;
    color: var(--muted-foreground);
    margin: 0 0 1.25rem 0;
    font-weight: 500;
}

@media (max-width: 480px) {
    .social-handle {
        font-size: 0.85rem;
    }
}

.social-stats {
    display: flex;
    gap: 1.5rem;
    padding: 1rem 0;
    border-top: 1px solid rgba(0, 0, 0, 0.08);
    border-bottom: 1px solid rgba(0, 0, 0, 0.08);
    margin-bottom: 1.25rem;
}

@media (max-width: 480px) {
    .social-stats {
        gap: 1rem;
        padding: 0.75rem 0;
    }
}

.social-stats .stat {
    display: flex;
    flex-direction: column;
    gap: 0.25rem;
}

.social-stats .stat strong {
    font-size: 1.25rem;
    font-weight: 800;
    color: var(--foreground);
}

@media (max-width: 480px) {
    .social-stats .stat strong {
        font-size: 1.1rem;
    }
}

.social-stats .stat span {
    font-size: 0.8rem;
    color: var(--muted-foreground);
    font-weight: 500;
}

@media (max-width: 480px) {
    .social-stats .stat span {
        font-size: 0.75rem;
    }
}

.social-cta {
    display: flex;
    align-items: center;
    justify-content: space-between;
    font-weight: 700;
    color: var(--pink);
    transition: all 0.3s ease;
}

@media (max-width: 480px) {
    .social-cta {
        font-size: 0.9rem;
    }
}

.social-premium-card:hover .social-cta {
    transform: translateX(-5px);
}

.social-cta svg {
    width: 20px;
    height: 20px;
    transition: transform 0.3s ease;
}

.social-premium-card:hover .social-cta svg {
    transform: translateX(-5px);
}

/* Old social styles - keeping for compatibility */
.social-grid {
    display: grid;
    gap: 1.5rem;
    max-width: 1536px;
    margin: 0 auto;
}

.social-card {
    position: relative;
    background: white;
    border-radius: 1.5rem;
    padding: 3rem 2rem;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
    overflow: hidden;
    transition: all 0.4s ease;
    text-align: center;
    border: 2px solid transparent;
}

.social-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.15);
}

/* Instagram Card */
.instagram-card {
    background: linear-gradient(135deg, #fdf4ff 0%, #fae8ff 100%);
}

.instagram-card:hover {
    border-color: #c026d3;
}

.instagram-card .social-icon-circle {
    background: linear-gradient(135deg, #c026d3 0%, #9333ea 100%);
}

/* Facebook Card */
.facebook-card {
    background: linear-gradient(135deg, #eff6ff 0%, #dbeafe 100%);
}

.facebook-card:hover {
    border-color: #2563eb;
}

.facebook-card .social-icon-circle {
    background: linear-gradient(135deg, #2563eb 0%, #1d4ed8 100%);
}

/* TikTok Card */
.tiktok-card {
    background: linear-gradient(135deg, #f9fafb 0%, #f3f4f6 100%);
}

.tiktok-card:hover {
    border-color: #1f2937;
}

.tiktok-card .social-icon-circle {
    background: linear-gradient(135deg, #1f2937 0%, #111827 100%);
}

/* WhatsApp Card */
.whatsapp-card {
    background: linear-gradient(135deg, #f0fdf4 0%, #dcfce7 100%);
}

.whatsapp-card:hover {
    border-color: #16a34a;
}

.whatsapp-card .social-icon-circle {
    background: linear-gradient(135deg, #16a34a 0%, #15803d 100%);
}

.social-icon-circle {
    width: 80px;
    height: 80px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.5rem;
    transition: all 0.4s ease;
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.15);
}

.social-card:hover .social-icon-circle {
    transform: scale(1.15) rotate(5deg);
    box-shadow: 0 12px 30px rgba(0, 0, 0, 0.25);
}

.social-icon-circle svg {
    width: 36px;
    height: 36px;
    color: white;
}

.social-card h3 {
    font-size: 1.5rem;
    margin-bottom: 0.5rem;
    font-weight: 700;
}

.social-card p {
    font-size: 1rem;
    color: var(--muted-foreground);
    font-weight: 500;
}

@media (max-width: 480px) {
    .social-card {
        padding: 2rem 1.5rem;
    }
    
    .social-icon-circle {
        width: 60px;
        height: 60px;
    }
    
    .social-icon-circle svg {
        width: 28px;
        height: 28px;
    }
    
    .social-card h3 {
        font-size: 1.25rem;
    }
    
    .social-card p {
        font-size: 0.875rem;
    }
}

.social-footer {
    text-align: center;
    margin-top: 4rem;
}

.social-footer p {
    color: var(--muted-foreground);
    font-size: 1.125rem;
}

@media (min-width: 768px) {
    .social-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (min-width: 1024px) {
    .social-grid {
        grid-template-columns: repeat(4, 1fr);
    }
}

/* ===================================
   Footer
   =================================== */
.footer {
    background: linear-gradient(to bottom, var(--background), rgba(255, 240, 245, 0.5));
    padding-top: 5rem;
    padding-bottom: 2.5rem;
    position: relative;
}

.footer-decor {
    position: absolute;
    width: 384px;
    height: 384px;
    border-radius: 50%;
    opacity: 0.05;
    filter: blur(3rem);
}

.footer-decor.decor-top-left {
    top: 0;
    right: 25%;
    background: linear-gradient(135deg, var(--pink-light), var(--pink));
}

.footer-decor.decor-bottom-right {
    bottom: 0;
    left: 25%;
    background: linear-gradient(135deg, var(--gold-light), var(--gold));
}

.footer-grid {
    display: grid;
    gap: 3rem;
    margin-bottom: 4rem;
}

.footer-column {
    text-align: right;
}

.footer-logo {
    height: 64px;
    width: auto;
    margin-bottom: 1.5rem;
    margin-right: auto;
}

.footer-text {
    color: var(--muted-foreground);
    line-height: 1.8;
    margin-bottom: 1.5rem;
}

.social-links {
    display: flex;
    gap: 0.75rem;
}

.social-link {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: var(--muted);
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
}

.social-link:hover {
    transform: translateY(-2px);
}

.social-link.instagram:hover {
    color: #e1306c;
}

.social-link.facebook:hover {
    color: #1877f2;
}

.social-link.twitter:hover {
    color: #1da1f2;
}

.footer-title {
    font-size: 1.125rem;
    font-weight: 700;
    margin-bottom: 1.5rem;
}

.footer-links {
    list-style: none;
}

.footer-links li {
    margin-bottom: 0.75rem;
}

.footer-links a {
    color: var(--muted-foreground);
    transition: color 0.3s ease;
}

.footer-links a:hover {
    color: var(--primary);
}

.footer-contact {
    list-style: none;
}

.footer-contact li {
    display: flex;
    align-items: flex-start;
    gap: 0.75rem;
    margin-bottom: 1rem;
}

.footer-contact svg {
    width: 20px;
    height: 20px;
    color: var(--primary);
    flex-shrink: 0;
    margin-top: 4px;
}

.footer-contact a {
    color: var(--muted-foreground);
    transition: color 0.3s ease;
}

.footer-contact a:hover {
    color: var(--primary);
}

.footer-bottom {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 1rem;
    padding-top: 2rem;
    border-top: 1px solid var(--border);
    text-align: center;
}

.footer-bottom p {
    color: var(--muted-foreground);
    font-size: 0.875rem;
}

.heart {
    color: var(--primary);
}

.footer-bottom-links {
    display: flex;
    gap: 1.5rem;
    font-size: 0.875rem;
}

.footer-bottom-links a {
    color: var(--muted-foreground);
    transition: color 0.3s ease;
}

.footer-bottom-links a:hover {
    color: var(--primary);
}

@media (min-width: 768px) {
    .footer-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .footer-bottom {
        flex-direction: row;
        justify-content: space-between;
        text-align: right;
    }
}

@media (min-width: 1024px) {
    .footer-grid {
        grid-template-columns: repeat(4, 1fr);
    }
}

@media (max-width: 480px) {
    .footer {
        padding: 3rem 0 2rem;
    }
    
    .footer-grid {
        gap: 2rem;
    }
    
    .footer-column h3 {
        font-size: 1.125rem;
        margin-bottom: 1rem;
    }
    
    .footer-links {
        gap: 0.5rem;
    }
    
    .footer-link {
        font-size: 0.875rem;
    }
    
    .footer-bottom {
        margin-top: 2rem;
        padding-top: 1.5rem;
    }
    
    .footer-bottom p {
        font-size: 0.75rem;
    }
    
    .footer-bottom-links {
        gap: 1rem;
        font-size: 0.75rem;
    }
}

/* ===================================
   Light Footer
   =================================== */
.footer-light {
    background: linear-gradient(to bottom, rgba(255, 240, 245, 0.3), var(--background));
    padding: 2rem 0;
    text-align: center;
    border-top: 1px solid rgba(219, 112, 147, 0.1);
    margin-top: 3rem;
}

.footer-light .container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 1rem;
}

.footer-light p {
    color: var(--muted-foreground);
    font-size: 0.9rem;
    margin: 0;
}

.footer-light #currentYear {
    color: var(--pink);
    font-weight: 600;
}

.footer-light .frontique-link {
    color: var(--pink);
    font-weight: 700;
    text-decoration: none;
    transition: all 0.3s ease;
    letter-spacing: 1px;
}

.footer-light .frontique-link:hover {
    color: var(--gold);
    text-decoration: underline;
}

/* ===================================
   Scroll to Top
   =================================== */
.scroll-to-top {
    position: fixed;
    bottom: 2rem;
    left: 2rem;
    z-index: 1000;
    width: 48px;
    height: 48px;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--pink-light), var(--pink));
    color: white;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 4px 20px rgba(233, 165, 186, 0.3);
    opacity: 0;
    transform: translateY(4rem);
    pointer-events: none;
    transition: all 0.3s ease;
}

.scroll-to-top.visible {
    opacity: 1;
    transform: translateY(0);
    pointer-events: auto;
}

.scroll-to-top:hover {
    opacity: 0.9;
    transform: translateY(-2px);
    box-shadow: 0 8px 30px rgba(233, 165, 186, 0.4);
}

.scroll-to-top svg {
    width: 20px;
    height: 20px;
}

/* ===================================
   Mobile Center Alignment
   =================================== */
@media (max-width: 480px) {
    /* Center all section headers */
    .section-header {
        text-align: center;
    }
    
    /* Center hero content */
    .hero-content {
        text-align: center;
    }
    
    .hero-buttons {
        justify-content: center;
    }
    
    .hero-stats {
        text-align: center;
    }
    
    .stat-item {
        text-align: center;
    }
    
    /* Center about section */
    .about-content {
        text-align: center;
    }
    
    .about-content h3 {
        text-align: center;
    }
    
    .features-grid {
        justify-content: center;
    }
    
    /* Center categories grid */
    .categories-grid {
        justify-content: center;
        margin-left: auto;
        margin-right: auto;
    }
    
    /* Center products grid */
    .products-grid {
        justify-content: center;
    }
    
    /* Center product cards content */
    .product-content {
        text-align: center;
    }
    
    .product-category,
    .product-name,
    .product-description {
        text-align: center;
    }
    
    .product-rating {
        justify-content: center;
    }
    
    .product-price {
        justify-content: center;
    }
    
    /* Center features section */
    .feature-card {
        text-align: center;
    }
    
    /* Center trust section */
    .trust-section {
        text-align: center;
    }
    
    .trust-stats {
        justify-content: center;
    }
    
    /* Center social section */
    .social-section {
        text-align: center;
    }
    
    /* Center footer columns */
    .footer-column {
        text-align: center;
    }
    
    .footer-links,
    .footer-contact {
        align-items: center;
    }
    
    .social-links {
        justify-content: center;
    }
}

/* ============================================
   Image Lightbox (Full-screen Image Viewer)
   ============================================ */
.lightbox {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 10000;
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.3s ease, visibility 0.3s ease;
}

.lightbox.active {
    opacity: 1;
    visibility: visible;
}

.lightbox-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.92);
    backdrop-filter: blur(8px);
    cursor: pointer;
}

.lightbox-content {
    position: relative;
    z-index: 10001;
    max-width: 90%;
    max-height: 90%;
    display: flex;
    align-items: center;
    justify-content: center;
    animation: lightboxZoomIn 0.3s ease;
}

@keyframes lightboxZoomIn {
    from {
        transform: scale(0.8);
        opacity: 0;
    }
    to {
        transform: scale(1);
        opacity: 1;
    }
}

.lightbox-content img {
    max-width: 100%;
    max-height: 90vh;
    object-fit: contain;
    border-radius: 12px;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.5);
}

.lightbox-close {
    position: absolute;
    top: -50px;
    right: -50px;
    width: 44px;
    height: 44px;
    border: none;
    background: rgba(255, 255, 255, 0.95);
    border-radius: 50%;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.2);
    z-index: 10002;
}

.lightbox-close:hover {
    background: #fff;
    transform: rotate(90deg) scale(1.1);
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.3);
}

.lightbox-close i {
    width: 24px;
    height: 24px;
    color: #333;
}

/* Mobile lightbox adjustments */
@media (max-width: 768px) {
    .lightbox-content {
        max-width: 95%;
        max-height: 85%;
    }
    
    .lightbox-content img {
        max-height: 80vh;
        border-radius: 8px;
    }
    
    .lightbox-close {
        top: 10px;
        right: 10px;
        width: 40px;
        height: 40px;
    }
    
    .lightbox-close i {
        width: 20px;
        height: 20px;
    }
}

@media (max-width: 480px) {
    .lightbox-content img {
        border-radius: 6px;
    }
    
    .lightbox-close {
        width: 36px;
        height: 36px;
    }
}

/* ===================================
   Image Loading Skeleton & Optimization
   =================================== */

/* Skeleton loader - مبسط جداً */
.image-skeleton {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: #f5f5f5;
    border-radius: 12px;
    z-index: 1;
    display: block; /* يظهر حتى تحميل الصورة */
}

@keyframes skeletonLoading {
    0% {
        background-position: 200% 0;
    }
    100% {
        background-position: -200% 0;
    }
}

/* Hide skeleton when image is loaded */
.product-img.loaded + .image-skeleton,
.product-img.loaded ~ .image-skeleton {
    display: none;
}

/* تبسيط عرض الصور - بدون تعقيدات */
.product-img {
    position: relative;
    z-index: 2;
    opacity: 1 !important;
    visibility: visible !important;
    display: block;
    width: 100%;
    height: 100%;
    object-fit: cover;
}

/* الصور البطيئة (lazy) تبدأ بخلفية رمادية */
.product-img.lazy {
    opacity: 1 !important; /* ظهور دائم */
    visibility: visible !important;
    background-color: #f5f5f5;
    transition: none !important;
}

.product-img.loaded {
    opacity: 1 !important;
    visibility: visible !important;
    z-index: 2;
    background-color: transparent;
}

/* Improve image rendering */
.product-img {
    image-rendering: -webkit-optimize-contrast;
    image-rendering: crisp-edges;
}

/* Product image container improvements */
.product-image-container {
    position: relative;
    overflow: hidden;
    background-color: #f5f5f5;
    /* حجز مساحة للصورة لتفادي القفز */
    aspect-ratio: 1 / 1;
    min-height: 0; /* إزالة min-height */
}

/* تحسينات خاصة للموبايل - أداء سكرول أفضل */
@media (max-width: 768px) {
    .product-img {
        transition: none !important;
        animation: none !important;
        transform: none !important;
        will-change: auto !important;
        opacity: 1 !important;
        visibility: visible !important;
        display: block !important;
        /* تحسين رسم الصور - أقل استهلاك */
        image-rendering: auto;
    }
    
    .product-img.lazy,
    .product-img.loaded {
        transition: none !important;
        opacity: 1 !important;
        visibility: visible !important;
        display: block !important;
    }
    
    .product-image-container {
        contain: layout; /* بدون strict */
        will-change: auto;
        min-height: 0;
        opacity: 1 !important;
        visibility: visible !important;
        overflow: visible !important; /* مهم - عشان الصور تظل ظاهرة */
    }
    
    /* إلغاء أي pseudo elements بتخفي الصور */
    .product-image-container::before,
    .product-image-container::after {
        display: none !important;
    }
}

/* Loading state for product cards */
.product-card.loading .product-content {
    opacity: 1;
    pointer-events: auto;
}

.product-card.loaded .product-content {
    opacity: 1;
    pointer-events: auto;
    transition: opacity 0.3s ease;
}

/* Preload hint for images */
.product-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
}

/* Performance optimizations */
.products-grid {
    /* تحسين الأداء عند إضافة/حذف عناصر */
    contain: layout style;
}

.product-card {
    /* منع إعادة الحساب المتكررة للتخطيط */
    contain: layout paint;
    will-change: transform, opacity;
}

/* Reduce motion for users who prefer it */
@media (prefers-reduced-motion: reduce) {
    .product-img,
    .image-skeleton,
    .product-card {
        animation: none !important;
        transition: none !important;
    }
}

/* Optimize for slow connections */
@media (prefers-reduced-data: reduce) {
    .image-skeleton {
        animation: none;
    }
}

/* ===================================
   Mobile Performance Optimizations
   =================================== */
@media (max-width: 768px) {
    /* إلغاء skeleton animation على الموبايل */
    .image-skeleton {
        animation: none;
        background: #f0f0f0;
    }
    
    /* تبسيط transitions على الموبايل */
    /* تبسيط الصور على الموبايل */
    .product-img {
        transition: none; /* إلغاء transitions */
        will-change: auto;
    }
    
    /* إلغاء كل التأثيرات الثقيلة */
    .product-card {
        will-change: auto !important;
        transform: none !important;
        backface-visibility: visible;
        animation: none !important; /* إلغاء الأنيميشن */
    }
    
    .product-card:hover {
        transform: none !important;
    }
    
    /* إلغاء animation delay */
    .product-card {
        animation-delay: 0s !important;
    }
    
    /* إلغاء 3D transforms */
    .product-card[data-tilt] {
        transform-style: flat !important;
    }
    
    /* تحسين rendering - أقل ما يمكن */
    .product-image-container {
        contain: layout;
        will-change: auto;
    }
    
    /* حذف كل transitions للصور */
    .product-img.loaded {
        transition: none;
    }
    
    /* تبسيط المحتوى */
    .product-content {
        contain: layout;
    }
    
    /* إلغاء backdrop-filter */
    .product-card {
        backdrop-filter: none !important;
    }
}
