/* Reset and Base Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
    font-size: 16px;
}

body {
    font-family: 'Inter', sans-serif;
    line-height: 1.6;
    color: #c2185b;
    background: linear-gradient(180deg, 
        #fce4ec 0%,
        #f8bbd9 25%,
        #f48fb1 50%,
        #f06292 75%,
        #e91e63 100%
    );
    min-height: 100vh;
    overflow-x: hidden;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    position: relative;
}

/* Loading Screen */
.loading-screen {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, #fce4ec, #f06292);
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 9999;
    opacity: 1;
    visibility: visible;
    transition: all 0.5s ease;
}

.loading-screen.hidden {
    opacity: 0;
    visibility: hidden;
}

.loading-content {
    text-align: center;
    color: #c2185b;
}

.loading-logo {
    margin-bottom: 2rem;
}

.loading-img {
    width: 80px;
    height: 80px;
    border-radius: 50%;
    margin-bottom: 1rem;
    animation: pulse 2s infinite;
}

.loading-logo h2 {
    font-family: 'Playfair Display', serif;
    font-size: 2rem;
    font-weight: 700;
    margin-bottom: 1rem;
}

.loading-spinner {
    width: 40px;
    height: 40px;
    border: 4px solid rgba(194, 24, 91, 0.2);
    border-top: 4px solid #c2185b;
    border-radius: 50%;
    animation: spin 1s linear infinite;
    margin: 0 auto;
}

@keyframes pulse {
    0%, 100% { transform: scale(1); }
    50% { transform: scale(1.05); }
}

@keyframes spin {
    0% { transform: rotate(0deg); }
    100% { transform: rotate(360deg); }
}

/* Header */
.header {
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(20px);
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    box-shadow: 0 4px 20px rgba(194, 24, 91, 0.1);
    transition: all 0.3s ease;
}

.header.scrolled {
    background: rgba(255, 255, 255, 0.98);
    box-shadow: 0 4px 30px rgba(194, 24, 91, 0.15);
}

.header .container {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 1rem 20px;
}

.logo {
    font-family: 'Playfair Display', serif;
    font-size: 1.8rem;
    font-weight: 800;
    margin: 0;
    display: flex;
    align-items: center;
    gap: 0.75rem;
}

.logo-img {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    object-fit: cover;
    box-shadow: 0 4px 15px rgba(194, 24, 91, 0.2);
    transition: all 0.3s ease;
}

.logo:hover .logo-img {
    transform: rotate(5deg) scale(1.05);
}

.text-pink {
    color: #c2185b;
    text-shadow: 0 2px 4px rgba(194, 24, 91, 0.1);
}

.text-blue {
    color: #4ecdc4;
    text-shadow: 0 2px 4px rgba(78, 205, 196, 0.1);
}

.text-gradient {
    background: linear-gradient(135deg, #c2185b, #4ecdc4);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    font-weight: 700;
}

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

.nav-link {
    text-decoration: none;
    color: #c2185b;
    font-weight: 600;
    font-size: 1rem;
    transition: all 0.3s ease;
    position: relative;
    padding: 0.5rem 0;
}

.nav-link:hover {
    color: #ad1457;
    transform: translateY(-2px);
}

.nav-link::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    width: 0;
    height: 2px;
    background: linear-gradient(135deg, #c2185b, #4ecdc4);
    transition: all 0.3s ease;
    transform: translateX(-50%);
}

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

.nav-actions {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.cart-btn {
    background: linear-gradient(135deg, #c2185b, #4ecdc4);
    border: none;
    border-radius: 50px;
    padding: 0.8rem 1.2rem;
    color: white;
    cursor: pointer;
    font-size: 1rem;
    font-weight: 600;
    position: relative;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(194, 24, 91, 0.3);
}

.cart-btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(194, 24, 91, 0.4);
}

.cart-count {
    position: absolute;
    top: -8px;
    right: -8px;
    background: #ff4757;
    color: white;
    border-radius: 50%;
    width: 22px;
    height: 22px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.8rem;
    font-weight: bold;
    animation: bounce 0.5s ease when updated;
}

.mobile-menu-btn {
    display: none;
    background: none;
    border: none;
    font-size: 1.5rem;
    cursor: pointer;
    color: #c2185b;
    padding: 0.5rem;
    border-radius: 8px;
    transition: all 0.3s ease;
}

.mobile-menu-btn:hover {
    background: rgba(194, 24, 91, 0.1);
}

/* Hero Section */
.hero {
    padding: 140px 0 100px;
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.1), rgba(255, 255, 255, 0.05));
    backdrop-filter: blur(10px);
    position: relative;
    overflow: hidden;
}

.hero-particles {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    overflow: hidden;
    z-index: 0;
}

.hero-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
    position: relative;
    z-index: 1;
}

.hero-title {
    font-family: 'Playfair Display', serif;
    font-size: 3.5rem;
    font-weight: 800;
    line-height: 1.2;
    margin-bottom: 1.5rem;
    color: #c2185b;
    text-shadow: 0 4px 8px rgba(194, 24, 91, 0.1);
}

.hero-subtitle {
    font-size: 1.2rem;
    color: #ad1457;
    margin-bottom: 2rem;
    line-height: 1.6;
    font-weight: 400;
}

.hero-features {
    display: flex;
    gap: 1rem;
    margin-bottom: 2.5rem;
    flex-wrap: wrap;
}

.feature-badge {
    background: rgba(255, 255, 255, 0.9);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(194, 24, 91, 0.2);
    border-radius: 50px;
    padding: 0.8rem 1.5rem;
    display: flex;
    align-items: center;
    gap: 0.5rem;
    color: #c2185b;
    font-weight: 600;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(194, 24, 91, 0.1);
}

.feature-badge:hover {
    transform: translateY(-3px);
    background: rgba(255, 255, 255, 0.95);
    box-shadow: 0 8px 25px rgba(194, 24, 91, 0.2);
}

.feature-badge i {
    color: #4ecdc4;
    font-size: 1.1rem;
}

.cta-btn {
    background: linear-gradient(135deg, #c2185b, #4ecdc4);
    border: none;
    border-radius: 50px;
    padding: 1.2rem 2.5rem;
    color: white;
    font-size: 1.1rem;
    font-weight: 700;
    cursor: pointer;
    transition: all 0.3s ease;
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    box-shadow: 0 8px 25px rgba(194, 24, 91, 0.3);
    font-family: 'Inter', sans-serif;
}

.cta-btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 12px 35px rgba(194, 24, 91, 0.4);
}

.cta-btn i {
    transition: transform 0.3s ease;
}

.cta-btn:hover i {
    transform: translateX(5px);
}

.product-showcase {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1.5rem;
    position: relative;
}

.showcase-item {
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 15px 40px rgba(194, 24, 91, 0.2);
    transition: all 0.3s ease;
    position: relative;
    background: white;
}

.showcase-item:hover {
    transform: translateY(-10px) rotate(2deg);
    box-shadow: 0 25px 60px rgba(194, 24, 91, 0.3);
}

.showcase-item:nth-child(2) {
    transform: translateY(2rem);
}

.showcase-item:nth-child(2):hover {
    transform: translateY(1.5rem) rotate(-2deg);
}

.showcase-item img {
    width: 100%;
    height: 200px;
    object-fit: cover;
    transition: all 0.3s ease;
}

.showcase-item:hover img {
    transform: scale(1.05);
}

.showcase-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    background: linear-gradient(transparent, rgba(194, 24, 91, 0.9));
    color: white;
    padding: 1.5rem;
    transform: translateY(100%);
    transition: all 0.3s ease;
}

.showcase-item:hover .showcase-overlay {
    transform: translateY(0);
}

.showcase-overlay h3 {
    font-family: 'Playfair Display', serif;
    font-size: 1.2rem;
    font-weight: 600;
    margin-bottom: 0.25rem;
}

.showcase-overlay p {
    font-size: 0.9rem;
    opacity: 0.9;
}

/* Products Section */
.products {
    padding: 100px 0;
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    position: relative;
}

.section-header {
    text-align: center;
    margin-bottom: 4rem;
}

.section-title {
    font-family: 'Playfair Display', serif;
    font-size: 3rem;
    font-weight: 800;
    margin-bottom: 1rem;
    color: #c2185b;
    text-shadow: 0 4px 8px rgba(194, 24, 91, 0.1);
}

.section-subtitle {
    font-size: 1.2rem;
    color: #ad1457;
    max-width: 600px;
    margin: 0 auto;
    font-weight: 400;
}

.product-categories {
    display: flex;
    justify-content: center;
    gap: 1rem;
    margin-bottom: 3rem;
    flex-wrap: wrap;
}

.category-btn {
    background: rgba(255, 255, 255, 0.8);
    border: 2px solid rgba(194, 24, 91, 0.2);
    border-radius: 50px;
    padding: 0.8rem 1.5rem;
    color: #c2185b;
    cursor: pointer;
    font-weight: 600;
    transition: all 0.3s ease;
    backdrop-filter: blur(10px);
    font-family: 'Inter', sans-serif;
}

.category-btn.active,
.category-btn:hover {
    background: linear-gradient(135deg, #c2185b, #4ecdc4);
    border-color: transparent;
    color: white;
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(194, 24, 91, 0.3);
}

.product-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 2rem;
}

.product-card {
    background: white;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 15px 40px rgba(194, 24, 91, 0.1);
    transition: all 0.3s ease;
    opacity: 1;
    transform: scale(1);
    position: relative;
}

.product-card.hidden {
    opacity: 0;
    transform: scale(0.8);
    pointer-events: none;
}

.product-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 25px 60px rgba(194, 24, 91, 0.2);
}

.product-image {
    position: relative;
    overflow: hidden;
    height: 250px;
}

.product-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: all 0.3s ease;
}

.product-card:hover .product-image img {
    transform: scale(1.1);
}

.product-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(194, 24, 91, 0.9);
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: all 0.3s ease;
}

.product-card:hover .product-overlay {
    opacity: 1;
}

.product-badge {
    position: absolute;
    top: 15px;
    right: 15px;
    background: linear-gradient(135deg, #c2185b, #4ecdc4);
    color: white;
    padding: 0.5rem 1rem;
    border-radius: 50px;
    font-size: 0.8rem;
    font-weight: 600;
    z-index: 2;
}

.product-badge.special {
    background: linear-gradient(135deg, #ff6b9d, #ffd700);
}

.quick-view-btn {
    background: linear-gradient(135deg, #c2185b, #4ecdc4);
    border: none;
    border-radius: 50px;
    padding: 0.8rem 1.5rem;
    color: white;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    font-family: 'Inter', sans-serif;
}

.quick-view-btn:hover {
    transform: scale(1.05);
    box-shadow: 0 8px 25px rgba(255, 255, 255, 0.3);
}

.product-info {
    padding: 1.5rem;
}

.product-name {
    font-family: 'Playfair Display', serif;
    font-size: 1.3rem;
    font-weight: 600;
    margin-bottom: 0.5rem;
    color: #c2185b;
}

.product-description {
    color: #ad1457;
    margin-bottom: 1rem;
    font-size: 0.9rem;
    opacity: 0.8;
}

.product-price {
    font-size: 1.5rem;
    font-weight: 700;
    color: #c2185b;
    margin-bottom: 1rem;
    font-family: 'Inter', sans-serif;
}

.add-to-cart-btn {
    width: 100%;
    background: linear-gradient(135deg, #c2185b, #4ecdc4);
    border: none;
    border-radius: 50px;
    padding: 1rem;
    color: white;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    font-family: 'Inter', sans-serif;
    font-size: 1rem;
}

.add-to-cart-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(194, 24, 91, 0.4);
}

/* Custom Design Section */
.custom-design {
    padding: 100px 0;
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.1), rgba(255, 255, 255, 0.05));
    backdrop-filter: blur(10px);
    min-height: 100vh;
}

.customizer-container {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(194, 24, 91, 0.9);
    z-index: 2000;
    padding: 2rem;
    overflow-y: auto;
    backdrop-filter: blur(10px);
}

.customizer-container.active {
    display: flex;
    align-items: center;
    justify-content: center;
}

.customizer-card {
    background: white;
    border-radius: 25px;
    max-width: 1000px;
    width: 100%;
    max-height: 90vh;
    overflow-y: auto;
    box-shadow: 0 25px 80px rgba(194, 24, 91, 0.4);
    animation: slideUpFade 0.4s ease;
}

@keyframes slideUpFade {
    from {
        opacity: 0;
        transform: translateY(30px) scale(0.95);
    }
    to {
        opacity: 1;
        transform: translateY(0) scale(1);
    }
}

.customizer-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 2rem;
    border-bottom: 1px solid #f0f0f0;
}

.customizer-header h3 {
    font-family: 'Playfair Display', serif;
    font-size: 1.8rem;
    font-weight: 700;
    color: #c2185b;
}

.close-customizer {
    background: none;
    border: none;
    font-size: 1.5rem;
    cursor: pointer;
    color: #c2185b;
    padding: 0.5rem;
    border-radius: 50%;
    transition: all 0.3s ease;
}

.close-customizer:hover {
    background: rgba(194, 24, 91, 0.1);
    transform: rotate(90deg);
}

.customizer-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 2rem;
    padding: 2rem;
}

.option-group {
    margin-bottom: 2rem;
}

.option-label {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-weight: 600;
    color: #c2185b;
    margin-bottom: 1rem;
    font-family: 'Inter', sans-serif;
}

.option-label i {
    color: #4ecdc4;
    font-size: 1.1rem;
}

.custom-input {
    width: 100%;
    padding: 1rem;
    border: 2px solid #f0f0f0;
    border-radius: 15px;
    font-size: 1rem;
    transition: all 0.3s ease;
    font-family: 'Inter', sans-serif;
}

.custom-input:focus {
    outline: none;
    border-color: #c2185b;
    box-shadow: 0 0 0 4px rgba(194, 24, 91, 0.1);
    transform: translateY(-2px);
}

.input-help {
    color: #ad1457;
    font-size: 0.9rem;
    margin-top: 0.5rem;
    opacity: 0.8;
}

.color-options {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 1rem;
}

.color-option {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    cursor: pointer;
    border: 3px solid transparent;
    transition: all 0.3s ease;
    position: relative;
}

.color-option::after {
    content: '';
    position: absolute;
    inset: -4px;
    border-radius: 50%;
    padding: 4px;
    background: linear-gradient(135deg, #c2185b, #4ecdc4);
    mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
    mask-composite: exclude;
    opacity: 0;
    transition: all 0.3s ease;
}

.color-option:hover,
.color-option.active {
    transform: scale(1.1);
}

.color-option.active::after {
    opacity: 1;
}

.file-input {
    width: 100%;
    padding: 1rem;
    border: 2px dashed #f0f0f0;
    border-radius: 15px;
    cursor: pointer;
    transition: all 0.3s ease;
    font-family: 'Inter', sans-serif;
}

.file-input:hover {
    border-color: #c2185b;
    background: rgba(194, 24, 91, 0.05);
}

.glitter-options {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1rem;
}

.glitter-option {
    padding: 1rem;
    border: 2px solid #f0f0f0;
    border-radius: 15px;
    text-align: center;
    cursor: pointer;
    transition: all 0.3s ease;
    font-weight: 600;
    font-family: 'Inter', sans-serif;
    color: #c2185b;
}

.glitter-option:hover,
.glitter-option.active {
    border-color: #c2185b;
    background: rgba(194, 24, 91, 0.1);
    transform: translateY(-2px);
}

.addon-checkbox {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    cursor: pointer;
    font-weight: 600;
    color: #c2185b;
    font-family: 'Inter', sans-serif;
}

.addon-checkbox input[type="checkbox"] {
    width: 20px;
    height: 20px;
    accent-color: #c2185b;
}

.preview-container {
    background: linear-gradient(135deg, #fce4ec, #f8bbd9);
    border-radius: 20px;
    padding: 2rem;
    text-align: center;
    margin-bottom: 2rem;
    border: 2px solid rgba(194, 24, 91, 0.1);
}

.preview-item {
    width: 200px;
    height: 250px;
    background: #fff;
    border-radius: 20px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    box-shadow: 0 15px 40px rgba(194, 24, 91, 0.2);
    position: relative;
    overflow: hidden;
    transition: all 0.3s ease;
}

.preview-item:hover {
    transform: scale(1.05) rotate(2deg);
}

.preview-text {
    font-family: 'Playfair Display', serif;
    font-size: 1.2rem;
    font-weight: 600;
    color: #c2185b;
    margin-bottom: 1rem;
    text-shadow: 0 2px 4px rgba(194, 24, 91, 0.1);
}

.preview-image {
    width: 80px;
    height: 80px;
    background-size: cover;
    background-position: center;
    border-radius: 15px;
    border: 2px solid rgba(194, 24, 91, 0.1);
}

.preview-info h4 {
    font-family: 'Playfair Display', serif;
    font-size: 1.5rem;
    font-weight: 700;
    color: #c2185b;
    margin-bottom: 1rem;
}

.price-breakdown {
    background: linear-gradient(135deg, #fce4ec, #f8bbd9);
    border-radius: 15px;
    padding: 1.5rem;
    margin-bottom: 2rem;
    border: 1px solid rgba(194, 24, 91, 0.1);
}

.price-line {
    display: flex;
    justify-content: space-between;
    margin-bottom: 0.5rem;
    font-size: 1rem;
    color: #c2185b;
    font-family: 'Inter', sans-serif;
}

.price-line.total-price {
    border-top: 2px solid rgba(194, 24, 91, 0.2);
    padding-top: 1rem;
    margin-top: 1rem;
    font-weight: 700;
    font-size: 1.2rem;
    color: #c2185b;
}

.add-custom-to-cart {
    width: 100%;
    background: linear-gradient(135deg, #c2185b, #4ecdc4);
    border: none;
    border-radius: 50px;
    padding: 1.2rem;
    color: white;
    font-size: 1.1rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    font-family: 'Inter', sans-serif;
    box-shadow: 0 8px 25px rgba(194, 24, 91, 0.3);
}

.add-custom-to-cart:hover {
    transform: translateY(-3px);
    box-shadow: 0 12px 35px rgba(194, 24, 91, 0.4);
}

/* About Section */
.about {
    padding: 100px 0;
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
}

.about-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
}

.about-description {
    font-size: 1.1rem;
    color: #ad1457;
    margin-bottom: 2rem;
    line-height: 1.8;
}

.about-features {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.feature-item {
    display: flex;
    align-items: flex-start;
    gap: 1rem;
    padding: 1.5rem;
    background: rgba(255, 255, 255, 0.8);
    border-radius: 20px;
    transition: all 0.3s ease;
    border: 1px solid rgba(194, 24, 91, 0.1);
}

.feature-item:hover {
    transform: translateX(10px);
    box-shadow: 0 10px 30px rgba(194, 24, 91, 0.1);
}

.feature-item i {
    font-size: 2rem;
    color: #4ecdc4;
    margin-top: 0.5rem;
}

.feature-item h4 {
    font-family: 'Playfair Display', serif;
    font-size: 1.2rem;
    font-weight: 600;
    margin-bottom: 0.5rem;
    color: #c2185b;
}

.feature-item p {
    color: #ad1457;
    line-height: 1.6;
}

.about-image {
    border-radius: 25px;
    overflow: hidden;
    box-shadow: 0 25px 60px rgba(194, 24, 91, 0.2);
    position: relative;
}

.about-image::before {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, rgba(194, 24, 91, 0.1), transparent);
    z-index: 1;
}

.about-image img {
    width: 100%;
    height: 400px;
    object-fit: cover;
    transition: all 0.3s ease;
}

.about-image:hover img {
    transform: scale(1.05);
}

/* Contact Section */
.contact {
    padding: 100px 0;
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.1), rgba(255, 255, 255, 0.05));
    backdrop-filter: blur(10px);
}

.contact-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
}

.contact-info {
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

.contact-item {
    display: flex;
    align-items: flex-start;
    gap: 1rem;
    background: rgba(255, 255, 255, 0.9);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(194, 24, 91, 0.2);
    border-radius: 20px;
    padding: 1.5rem;
    transition: all 0.3s ease;
}

.contact-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 40px rgba(194, 24, 91, 0.2);
}

.contact-item i {
    font-size: 1.5rem;
    color: #4ecdc4;
    margin-top: 0.5rem;
}

.contact-item h4 {
    font-family: 'Playfair Display', serif;
    font-size: 1.2rem;
    font-weight: 600;
    margin-bottom: 0.5rem;
    color: #c2185b;
}

.contact-item p {
    color: #ad1457;
    line-height: 1.6;
}

.social-links {
    background: rgba(255, 255, 255, 0.9);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(194, 24, 91, 0.2);
    border-radius: 20px;
    padding: 1.5rem;
    transition: all 0.3s ease;
}

.social-links:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 40px rgba(194, 24, 91, 0.2);
}

.social-links h4 {
    font-family: 'Playfair Display', serif;
    font-size: 1.2rem;
    font-weight: 600;
    margin-bottom: 1rem;
    color: #c2185b;
}

.social-icons {
    display: flex;
    gap: 1rem;
}

.social-icon {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    text-decoration: none;
    color: white;
    font-size: 1.2rem;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
}

.social-icon.tiktok {
    background: linear-gradient(135deg, #000000, #ff0050);
}

.social-icon.facebook {
    background: linear-gradient(135deg, #1877f2, #42a5f5);
}

.social-icon.instagram {
    background: linear-gradient(135deg, #e4405f, #feda75);
}

.social-icon:hover {
    transform: translateY(-3px) scale(1.1);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.3);
}

.contact-form {
    background: rgba(255, 255, 255, 0.9);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(194, 24, 91, 0.2);
    border-radius: 25px;
    padding: 2rem;
    box-shadow: 0 15px 40px rgba(194, 24, 91, 0.1);
}

.form-group {
    margin-bottom: 1.5rem;
}

.form-group input,
.form-group textarea {
    width: 100%;
    padding: 1rem;
    border: 2px solid rgba(194, 24, 91, 0.2);
    border-radius: 15px;
    background: rgba(255, 255, 255, 0.8);
    color: #c2185b;
    font-size: 1rem;
    transition: all 0.3s ease;
    font-family: 'Inter', sans-serif;
}

.form-group input::placeholder,
.form-group textarea::placeholder {
    color: rgba(194, 24, 91, 0.6);
}

.form-group input:focus,
.form-group textarea:focus {
    outline: none;
    border-color: #c2185b;
    background: rgba(255, 255, 255, 0.9);
    box-shadow: 0 0 0 4px rgba(194, 24, 91, 0.1);
    transform: translateY(-2px);
}

.submit-btn {
    width: 100%;
    background: linear-gradient(135deg, #c2185b, #4ecdc4);
    border: none;
    border-radius: 50px;
    padding: 1.2rem;
    color: white;
    font-size: 1.1rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    font-family: 'Inter', sans-serif;
    box-shadow: 0 8px 25px rgba(194, 24, 91, 0.3);
}

.submit-btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 12px 35px rgba(194, 24, 91, 0.4);
}

/* Checkout Modal */
.checkout-modal {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(194, 24, 91, 0.9);
    display: flex;
    justify-content: center;
    align-items: center;
    z-index: 9999;
    backdrop-filter: blur(10px);
}

.checkout-content {
    background: white;
    padding: 2rem;
    border-radius: 25px;
    width: 90%;
    max-width: 700px;
    max-height: 90vh;
    overflow-y: auto;
    box-shadow: 0 25px 80px rgba(194, 24, 91, 0.4);
    animation: slideUpFade 0.4s ease;
}

.checkout-content h2 {
    font-family: 'Playfair Display', serif;
    color: #c2185b;
    margin-bottom: 1.5rem;
}

/* Cart Modal */
.cart-modal {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: 3000;
}

.cart-modal.active {
    display: flex;
    align-items: center;
    justify-content: center;
}

.cart-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(194, 24, 91, 0.9);
    backdrop-filter: blur(10px);
}

.cart-container {
    background: white;
    border-radius: 25px;
    max-width: 600px;
    width: 90%;
    max-height: 80vh;
    overflow-y: auto;
    position: relative;
    z-index: 1;
    box-shadow: 0 25px 80px rgba(194, 24, 91, 0.4);
    animation: slideUpFade 0.4s ease;
}

.cart-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 2rem;
    border-bottom: 1px solid #f0f0f0;
}

.cart-header h3 {
    font-family: 'Playfair Display', serif;
    font-size: 1.8rem;
    font-weight: 700;
    color: #c2185b;
}

.close-cart {
    background: none;
    border: none;
    font-size: 1.5rem;
    cursor: pointer;
    color: #c2185b;
    padding: 0.5rem;
    border-radius: 50%;
    transition: all 0.3s ease;
}

.close-cart:hover {
    background: rgba(194, 24, 91, 0.1);
    transform: rotate(90deg);
}

.cart-content {
    padding: 2rem;
    min-height: 200px;
}

.empty-cart {
    text-align: center;
    padding: 3rem 2rem;
}

.empty-cart i {
    font-size: 4rem;
    color: #f0f0f0;
    margin-bottom: 1rem;
}

.empty-cart h4 {
    font-family: 'Playfair Display', serif;
    font-size: 1.5rem;
    color: #c2185b;
    margin-bottom: 0.5rem;
}

.empty-cart p {
    color: #ad1457;
}

.cart-items {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.cart-item {
    display: flex;
    align-items: center;
    gap: 1rem;
    padding: 1rem;
    background: linear-gradient(135deg, #fce4ec, #f8bbd9);
    border-radius: 15px;
    transition: all 0.3s ease;
    border: 1px solid rgba(194, 24, 91, 0.1);
}

.cart-item:hover {
    transform: translateX(5px);
    box-shadow: 0 5px 20px rgba(194, 24, 91, 0.1);
}

.cart-item-image {
    width: 60px;
    height: 60px;
    border-radius: 12px;
    background: rgba(194, 24, 91, 0.1);
    flex-shrink: 0;
}

.cart-item-info {
    flex: 1;
}

.cart-item-name {
    font-family: 'Playfair Display', serif;
    font-weight: 600;
    color: #c2185b;
    margin-bottom: 0.25rem;
}

.cart-item-details {
    font-size: 0.9rem;
    color: #ad1457;
    opacity: 0.8;
}

.cart-item-price {
    font-weight: 700;
    color: #c2185b;
    font-size: 1.1rem;
    font-family: 'Inter', sans-serif;
}

.quantity-controls {
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.quantity-btn {
    background: white;
    border: 2px solid rgba(194, 24, 91, 0.2);
    border-radius: 50%;
    width: 35px;
    height: 35px;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all 0.3s ease;
    color: #c2185b;
    font-weight: 600;
}

.quantity-btn:hover {
    background: #c2185b;
    color: white;
    border-color: #c2185b;
    transform: scale(1.1);
}

.quantity {
    font-weight: 600;
    min-width: 35px;
    text-align: center;
    color: #c2185b;
    font-family: 'Inter', sans-serif;
}

.remove-item {
    background: #ff4757;
    color: white;
    border: none;
    border-radius: 50%;
    width: 35px;
    height: 35px;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all 0.3s ease;
}

.remove-item:hover {
    background: #ff3742;
    transform: scale(1.1);
}

.cart-footer {
    padding: 2rem;
    border-top: 1px solid #f0f0f0;
    background: linear-gradient(135deg, #fce4ec, #f8bbd9);
}

.cart-total {
    margin-bottom: 2rem;
}

.total-line {
    display: flex;
    justify-content: space-between;
    margin-bottom: 0.5rem;
    font-size: 1rem;
    color: #c2185b;
    font-family: 'Inter', sans-serif;
}

.total-line.total {
    border-top: 2px solid rgba(194, 24, 91, 0.2);
    padding-top: 1rem;
    margin-top: 1rem;
    font-weight: 700;
    font-size: 1.3rem;
    color: #c2185b;
}

.cart-actions {
    display: flex;
    gap: 1rem;
}

.continue-shopping {
    flex: 1;
    background: rgba(194, 24, 91, 0.1);
    border: 2px solid #c2185b;
    border-radius: 50px;
    padding: 1rem;
    color: #c2185b;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    font-family: 'Inter', sans-serif;
}

.continue-shopping:hover {
    background: #c2185b;
    color: white;
    transform: translateY(-2px);
}

.checkout-btn {
    flex: 2;
    background: linear-gradient(135deg, #c2185b, #4ecdc4);
    border: none;
    border-radius: 50px;
    padding: 1rem;
    color: white;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    font-family: 'Inter', sans-serif;
    box-shadow: 0 4px 15px rgba(194, 24, 91, 0.3);
}

.checkout-btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(194, 24, 91, 0.4);
}

/* Success Message */
.success-message {
    position: fixed;
    top: 100px;
    right: 20px;
    background: linear-gradient(135deg, #2ed573, #1e90ff);
    color: white;
    padding: 1rem 1.5rem;
    border-radius: 50px;
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-weight: 600;
    box-shadow: 0 10px 30px rgba(46, 213, 115, 0.3);
    z-index: 4000;
    transform: translateX(400px);
    transition: all 0.3s ease;
    font-family: 'Inter', sans-serif;
}

.success-message.show {
    transform: translateX(0);
}

/* Scroll to Top Button */
.scroll-to-top {
    position: fixed;
    bottom: 30px;
    right: 30px;
    width: 50px;
    height: 50px;
    border-radius: 50%;
    background: linear-gradient(135deg, #c2185b, #4ecdc4);
    border: none;
    color: white;
    font-size: 1.2rem;
    cursor: pointer;
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
    z-index: 1000;
    box-shadow: 0 4px 20px rgba(194, 24, 91, 0.3);
}

.scroll-to-top.visible {
    opacity: 1;
    visibility: visible;
}

.scroll-to-top:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 30px rgba(194, 24, 91, 0.4);
}

/* Responsive Design */
@media (max-width: 768px) {
    .nav-menu {
        position: fixed;
        top: 100%;
        left: 0;
        right: 0;
        background: rgba(255, 255, 255, 0.98);
        backdrop-filter: blur(20px);
        flex-direction: column;
        padding: 2rem;
        gap: 1rem;
        transform: translateY(-100%);
        opacity: 0;
        visibility: hidden;
        transition: all 0.3s ease;
        border-top: 1px solid rgba(194, 24, 91, 0.1);
    }
    
    .nav-menu.active {
        transform: translateY(0);
        opacity: 1;
        visibility: visible;
    }
    
    .mobile-menu-btn {
        display: block;
    }
    
    .hero-content {
        grid-template-columns: 1fr;
        gap: 2rem;
        text-align: center;
    }
    
    .hero-title {
        font-size: 2.5rem;
    }
    
    .product-showcase {
        grid-template-columns: 1fr;
    }
    
    .showcase-item:nth-child(2) {
        transform: none;
    }
    
    .product-grid {
        grid-template-columns: 1fr;
    }
    
    .customizer-content {
        grid-template-columns: 1fr;
    }
    
    .about-content {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .contact-content {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .cart-actions {
        flex-direction: column;
    }
    
    .color-options {
        grid-template-columns: repeat(3, 1fr);
    }
    
    .glitter-options {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .social-icons {
        justify-content: center;
    }
}

@media (max-width: 480px) {
    .container {
        padding: 0 15px;
    }
    
    .hero {
        padding: 120px 0 80px;
    }
    
    .hero-title {
        font-size: 2rem;
    }
    
    .section-title {
        font-size: 2rem;
    }
    
    .product-categories {
        gap: 0.5rem;
    }
    
    .category-btn {
        padding: 0.6rem 1rem;
        font-size: 0.9rem;
    }
    
    .customizer-container {
        padding: 1rem;
    }
    
    .customizer-card {
        max-height: 95vh;
    }
    
    .customizer-header,
    .customizer-content {
        padding: 1rem;
    }
    
    .color-options {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .success-message {
        right: 10px;
        left: 10px;
        transform: translateY(-100px);
    }
    
    .success-message.show {
        transform: translateY(0);
    }
    
    .scroll-to-top {
        bottom: 20px;
        right: 20px;
        width: 45px;
        height: 45px;
    }
}

/* Animation Classes */
.fade-in {
    animation: fadeIn 0.6s ease-in;
}

.slide-up {
    animation: slideUp 0.6s ease-out;
}

@keyframes fadeIn {
    from {
        opacity: 0;
    }
    to {
        opacity: 1;
    }
}

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

@keyframes bounce {
    0%, 20%, 50%, 80%, 100% {
        transform: translateY(0);
    }
    40% {
        transform: translateY(-10px);
    }
    60% {
        transform: translateY(-5px);
    }
}

/* AOS Animation Overrides */
[data-aos] {
    opacity: 0;
    transition: all 0.6s ease;
}

[data-aos].aos-animate {
    opacity: 1;
}

[data-aos="fade-up"] {
    transform: translateY(30px);
}

[data-aos="fade-up"].aos-animate {
    transform: translateY(0);
}

[data-aos="fade-right"] {
    transform: translateX(-30px);
}

[data-aos="fade-right"].aos-animate {
    transform: translateX(0);
}

[data-aos="fade-left"] {
    transform: translateX(30px);
}

[data-aos="fade-left"].aos-animate {
    transform: translateX(0);
}

/* Performance Optimizations */
* {
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

img {
    max-width: 100%;
    height: auto;
}

button, .btn {
    -webkit-tap-highlight-color: transparent;
}

/* Dark Mode Support (Optional) */
@media (prefers-color-scheme: dark) {
    /* Add dark mode styles if needed */
}

/* High Contrast Mode Support */
@media (prefers-contrast: high) {
    .text-gradient {
        -webkit-text-fill-color: #c2185b;
        background: none;
    }
}

/* Reduced Motion Support */
@media (prefers-reduced-motion: reduce) {
    * {
        animation-duration: 0.01ms !important;
        animation-iteration-count: 1 !important;
        transition-duration: 0.01ms !important;
    }
    
    html {
        scroll-behavior: auto;
    }
}
