/* ============================================
   FRIENDCIRCUITSWIRL — EMOTIONAL LUXE GIFTING
   Premium Gift Shop Design System
   ============================================ */

/* === VARIABLES === */
:root {
    --bg-primary: #fff7f9;
    --bg-secondary: #fdf2f8;
    --bg-white: #ffffff;
    --text-primary: #1a1a2e;
    --text-secondary: #64748b;
    --text-light: #94a3b8;
    --rose-pink: linear-gradient(135deg, #f472b6, #fb7185);
    --rose-pink-solid: #f472b6;
    --rose-pink-hover: #fb7185;
    --lavender: linear-gradient(135deg, #c084fc, #e9d5ff);
    --lavender-solid: #c084fc;
    --warm-peach: linear-gradient(135deg, #fb923c, #fcd34d);
    --warm-peach-solid: #fb923c;
    --glass-bg: rgba(255, 255, 255, 0.7);
    --glass-border: rgba(255, 255, 255, 0.4);
    --shadow-soft: 0 4px 20px rgba(244, 114, 182, 0.1);
    --shadow-medium: 0 8px 32px rgba(244, 114, 182, 0.15);
    --shadow-hover: 0 12px 40px rgba(244, 114, 182, 0.2);
    --shadow-glow: 0 0 30px rgba(244, 114, 182, 0.3);
    --radius-sm: 12px;
    --radius-md: 16px;
    --radius-lg: 24px;
    --radius-xl: 32px;
    --radius-pill: 50px;
    --sidebar-width: 80px;
    --sidebar-expanded: 230px;
    --transition-fast: 0.2s ease;
    --transition-smooth: 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    --transition-bounce: 0.4s cubic-bezier(0.68, -0.55, 0.265, 1.55);
    --font-heading: 'Playfair Display', Georgia, serif;
    --font-body: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
}

/* === RESET === */
*, *::before, *::after {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

body {
    font-family: var(--font-body);
    background-color: var(--bg-primary);
    color: var(--text-primary);
    line-height: 1.6;
    overflow-x: hidden;
}

a {
    text-decoration: none;
    color: inherit;
    transition: var(--transition-smooth);
}

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

ul {
    list-style: none;
}

button {
    cursor: pointer;
    border: none;
    outline: none;
    font-family: inherit;
    background: transparent;
}

input, textarea, select {
    font-family: inherit;
    outline: none;
}

/* === LAYOUT === */
.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 24px;
}

.main-content {
    margin-left: var(--sidebar-width);
    transition: var(--transition-smooth);
    min-height: 100vh;
}

.section {
    padding: 80px 0;
}

/* === FLOATING HEARTS === */
.floating-hearts {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
    z-index: 0;
    overflow: hidden;
}

.heart-particle {
    position: absolute;
    font-size: 14px;
    opacity: 0;
    animation: floatHeart 8s ease-in-out infinite;
}

@keyframes floatHeart {
    0% {
        opacity: 0;
        transform: translateY(100vh) rotate(0deg) scale(0.5);
    }
    10% {
        opacity: 0.6;
    }
    50% {
        opacity: 0.3;
    }
    100% {
        opacity: 0;
        transform: translateY(-10vh) rotate(360deg) scale(1);
    }
}

/* === SIDEBAR NAVIGATION === */
.sidebar {
    position: fixed;
    top: 0;
    left: 0;
    height: 100vh;
    width: var(--sidebar-width);
    background: var(--glass-bg);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border-right: 1px solid var(--glass-border);
    z-index: 1000;
    display: flex;
    flex-direction: column;
    padding: 20px 0;
    transition: width var(--transition-smooth);
    overflow: hidden;
    box-shadow: 4px 0 30px rgba(244, 114, 182, 0.08);
}

.sidebar:hover {
    width: var(--sidebar-expanded);
}

.sidebar-logo {
    display: flex;
    align-items: center;
    padding: 8px 20px 24px;
    gap: 12px;
    white-space: nowrap;
    border-bottom: 1px solid rgba(244, 114, 182, 0.1);
    margin-bottom: 16px;
    min-height: 60px;
}

.logo-icon {
    font-size: 28px;
    min-width: 40px;
    text-align: center;
}

.logo-text {
    font-family: var(--font-heading);
    font-size: 16px;
    font-weight: 700;
    color: var(--text-primary);
    opacity: 0;
    transition: opacity var(--transition-smooth);
    white-space: nowrap;
}

.sidebar:hover .logo-text {
    opacity: 1;
}

.sidebar-menu {
    flex: 1;
    display: flex;
    flex-direction: column;
    gap: 4px;
    padding: 0 12px;
}

.sidebar-item a {
    display: flex;
    align-items: center;
    gap: 14px;
    padding: 12px 14px;
    border-radius: var(--radius-md);
    transition: var(--transition-smooth);
    white-space: nowrap;
    position: relative;
}

.sidebar-item a i {
    font-size: 18px;
    min-width: 24px;
    text-align: center;
    color: var(--text-secondary);
    transition: var(--transition-smooth);
}

.sidebar-label {
    font-size: 14px;
    font-weight: 500;
    color: var(--text-secondary);
    opacity: 0;
    transition: opacity var(--transition-smooth);
}

.sidebar:hover .sidebar-label {
    opacity: 1;
}

.sidebar-item a:hover {
    background: rgba(244, 114, 182, 0.1);
}

.sidebar-item a:hover i {
    color: var(--rose-pink-solid);
    filter: drop-shadow(0 0 8px rgba(244, 114, 182, 0.4));
}

.sidebar-item.active a {
    background: var(--rose-pink);
    box-shadow: var(--shadow-soft);
}

.sidebar-item.active a i,
.sidebar-item.active a .sidebar-label {
    color: white;
}

/* Cart Badge */
.cart-badge {
    position: absolute;
    top: 4px;
    right: 4px;
    background: var(--warm-peach);
    color: white;
    font-size: 10px;
    font-weight: 700;
    width: 20px;
    height: 20px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transform: scale(0);
    transition: var(--transition-bounce);
}

.cart-badge.show {
    opacity: 1;
    transform: scale(1);
}

.sidebar-footer {
    padding: 16px 12px;
    border-top: 1px solid rgba(244, 114, 182, 0.1);
    display: flex;
    flex-direction: column;
    gap: 4px;
}

.sidebar-footer a {
    display: flex;
    align-items: center;
    gap: 14px;
    padding: 8px 14px;
    border-radius: var(--radius-sm);
    font-size: 12px;
    color: var(--text-light);
    white-space: nowrap;
}

.sidebar-footer a i {
    min-width: 24px;
    text-align: center;
}

.sidebar-footer a:hover {
    color: var(--rose-pink-solid);
}

/* === MOBILE NAV === */
.mobile-nav {
    display: none;
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background: var(--glass-bg);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border-top: 1px solid var(--glass-border);
    z-index: 1000;
    padding: 8px 0;
    padding-bottom: max(8px, env(safe-area-inset-bottom));
}

.mobile-nav-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 2px;
    padding: 6px 0;
    font-size: 10px;
    color: var(--text-light);
    position: relative;
    transition: var(--transition-smooth);
}

.mobile-nav-item i {
    font-size: 20px;
}

.mobile-nav-item.active {
    color: var(--rose-pink-solid);
}

.cart-badge-mobile {
    position: absolute;
    top: 0;
    right: 50%;
    transform: translateX(16px);
    background: var(--warm-peach);
    color: white;
    font-size: 9px;
    font-weight: 700;
    width: 16px;
    height: 16px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: var(--transition-bounce);
}

.cart-badge-mobile.show {
    opacity: 1;
}

/* === CART SIDEBAR === */
.cart-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.3);
    backdrop-filter: blur(4px);
    z-index: 1100;
    opacity: 0;
    visibility: hidden;
    transition: var(--transition-smooth);
}

.cart-overlay.open {
    opacity: 1;
    visibility: visible;
}

.cart-sidebar {
    position: fixed;
    top: 0;
    right: -400px;
    width: 380px;
    max-width: 90vw;
    height: 100vh;
    background: var(--bg-white);
    z-index: 1200;
    display: flex;
    flex-direction: column;
    transition: right var(--transition-smooth);
    box-shadow: -8px 0 40px rgba(0, 0, 0, 0.1);
}

.cart-sidebar.open {
    right: 0;
}

.cart-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 20px 24px;
    border-bottom: 1px solid rgba(244, 114, 182, 0.1);
}

.cart-header h3 {
    font-family: var(--font-heading);
    font-size: 20px;
}

.cart-close {
    width: 36px;
    height: 36px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--bg-secondary);
    color: var(--text-secondary);
    transition: var(--transition-smooth);
}

.cart-close:hover {
    background: var(--rose-pink-solid);
    color: white;
}

.cart-items {
    flex: 1;
    overflow-y: auto;
    padding: 16px 24px;
}

.cart-empty {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    height: 100%;
    text-align: center;
    gap: 16px;
    color: var(--text-light);
}

.cart-empty i {
    font-size: 48px;
    opacity: 0.3;
}

.cart-item {
    display: flex;
    gap: 12px;
    padding: 12px 0;
    border-bottom: 1px solid rgba(244, 114, 182, 0.08);
    animation: slideIn 0.3s ease;
}

@keyframes slideIn {
    from { opacity: 0; transform: translateX(20px); }
    to { opacity: 1; transform: translateX(0); }
}

.cart-item-image {
    width: 64px;
    height: 64px;
    border-radius: var(--radius-sm);
    overflow: hidden;
    flex-shrink: 0;
}

.cart-item-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

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

.cart-item-details h4 {
    font-size: 14px;
    font-weight: 600;
    margin-bottom: 4px;
}

.cart-item-details .cart-item-price {
    color: var(--rose-pink-solid);
    font-weight: 600;
    font-size: 14px;
}

.cart-item-controls {
    display: flex;
    align-items: center;
    gap: 8px;
    margin-top: 8px;
}

.cart-item-controls button {
    width: 26px;
    height: 26px;
    border-radius: 50%;
    background: var(--bg-secondary);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 12px;
    font-weight: 700;
    color: var(--text-secondary);
    transition: var(--transition-smooth);
}

.cart-item-controls button:hover {
    background: var(--rose-pink-solid);
    color: white;
}

.cart-item-controls span {
    font-size: 14px;
    font-weight: 600;
    min-width: 20px;
    text-align: center;
}

.cart-item-remove {
    align-self: flex-start;
    color: var(--text-light);
    font-size: 14px;
    padding: 4px;
    transition: var(--transition-smooth);
}

.cart-item-remove:hover {
    color: #ef4444;
}

.cart-footer {
    padding: 20px 24px;
    border-top: 1px solid rgba(244, 114, 182, 0.1);
    background: var(--bg-secondary);
}

.cart-total {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 16px;
    font-size: 18px;
    font-weight: 700;
}

.cart-total span:last-child {
    color: var(--rose-pink-solid);
    font-size: 22px;
}

/* === BUTTONS === */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    padding: 12px 28px;
    border-radius: var(--radius-pill);
    font-weight: 600;
    font-size: 14px;
    transition: var(--transition-smooth);
    white-space: nowrap;
    position: relative;
    overflow: hidden;
}

.btn::after {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 0;
    height: 0;
    background: rgba(255, 255, 255, 0.2);
    border-radius: 50%;
    transform: translate(-50%, -50%);
    transition: width 0.4s, height 0.4s;
}

.btn:active::after {
    width: 300px;
    height: 300px;
}

.btn-primary {
    background: var(--rose-pink);
    color: white;
    box-shadow: 0 4px 15px rgba(244, 114, 182, 0.3);
}

.btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(244, 114, 182, 0.4);
}

.btn-primary:active {
    transform: translateY(0);
}

.btn-secondary {
    background: var(--lavender);
    color: white;
    box-shadow: 0 4px 15px rgba(192, 132, 252, 0.3);
}

.btn-secondary:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(192, 132, 252, 0.4);
}

.btn-sm {
    padding: 8px 18px;
    font-size: 13px;
}

.btn-lg {
    padding: 16px 36px;
    font-size: 16px;
}

.btn-block {
    width: 100%;
    margin-bottom: 8px;
}

.btn-icon {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--glass-bg);
    backdrop-filter: blur(10px);
    color: var(--text-secondary);
    transition: var(--transition-smooth);
    border: 1px solid var(--glass-border);
}

.btn-icon:hover {
    background: var(--rose-pink-solid);
    color: white;
    transform: scale(1.1);
    box-shadow: var(--shadow-glow);
}

/* === HERO SECTION === */
.hero {
    position: relative;
    min-height: 100vh;
    display: flex;
    align-items: center;
    overflow: hidden;
}

.hero-bg {
    position: absolute;
    inset: 0;
    z-index: -1;
}

.hero-bg img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.hero-gradient {
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg,
        rgba(255, 247, 249, 0.95) 0%,
        rgba(253, 242, 248, 0.85) 40%,
        rgba(253, 242, 248, 0.7) 100%);
}

.hero-content {
    padding: 120px 0 80px;
    max-width: 700px;
    position: relative;
    z-index: 1;
    padding-left: 48px;
}

.hero-tag {
    display: inline-block;
    background: var(--glass-bg);
    backdrop-filter: blur(10px);
    padding: 8px 20px;
    border-radius: var(--radius-pill);
    font-size: 14px;
    font-weight: 500;
    color: var(--rose-pink-solid);
    border: 1px solid rgba(244, 114, 182, 0.2);
    margin-bottom: 24px;
}

.hero-title {
    font-family: var(--font-heading);
    font-size: clamp(42px, 6vw, 72px);
    line-height: 1.1;
    margin-bottom: 20px;
    color: var(--text-primary);
}

.hero-title em {
    font-style: italic;
    background: var(--rose-pink);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.hero-subtitle {
    font-size: 18px;
    color: var(--text-secondary);
    margin-bottom: 32px;
    line-height: 1.7;
    max-width: 500px;
}

.hero-cta {
    display: flex;
    gap: 16px;
    margin-bottom: 48px;
    flex-wrap: wrap;
}

.hero-stats {
    display: flex;
    gap: 40px;
}

.hero-stat {
    text-align: center;
}

.hero-stat strong {
    display: block;
    font-size: 24px;
    font-family: var(--font-heading);
    color: var(--text-primary);
}

.hero-stat span {
    font-size: 13px;
    color: var(--text-light);
}

/* === SECTION STYLES === */
.section-header {
    text-align: center;
    margin-bottom: 48px;
}

.section-tag {
    display: inline-block;
    font-size: 14px;
    font-weight: 500;
    color: var(--rose-pink-solid);
    margin-bottom: 12px;
}

.section-title {
    font-family: var(--font-heading);
    font-size: clamp(28px, 4vw, 42px);
    margin-bottom: 12px;
    color: var(--text-primary);
}

.section-subtitle {
    font-size: 16px;
    color: var(--text-secondary);
    max-width: 500px;
    margin: 0 auto;
}

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

/* === CATEGORIES === */
.categories-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 24px;
}

.category-card {
    background: var(--bg-white);
    border-radius: var(--radius-lg);
    padding: 32px 24px;
    text-align: center;
    transition: var(--transition-smooth);
    border: 1px solid rgba(244, 114, 182, 0.08);
    box-shadow: var(--shadow-soft);
}

.category-card:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-hover);
    border-color: rgba(244, 114, 182, 0.2);
}

.category-icon {
    font-size: 48px;
    margin-bottom: 16px;
}

.category-card h3 {
    font-family: var(--font-heading);
    font-size: 20px;
    margin-bottom: 8px;
}

.category-card p {
    font-size: 14px;
    color: var(--text-secondary);
}

/* === PRODUCTS === */
.products-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(260px, 1fr));
    gap: 24px;
}

.products-grid-3 {
    grid-template-columns: repeat(3, 1fr);
}

.product-card {
    background: var(--bg-white);
    border-radius: var(--radius-lg);
    overflow: hidden;
    transition: var(--transition-smooth);
    border: 1px solid rgba(244, 114, 182, 0.06);
    box-shadow: var(--shadow-soft);
}

.product-card:hover {
    transform: translateY(-6px);
    box-shadow: var(--shadow-hover);
}

.product-image {
    position: relative;
    overflow: hidden;
    aspect-ratio: 4/3;
}

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

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

.product-badge {
    position: absolute;
    top: 12px;
    left: 12px;
    background: var(--rose-pink);
    color: white;
    padding: 4px 12px;
    border-radius: var(--radius-pill);
    font-size: 12px;
    font-weight: 600;
    z-index: 2;
}

.badge-new {
    background: var(--lavender);
}

.badge-premium {
    background: var(--warm-peach);
}

.badge-deal {
    background: linear-gradient(135deg, #10b981, #34d399);
}

.product-actions {
    position: absolute;
    top: 12px;
    right: 12px;
    display: flex;
    flex-direction: column;
    gap: 8px;
    opacity: 0;
    transform: translateX(10px);
    transition: var(--transition-smooth);
    z-index: 2;
}

.product-card:hover .product-actions {
    opacity: 1;
    transform: translateX(0);
}

.product-info {
    padding: 20px;
}

.product-category {
    font-size: 12px;
    font-weight: 600;
    color: var(--rose-pink-solid);
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.product-name {
    font-family: var(--font-heading);
    font-size: 18px;
    margin: 8px 0;
}

.product-name a:hover {
    color: var(--rose-pink-solid);
}

.product-desc {
    font-size: 14px;
    color: var(--text-secondary);
    margin-bottom: 8px;
}

.product-rating {
    display: flex;
    align-items: center;
    gap: 2px;
    margin-bottom: 12px;
}

.product-rating i {
    color: #fbbf24;
    font-size: 12px;
}

.product-rating span {
    font-size: 12px;
    color: var(--text-light);
    margin-left: 4px;
}

.product-bottom {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 12px;
}

.product-price {
    font-size: 20px;
    font-weight: 700;
    color: var(--text-primary);
}

/* === FEATURES === */
.features-section {
    background: var(--bg-secondary);
}

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

.feature-card {
    background: var(--bg-white);
    border-radius: var(--radius-lg);
    padding: 32px 24px;
    text-align: center;
    box-shadow: var(--shadow-soft);
    transition: var(--transition-smooth);
    border: 1px solid rgba(244, 114, 182, 0.06);
}

.feature-card:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-medium);
}

.feature-icon {
    font-size: 40px;
    margin-bottom: 16px;
}

.feature-card h3 {
    font-family: var(--font-heading);
    font-size: 18px;
    margin-bottom: 8px;
}

.feature-card p {
    font-size: 14px;
    color: var(--text-secondary);
}

/* === TESTIMONIALS === */
.testimonials-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
}

.testimonial-card {
    background: var(--bg-white);
    border-radius: var(--radius-lg);
    padding: 32px;
    box-shadow: var(--shadow-soft);
    border: 1px solid rgba(244, 114, 182, 0.06);
    transition: var(--transition-smooth);
}

.testimonial-card:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-medium);
}

.testimonial-stars {
    display: flex;
    gap: 2px;
    margin-bottom: 16px;
}

.testimonial-stars i {
    color: #fbbf24;
    font-size: 14px;
}

.testimonial-card p {
    font-size: 15px;
    font-style: italic;
    color: var(--text-secondary);
    margin-bottom: 20px;
    line-height: 1.7;
}

.testimonial-author {
    display: flex;
    align-items: center;
    gap: 12px;
}

.testimonial-avatar {
    width: 44px;
    height: 44px;
    border-radius: 50%;
    background: var(--rose-pink);
    color: white;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    font-size: 16px;
}

.testimonial-author strong {
    display: block;
    font-size: 14px;
}

.testimonial-author span {
    font-size: 12px;
    color: var(--text-light);
}

/* === NEWSLETTER === */
.newsletter-section {
    background: var(--bg-secondary);
}

.newsletter-card {
    background: var(--bg-white);
    border-radius: var(--radius-xl);
    padding: 60px 48px;
    text-align: center;
    box-shadow: var(--shadow-medium);
    border: 1px solid rgba(244, 114, 182, 0.1);
}

.newsletter-content h2 {
    font-family: var(--font-heading);
    font-size: 32px;
    margin: 12px 0;
}

.newsletter-content p {
    color: var(--text-secondary);
    margin-bottom: 24px;
}

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

.newsletter-form input {
    flex: 1;
    padding: 14px 24px;
    border-radius: var(--radius-pill);
    border: 2px solid rgba(244, 114, 182, 0.15);
    background: var(--bg-primary);
    font-size: 14px;
    transition: var(--transition-smooth);
}

.newsletter-form input:focus {
    border-color: var(--rose-pink-solid);
    box-shadow: 0 0 0 4px rgba(244, 114, 182, 0.1);
}

/* === FOOTER === */
.footer {
    background: var(--text-primary);
    color: rgba(255, 255, 255, 0.7);
    padding: 60px 0 24px;
}

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

.footer-logo {
    font-family: var(--font-heading);
    font-size: 22px;
    color: white;
    margin-bottom: 12px;
}

.footer-col p {
    font-size: 14px;
    line-height: 1.7;
}

.footer-col h4 {
    color: white;
    font-size: 16px;
    margin-bottom: 16px;
    font-family: var(--font-heading);
}

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

.footer-col ul li a:hover,
.footer-col ul li a:hover {
    color: var(--rose-pink-solid);
}

.footer-col ul li i {
    margin-right: 8px;
    color: var(--rose-pink-solid);
}

.footer-social {
    display: flex;
    gap: 12px;
    margin-top: 16px;
}

.footer-social a {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.1);
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    transition: var(--transition-smooth);
}

.footer-social a:hover {
    background: var(--rose-pink-solid);
    transform: translateY(-2px);
}

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

/* === PAGE HERO === */
.page-hero {
    background: var(--bg-secondary);
    padding: 100px 0 40px;
    text-align: center;
}

.page-hero-sm {
    padding: 80px 0 30px;
}

.page-title {
    font-family: var(--font-heading);
    font-size: clamp(32px, 5vw, 48px);
    margin-bottom: 12px;
}

.page-subtitle {
    font-size: 16px;
    color: var(--text-secondary);
}

.breadcrumb {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    margin-bottom: 16px;
    font-size: 14px;
    color: var(--text-light);
}

.breadcrumb a:hover {
    color: var(--rose-pink-solid);
}

.breadcrumb i {
    font-size: 10px;
}

/* === SHOP FILTERS === */
.shop-filters {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    justify-content: center;
    margin-bottom: 40px;
}

.filter-btn {
    padding: 10px 22px;
    border-radius: var(--radius-pill);
    font-size: 14px;
    font-weight: 500;
    background: var(--bg-white);
    color: var(--text-secondary);
    border: 2px solid rgba(244, 114, 182, 0.1);
    transition: var(--transition-smooth);
}

.filter-btn:hover,
.filter-btn.active {
    background: var(--rose-pink);
    color: white;
    border-color: transparent;
    box-shadow: 0 4px 15px rgba(244, 114, 182, 0.3);
}

/* === PRODUCT DETAIL === */
.product-detail {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 48px;
    align-items: start;
}

.product-main-image {
    border-radius: var(--radius-lg);
    overflow: hidden;
    box-shadow: var(--shadow-medium);
}

.product-main-image img {
    width: 100%;
    aspect-ratio: 1;
    object-fit: cover;
}

.product-thumbnails {
    display: flex;
    gap: 12px;
    margin-top: 16px;
}

.thumb {
    width: 80px;
    height: 80px;
    border-radius: var(--radius-sm);
    object-fit: cover;
    cursor: pointer;
    border: 3px solid transparent;
    transition: var(--transition-smooth);
    opacity: 0.6;
}

.thumb:hover, .thumb.active {
    border-color: var(--rose-pink-solid);
    opacity: 1;
}

.product-detail-category {
    font-size: 14px;
    font-weight: 600;
    color: var(--rose-pink-solid);
    text-transform: uppercase;
    letter-spacing: 1px;
}

.product-detail-title {
    font-family: var(--font-heading);
    font-size: 36px;
    margin: 8px 0 16px;
}

.product-detail-rating {
    display: flex;
    align-items: center;
    gap: 4px;
    margin-bottom: 16px;
}

.product-detail-rating i {
    color: #fbbf24;
}

.product-detail-rating span {
    color: var(--text-light);
    font-size: 14px;
    margin-left: 8px;
}

.product-detail-price {
    font-size: 32px;
    font-weight: 700;
    color: var(--rose-pink-solid);
    margin-bottom: 20px;
}

.product-detail-desc {
    color: var(--text-secondary);
    line-height: 1.8;
    margin-bottom: 24px;
}

.product-detail-features {
    margin-bottom: 24px;
}

.feature-item {
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 6px 0;
    font-size: 14px;
}

.feature-item i {
    color: #10b981;
}

.product-personalization {
    margin-bottom: 24px;
}

.product-personalization h4 {
    font-family: var(--font-heading);
    margin-bottom: 8px;
}

.product-personalization textarea {
    width: 100%;
    padding: 12px 16px;
    border-radius: var(--radius-md);
    border: 2px solid rgba(244, 114, 182, 0.15);
    background: var(--bg-primary);
    resize: vertical;
    font-size: 14px;
    transition: var(--transition-smooth);
}

.product-personalization textarea:focus {
    border-color: var(--rose-pink-solid);
}

.product-quantity {
    display: flex;
    align-items: center;
    gap: 16px;
    margin-bottom: 24px;
}

.product-quantity label {
    font-weight: 600;
}

.quantity-control {
    display: flex;
    align-items: center;
    gap: 0;
    background: var(--bg-secondary);
    border-radius: var(--radius-pill);
    overflow: hidden;
}

.quantity-control button {
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 16px;
    font-weight: 700;
    color: var(--text-secondary);
    transition: var(--transition-smooth);
}

.quantity-control button:hover {
    background: var(--rose-pink-solid);
    color: white;
}

.quantity-control input,
.quantity-control span {
    width: 48px;
    text-align: center;
    font-weight: 600;
    font-size: 16px;
    border: none;
    background: transparent;
}

.product-detail-actions {
    display: flex;
    gap: 12px;
    margin-bottom: 24px;
    flex-wrap: wrap;
}

.product-detail-trust {
    display: flex;
    gap: 24px;
    font-size: 13px;
    color: var(--text-light);
    flex-wrap: wrap;
}

.product-detail-trust i {
    color: var(--rose-pink-solid);
    margin-right: 4px;
}

/* === CART PAGE === */
.cart-page {
    display: grid;
    grid-template-columns: 1fr 380px;
    gap: 32px;
    align-items: start;
}

.cart-page-empty {
    text-align: center;
    padding: 80px 0;
    grid-column: 1 / -1;
}

.cart-page-empty i {
    font-size: 64px;
    color: var(--text-light);
    opacity: 0.3;
    margin-bottom: 16px;
}

.cart-page-empty h2 {
    font-family: var(--font-heading);
    margin-bottom: 8px;
}

.cart-page-empty p {
    color: var(--text-secondary);
    margin-bottom: 24px;
}

.cart-page-item {
    display: flex;
    gap: 16px;
    padding: 20px;
    background: var(--bg-white);
    border-radius: var(--radius-lg);
    margin-bottom: 12px;
    box-shadow: var(--shadow-soft);
    align-items: center;
}

.cart-page-item-image {
    width: 100px;
    height: 100px;
    border-radius: var(--radius-md);
    overflow: hidden;
    flex-shrink: 0;
}

.cart-page-item-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

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

.cart-page-item-info h3 {
    font-family: var(--font-heading);
    font-size: 18px;
    margin-bottom: 4px;
}

.cart-page-item-price {
    color: var(--text-secondary);
    font-size: 14px;
}

.cart-page-item-total {
    text-align: right;
    display: flex;
    flex-direction: column;
    align-items: flex-end;
    gap: 8px;
}

.cart-page-item-total span {
    font-size: 20px;
    font-weight: 700;
    color: var(--rose-pink-solid);
}

.btn-remove {
    color: var(--text-light);
    padding: 8px;
    transition: var(--transition-smooth);
}

.btn-remove:hover {
    color: #ef4444;
}

.summary-card {
    background: var(--bg-white);
    border-radius: var(--radius-lg);
    padding: 32px;
    box-shadow: var(--shadow-soft);
    position: sticky;
    top: 24px;
}

.summary-card h3 {
    font-family: var(--font-heading);
    font-size: 22px;
    margin-bottom: 20px;
}

.summary-row {
    display: flex;
    justify-content: space-between;
    padding: 10px 0;
    font-size: 15px;
}

.summary-total {
    font-size: 18px;
    font-weight: 700;
}

.summary-total span:last-child {
    color: var(--rose-pink-solid);
    font-size: 22px;
}

.summary-divider {
    border-top: 1px solid rgba(244, 114, 182, 0.1);
    margin: 8px 0;
}

.summary-trust {
    margin-top: 20px;
    display: flex;
    flex-direction: column;
    gap: 8px;
    font-size: 13px;
    color: var(--text-light);
}

.summary-trust i {
    color: #10b981;
    margin-right: 4px;
}

/* === OCCASIONS === */
.occasion-block {
    background: var(--bg-white);
    border-radius: var(--radius-xl);
    padding: 40px;
    box-shadow: var(--shadow-soft);
    border: 1px solid rgba(244, 114, 182, 0.06);
}

.occasion-header {
    display: flex;
    align-items: center;
    gap: 20px;
    margin-bottom: 32px;
}

.occasion-icon {
    font-size: 48px;
}

.occasion-header h2 {
    font-family: var(--font-heading);
    font-size: 28px;
    margin-bottom: 4px;
}

.occasion-header p {
    color: var(--text-secondary);
    font-size: 15px;
}

/* === COLLECTIONS === */
.collections-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
    margin-bottom: 60px;
}

.collection-card {
    border-radius: var(--radius-xl);
    overflow: hidden;
    box-shadow: var(--shadow-medium);
    transition: var(--transition-smooth);
}

.collection-card:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-hover);
}

.collection-image {
    position: relative;
    aspect-ratio: 3/4;
}

.collection-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.collection-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(to top, rgba(26, 26, 46, 0.85) 0%, rgba(26, 26, 46, 0.2) 100%);
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: flex-end;
    padding: 40px 24px;
    text-align: center;
    color: white;
}

.collection-overlay h2 {
    font-family: var(--font-heading);
    font-size: 24px;
    margin-bottom: 8px;
}

.collection-overlay p {
    font-size: 14px;
    opacity: 0.8;
    margin-bottom: 20px;
}

/* === BLOG === */
.blog-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 24px;
}

.blog-card {
    background: var(--bg-white);
    border-radius: var(--radius-lg);
    overflow: hidden;
    box-shadow: var(--shadow-soft);
    transition: var(--transition-smooth);
    border: 1px solid rgba(244, 114, 182, 0.06);
}

.blog-card:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-hover);
}

.blog-card-featured {
    grid-column: 1 / -1;
    display: grid;
    grid-template-columns: 1fr 1fr;
}

.blog-image {
    position: relative;
    overflow: hidden;
}

.blog-card:not(.blog-card-featured) .blog-image {
    aspect-ratio: 16/10;
}

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

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

.blog-tag {
    position: absolute;
    top: 12px;
    left: 12px;
    background: var(--rose-pink);
    color: white;
    padding: 4px 14px;
    border-radius: var(--radius-pill);
    font-size: 12px;
    font-weight: 600;
}

.blog-content {
    padding: 24px;
}

.blog-meta {
    display: flex;
    gap: 16px;
    font-size: 13px;
    color: var(--text-light);
    margin-bottom: 12px;
}

.blog-meta i {
    margin-right: 4px;
}

.blog-content h2 {
    font-family: var(--font-heading);
    font-size: 24px;
    margin-bottom: 12px;
    line-height: 1.3;
}

.blog-content h3 {
    font-family: var(--font-heading);
    font-size: 18px;
    margin-bottom: 8px;
    line-height: 1.3;
}

.blog-content p {
    color: var(--text-secondary);
    font-size: 14px;
    line-height: 1.7;
    margin-bottom: 16px;
}

/* === CONTACT === */
.contact-grid {
    display: grid;
    grid-template-columns: 1.5fr 1fr;
    gap: 40px;
}

.contact-form-wrapper {
    background: var(--bg-white);
    border-radius: var(--radius-xl);
    padding: 40px;
    box-shadow: var(--shadow-soft);
}

.contact-form-wrapper h2 {
    font-family: var(--font-heading);
    font-size: 28px;
    margin-bottom: 8px;
}

.contact-form-wrapper > p {
    color: var(--text-secondary);
    margin-bottom: 24px;
}

.form-group {
    margin-bottom: 20px;
}

.form-group label {
    display: block;
    font-weight: 600;
    font-size: 14px;
    margin-bottom: 6px;
}

.form-group input,
.form-group textarea,
.form-group select {
    width: 100%;
    padding: 12px 16px;
    border-radius: var(--radius-md);
    border: 2px solid rgba(244, 114, 182, 0.12);
    background: var(--bg-primary);
    font-size: 14px;
    transition: var(--transition-smooth);
}

.form-group input:focus,
.form-group textarea:focus,
.form-group select:focus {
    border-color: var(--rose-pink-solid);
    box-shadow: 0 0 0 4px rgba(244, 114, 182, 0.1);
}

.contact-info-card {
    background: var(--bg-white);
    border-radius: var(--radius-xl);
    padding: 32px;
    box-shadow: var(--shadow-soft);
    margin-bottom: 24px;
}

.contact-info-item {
    display: flex;
    gap: 16px;
    padding: 16px 0;
    border-bottom: 1px solid rgba(244, 114, 182, 0.06);
}

.contact-info-item:last-child {
    border-bottom: none;
}

.contact-info-icon {
    width: 48px;
    height: 48px;
    border-radius: 50%;
    background: var(--bg-secondary);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--rose-pink-solid);
    font-size: 18px;
    flex-shrink: 0;
}

.contact-info-item h4 {
    font-size: 15px;
    margin-bottom: 2px;
}

.contact-info-item p {
    font-size: 14px;
    color: var(--text-secondary);
}

.contact-social {
    background: var(--bg-white);
    border-radius: var(--radius-xl);
    padding: 24px 32px;
    box-shadow: var(--shadow-soft);
}

.contact-social h4 {
    font-family: var(--font-heading);
    margin-bottom: 12px;
}

/* === ABOUT === */
.about-content {
    max-width: 800px;
    margin: 0 auto;
}

.about-text h2 {
    font-family: var(--font-heading);
    font-size: 28px;
    margin: 32px 0 16px;
    color: var(--text-primary);
}

.about-text h2:first-child {
    margin-top: 0;
}

.about-text p {
    color: var(--text-secondary);
    line-height: 1.8;
    margin-bottom: 16px;
}

.about-values {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
    margin-top: 24px;
}

.about-value {
    background: var(--bg-white);
    border-radius: var(--radius-lg);
    padding: 24px;
    box-shadow: var(--shadow-soft);
    text-align: center;
    transition: var(--transition-smooth);
}

.about-value:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-medium);
}

.about-value-icon {
    font-size: 36px;
    margin-bottom: 12px;
}

.about-value h3 {
    font-family: var(--font-heading);
    margin-bottom: 6px;
}

.about-value p {
    font-size: 14px;
    color: var(--text-secondary);
    margin-bottom: 0;
}

/* === LEGAL === */
.legal-content {
    max-width: 800px;
    margin: 0 auto;
    background: var(--bg-white);
    border-radius: var(--radius-xl);
    padding: 48px;
    box-shadow: var(--shadow-soft);
}

.legal-content h2 {
    font-family: var(--font-heading);
    font-size: 22px;
    margin: 32px 0 12px;
    color: var(--text-primary);
}

.legal-content p {
    color: var(--text-secondary);
    line-height: 1.8;
    margin-bottom: 12px;
}

.legal-content a {
    color: var(--rose-pink-solid);
    text-decoration: underline;
}

/* === ANIMATIONS === */
.fade-in {
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 0.6s ease calc(var(--delay, 0s)),
                transform 0.6s ease calc(var(--delay, 0s));
}

.fade-in.visible {
    opacity: 1;
    transform: translateY(0);
}

/* Added to Cart animation */
@keyframes addedPulse {
    0% { transform: scale(1); }
    50% { transform: scale(0.95); }
    100% { transform: scale(1); }
}

.btn-added {
    animation: addedPulse 0.3s ease;
}

/* === RESPONSIVE === */
@media (max-width: 1024px) {
    .categories-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    .features-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    .testimonials-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    .footer-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    .product-detail {
        grid-template-columns: 1fr;
    }
    .cart-page {
        grid-template-columns: 1fr;
    }
    .collections-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    .blog-card-featured {
        grid-template-columns: 1fr;
    }
    .contact-grid {
        grid-template-columns: 1fr;
    }
    .products-grid-3 {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 768px) {
    .sidebar {
        display: none;
    }
    .mobile-nav {
        display: flex;
        justify-content: space-around;
    }
    .main-content {
        margin-left: 0;
        padding-bottom: 80px;
    }
    .hero-content {
        padding-left: 0;
        text-align: center;
        max-width: 100%;
        display: flex;
        flex-direction: column;
        align-items: center;
    }
    .hero-stats {
        justify-content: center;
    }
    .categories-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 16px;
    }
    .features-grid {
        grid-template-columns: 1fr 1fr;
        gap: 16px;
    }
    .testimonials-grid {
        grid-template-columns: 1fr;
    }
    .footer-grid {
        grid-template-columns: 1fr;
        gap: 24px;
    }
    .newsletter-form {
        flex-direction: column;
    }
    .newsletter-card {
        padding: 40px 24px;
    }
    .products-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 16px;
    }
    .products-grid-3 {
        grid-template-columns: repeat(2, 1fr);
    }
    .collections-grid {
        grid-template-columns: 1fr;
    }
    .blog-grid {
        grid-template-columns: 1fr;
    }
    .blog-card-featured {
        grid-column: 1;
    }
    .occasion-block {
        padding: 24px;
    }
    .legal-content {
        padding: 24px;
    }
    .about-values {
        grid-template-columns: 1fr;
    }
    .hero-cta {
        justify-content: center;
    }
    .section {
        padding: 48px 0;
    }
    .page-hero {
        padding: 80px 0 32px;
    }
}

@media (max-width: 480px) {
    .products-grid {
        grid-template-columns: 1fr;
    }
    .products-grid-3 {
        grid-template-columns: 1fr;
    }
    .categories-grid {
        grid-template-columns: 1fr 1fr;
    }
    .features-grid {
        grid-template-columns: 1fr;
    }
    .hero-stats {
        flex-direction: column;
        gap: 16px;
    }
    .product-detail-actions {
        flex-direction: column;
    }
    .product-detail-actions .btn {
        width: 100%;
    }
    .cart-page-item {
        flex-direction: column;
        align-items: flex-start;
    }
    .cart-page-item-total {
        flex-direction: row;
        width: 100%;
        justify-content: space-between;
        align-items: center;
    }
}
/* ENDFILE */