/* ========== VARIABLES & RESET ========== */
:root {
    --primary-color: #D4AF37;
    --dark-color: #1A1A1A;
    --light-color: #FFFFFF;
    --bg-color: #F9F8F5;
    --border-color: #E8E5E0;
    --text-color: #333333;
    --text-light: #666666;
    --accent-bg: #F5F1E8;

    --spacing-xs: 0.5rem;
    --spacing-sm: 1rem;
    --spacing-md: 2rem;
    --spacing-lg: 3rem;
    --spacing-xl: 4rem;

    --font-primary: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    --font-heading: 'Georgia', serif;

    --transition: all 0.3s ease;
    --shadow: 0 2px 8px rgba(0, 0, 0, 0.08);
    --shadow-lg: 0 8px 24px rgba(0, 0, 0, 0.12);
}

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

html {
    scroll-behavior: smooth;
}

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

/* ========== ANIMATIONS ========== */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes fadeInLeft {
    from {
        opacity: 0;
        transform: translateX(-30px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

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

@keyframes slideInDown {
    from {
        opacity: 0;
        transform: translateY(-20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes pulse {
    0%, 100% { opacity: 1; }
    50% { opacity: 0.7; }
}

@keyframes scaleInCenter {
    from {
        opacity: 0;
        transform: scale(0.8);
    }
    to {
        opacity: 1;
        transform: scale(1);
    }
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 var(--spacing-md);
}

/* ========== BUTTONS ========== */
.btn {
    padding: var(--spacing-sm) var(--spacing-md);
    border: none;
    border-radius: 4px;
    font-size: 1rem;
    font-weight: 600;
    cursor: pointer;
    transition: var(--transition);
    text-transform: uppercase;
    letter-spacing: 1px;
    font-size: 0.85rem;
    position: relative;
    overflow: hidden;
}

.btn::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: rgba(255, 255, 255, 0.3);
    transition: left 0.4s ease;
}

.btn:hover::before {
    left: 100%;
}

.btn-primary {
    background: linear-gradient(135deg, var(--primary-color), #E6B800);
    color: var(--dark-color);
    box-shadow: 0 4px 12px rgba(212, 175, 55, 0.3);
}

.btn-primary:hover {
    background: linear-gradient(135deg, #C09B2E, #D4AF37);
    transform: translateY(-4px);
    box-shadow: 0 8px 20px rgba(212, 175, 55, 0.4);
}

.btn-secondary {
    background-color: transparent;
    border: 2px solid var(--primary-color);
    color: var(--primary-color);
    transition: var(--transition);
}

.btn-secondary:hover {
    background: linear-gradient(135deg, var(--primary-color), #E6B800);
    color: var(--dark-color);
    transform: translateY(-2px);
}

/* ========== HEADER ========== */
.header {
    background-color: var(--light-color);
    border-bottom: 2px solid var(--border-color);
    position: sticky;
    top: 0;
    z-index: 100;
    box-shadow: var(--shadow);
    animation: slideInDown 0.5s ease;
}

.header-top {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: var(--spacing-md) 0;
    animation: fadeInUp 0.6s ease 0.1s both;
}

.logo {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-decoration: none;
    cursor: pointer;
    transition: var(--transition);
}

.logo:hover {
    transform: scale(1.05);
}

.logo h1 {
    font-family: var(--font-heading);
    font-size: 2rem;
    color: var(--dark-color);
    font-weight: 700;
    letter-spacing: 2px;
    transition: var(--transition);
}

.logo h1::before {
    content: "✦ ";
    color: var(--primary-color);
    font-size: 0.8em;
}

.logo-subtitle {
    font-size: 0.75rem;
    text-transform: uppercase;
    letter-spacing: 2px;
    color: var(--primary-color);
    margin-top: -0.5rem;
    animation: pulse 2s ease-in-out infinite;
}

/* Navigation */
.nav {
    display: flex;
    gap: var(--spacing-lg);
    align-items: center;
    animation: fadeInDown 0.7s ease 0.2s both;
}

.nav-link {
    text-decoration: none;
    color: var(--text-color);
    font-weight: 500;
    font-size: 0.95rem;
    position: relative;
    transition: var(--transition);
    padding: 0.5rem 0;
}

.nav-link::before {
    content: '◆ ';
    color: var(--primary-color);
    opacity: 0;
    margin-right: 0.3rem;
    transition: var(--transition);
}

.nav-link::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 0;
    height: 3px;
    background: linear-gradient(90deg, var(--primary-color), transparent);
    transition: width 0.4s ease;
}

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

.nav-link:hover::before {
    opacity: 1;
}

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

/* Header Actions */
.header-actions {
    display: flex;
    gap: var(--spacing-md);
    align-items: center;
    animation: fadeInRight 0.7s ease 0.2s both;
}

.btn-search,
.btn-cart {
    background: none;
    border: none;
    cursor: pointer;
    color: var(--text-color);
    transition: var(--transition);
    display: flex;
    align-items: center;
    gap: 0.5rem;
    position: relative;
    padding: 0.5rem;
}

.btn-search:hover,
.btn-cart:hover {
    color: var(--primary-color);
    transform: scale(1.2) rotate(5deg);
}

.btn-search::before,
.btn-cart::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: radial-gradient(circle, rgba(212, 175, 55, 0.1) 0%, transparent 70%);
    border-radius: 50%;
    opacity: 0;
    transition: opacity 0.3s ease;
    z-index: -1;
}

.btn-search:hover::before,
.btn-cart:hover::before {
    opacity: 1;
    animation: pulse 0.6s ease;
}

.btn-cart {
    position: relative;
}

.cart-count {
    position: absolute;
    top: -8px;
    right: -8px;
    background: linear-gradient(135deg, var(--primary-color), #E6B800);
    color: var(--dark-color);
    width: 22px;
    height: 22px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.75rem;
    font-weight: bold;
    box-shadow: 0 2px 8px rgba(212, 175, 55, 0.3);
    animation: scaleInCenter 0.4s ease;
}

/* ========== HERO SECTION ========== */
.hero {
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.95) 0%, rgba(245, 241, 232, 0.95) 100%),
                url('images/hero-bg.jpg') center/cover;
    padding: var(--spacing-xl) var(--spacing-md);
    text-align: center;
    min-height: 500px;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    overflow: hidden;
}

.hero::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -10%;
    width: 500px;
    height: 500px;
    background: radial-gradient(circle, rgba(212, 175, 55, 0.15) 0%, transparent 70%);
    border-radius: 50%;
    animation: float 8s ease-in-out infinite;
}

.hero::after {
    content: '';
    position: absolute;
    bottom: -30%;
    left: -5%;
    width: 400px;
    height: 400px;
    background: radial-gradient(circle, rgba(212, 175, 55, 0.08) 0%, transparent 70%);
    border-radius: 50%;
    animation: float 10s ease-in-out infinite reverse;
}

@keyframes float {
    0%, 100% { transform: translateY(0px); }
    50% { transform: translateY(30px); }
}

.hero-content {
    position: relative;
    z-index: 2;
    max-width: 600px;
    animation: fadeInUp 0.8s ease 0.3s both;
}

.hero h2 {
    font-family: var(--font-heading);
    font-size: 3.5rem;
    color: var(--dark-color);
    margin-bottom: var(--spacing-md);
    font-weight: 700;
    letter-spacing: 1px;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.1);
}

.hero h2::before {
    content: '⭐ ';
    color: var(--primary-color);
}

.hero p {
    font-size: 1.1rem;
    color: var(--text-light);
    margin-bottom: var(--spacing-lg);
    line-height: 1.8;
    animation: fadeInUp 0.8s ease 0.5s both;
}

/* ========== SECTIONS ========== */
section {
    padding: var(--spacing-xl) var(--spacing-md);
}

section h2 {
    font-family: var(--font-heading);
    font-size: 2.5rem;
    color: var(--dark-color);
    margin-bottom: var(--spacing-md);
    text-align: center;
}

.section-subtitle {
    text-align: center;
    color: var(--text-light);
    margin-bottom: var(--spacing-lg);
    font-size: 1.1rem;
}

/* ========== COLLECTIONS ========== */
.collections {
    background-color: var(--light-color);
    animation: fadeInUp 0.8s ease both;
}

.collections-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: var(--spacing-lg);
}

.collection-card {
    background: white;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: var(--shadow);
    transition: var(--transition);
    cursor: pointer;
    animation: fadeInUp 0.7s ease both;
}

.collection-card:nth-child(1) { animation-delay: 0.2s; }
.collection-card:nth-child(2) { animation-delay: 0.3s; }
.collection-card:nth-child(3) { animation-delay: 0.4s; }

.collection-card:hover {
    transform: translateY(-12px) scale(1.02);
    box-shadow: 0 15px 40px rgba(212, 175, 55, 0.25);
}

.collection-card:hover .collection-image {
    transform: scale(1.1) rotate(2deg);
}

.collection-image {
    height: 220px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 4rem;
    overflow: hidden;
    position: relative;
}

.collection-image::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(212, 175, 55, 0.1), transparent);
    opacity: 0;
    transition: opacity 0.3s ease;
}

.collection-card:hover .collection-image::after {
    opacity: 1;
}

.collection-card h3 {
    padding: var(--spacing-md);
    font-size: 1.3rem;
    color: var(--dark-color);
    margin: 0;
    transition: var(--transition);
}

.collection-card:hover h3 {
    color: var(--primary-color);
}

.collection-card h3::before {
    content: '▪ ';
    color: var(--primary-color);
    margin-right: 0.5rem;
}

.collection-card p {
    padding: 0 var(--spacing-md) var(--spacing-md);
    color: var(--text-light);
    margin: 0;
    font-size: 0.95rem;
}

/* ========== PRODUCTS ========== */
.products {
    background-color: var(--bg-color);
    animation: fadeInUp 0.8s ease both;
}

.products-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
    gap: var(--spacing-lg);
}

.product-card {
    background: white;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: var(--shadow);
    transition: var(--transition);
    display: flex;
    flex-direction: column;
    animation: fadeInUp 0.7s ease both;
}

.product-card:nth-child(1) { animation-delay: 0.1s; }
.product-card:nth-child(2) { animation-delay: 0.2s; }
.product-card:nth-child(3) { animation-delay: 0.3s; }
.product-card:nth-child(4) { animation-delay: 0.4s; }
.product-card:nth-child(5) { animation-delay: 0.5s; }
.product-card:nth-child(6) { animation-delay: 0.6s; }

.product-card:hover {
    box-shadow: 0 15px 40px rgba(212, 175, 55, 0.25);
    transform: translateY(-10px) scale(1.01);
}

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

.product-image {
    height: 240px;
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    background: linear-gradient(135deg, #E8E5E0 0%, #F5F1E8 100%);
}

.product-placeholder {
    display: none;
}

.product-rating {
    position: absolute;
    top: 12px;
    right: 12px;
    background: linear-gradient(135deg, var(--primary-color), #E6B800);
    color: var(--dark-color);
    padding: 8px 14px;
    border-radius: 20px;
    font-weight: bold;
    font-size: 0.9rem;
    box-shadow: 0 4px 12px rgba(212, 175, 55, 0.3);
    animation: slideInDown 0.5s ease 0.5s both;
}

.product-info {
    padding: var(--spacing-md);
    display: flex;
    flex-direction: column;
    flex-grow: 1;
}

.product-info h3 {
    font-size: 1.1rem;
    color: var(--dark-color);
    margin-bottom: var(--spacing-sm);
    font-weight: 600;
    transition: var(--transition);
}

.product-card:hover .product-info h3 {
    color: var(--primary-color);
}

.product-info h3::before {
    content: '✦ ';
    color: var(--primary-color);
    margin-right: 0.4rem;
}

.product-description {
    color: var(--text-light);
    font-size: 0.95rem;
    margin-bottom: auto;
    line-height: 1.5;
}

.product-footer {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-top: var(--spacing-md);
    padding-top: var(--spacing-md);
    border-top: 1px solid var(--border-color);
}

.product-price {
    font-family: var(--font-heading);
    font-size: 1.4rem;
    color: var(--primary-color);
    font-weight: bold;
}

.product-price::before {
    content: '€ ';
}

.btn-sm {
    padding: 0.6rem 1rem;
    font-size: 0.8rem;
}

/* ========== ABOUT ========== */
.about {
    background: linear-gradient(180deg, var(--light-color) 0%, var(--accent-bg) 100%);
}

.about-content {
    display: grid;
    grid-template-columns: 1fr;
    gap: var(--spacing-xl);
    align-items: center;
}

.about-text h2 {
    text-align: left;
    margin-bottom: var(--spacing-md);
}

.about-text p {
    font-size: 1.05rem;
    color: var(--text-light);
    margin-bottom: var(--spacing-md);
    line-height: 1.8;
}

.about-features {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: var(--spacing-lg);
    margin-top: var(--spacing-lg);
}

.feature {
    background: white;
    padding: var(--spacing-md);
    border-radius: 4px;
    box-shadow: var(--shadow);
}

.feature h4 {
    color: var(--primary-color);
    margin-bottom: var(--spacing-sm);
    font-size: 1.1rem;
}

.feature p {
    color: var(--text-light);
    margin: 0;
    font-size: 0.95rem;
}

/* ========== CONTACT ========== */
.contact {
    background-color: var(--light-color);
    animation: fadeInUp 0.8s ease both;
}

.contact-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: var(--spacing-xl);
    margin-top: var(--spacing-lg);
}

.contact-info {
    display: grid;
    gap: var(--spacing-lg);
}

.contact-item {
    animation: fadeInLeft 0.7s ease both;
    transition: var(--transition);
    padding: var(--spacing-md);
    border-radius: 8px;
}

.contact-item:nth-child(1) { animation-delay: 0.2s; }
.contact-item:nth-child(2) { animation-delay: 0.3s; }
.contact-item:nth-child(3) { animation-delay: 0.4s; }
.contact-item:nth-child(4) { animation-delay: 0.5s; }

.contact-item:hover {
    background-color: rgba(212, 175, 55, 0.08);
    transform: translateX(8px);
}

.contact-item h4 {
    color: var(--dark-color);
    margin-bottom: var(--spacing-sm);
    font-size: 1.1rem;
}

.contact-item h4::first-letter {
    font-size: 1.3em;
    color: var(--primary-color);
}

.contact-item p {
    color: var(--text-light);
    margin: 0;
    line-height: 1.6;
}

.contact-form {
    display: flex;
    flex-direction: column;
    gap: var(--spacing-md);
    animation: fadeInRight 0.7s ease 0.2s both;
}

.contact-form input,
.contact-form textarea {
    padding: var(--spacing-sm);
    border: 2px solid var(--border-color);
    border-radius: 6px;
    font-family: var(--font-primary);
    font-size: 1rem;
    color: var(--text-color);
    transition: var(--transition);
    background: white;
}

.contact-form input::placeholder,
.contact-form textarea::placeholder {
    color: #CCC;
}

.contact-form input:focus,
.contact-form textarea:focus {
    outline: none;
    border-color: var(--primary-color);
    box-shadow: 0 0 0 4px rgba(212, 175, 55, 0.15);
    transform: translateY(-2px);
}

.contact-form button {
    animation: fadeInUp 0.6s ease 0.3s both;
}

/* ========== MODALS ========== */
.modal {
    display: none;
    position: fixed;
    z-index: 1000;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.6);
    backdrop-filter: blur(4px);
    animation: fadeIn 0.4s ease;
    overflow-y: auto;
}

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

.modal-content {
    background: linear-gradient(180deg, white 0%, #FAFAF8 100%);
    margin: 5% auto;
    padding: var(--spacing-lg);
    border-radius: 12px;
    width: 90%;
    max-width: 600px;
    max-height: 80vh;
    overflow-y: auto;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.3);
    animation: slideInUp 0.4s ease;
    border: 1px solid rgba(212, 175, 55, 0.2);
}

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

.modal-checkout {
    max-width: 500px;
}

.modal-success {
    max-width: 400px;
    text-align: center;
}

.close {
    color: var(--text-light);
    float: right;
    font-size: 1.5rem;
    font-weight: bold;
    cursor: pointer;
    transition: var(--transition);
    width: 32px;
    height: 32px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
}

.close:hover {
    color: var(--primary-color);
    background-color: rgba(212, 175, 55, 0.1);
    transform: rotate(90deg);
}

.modal h2 {
    text-align: left;
    margin-bottom: var(--spacing-md);
    margin-top: 0;
    color: var(--dark-color);
    font-family: var(--font-heading);
}

.modal h2::before {
    content: '▪ ';
    color: var(--primary-color);
    margin-right: 0.5rem;
}

.modal-success h2 {
    text-align: center;
}

/* ========== CART MODAL ========== */
.cart-items {
    margin: var(--spacing-lg) 0;
    max-height: 400px;
    overflow-y: auto;
}

.empty-cart {
    text-align: center;
    color: var(--text-light);
    padding: var(--spacing-lg);
    font-style: italic;
    animation: fadeInUp 0.4s ease;
}

.cart-item {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: var(--spacing-md);
    border-bottom: 1px solid var(--border-color);
    gap: var(--spacing-md);
    animation: slideInLeft 0.4s ease;
    transition: var(--transition);
}

.cart-item:hover {
    background-color: rgba(212, 175, 55, 0.05);
    border-radius: 4px;
}

.cart-item-info h4 {
    margin: 0 0 var(--spacing-sm) 0;
    color: var(--dark-color);
}

.cart-item-info h4::before {
    content: '✓ ';
    color: var(--primary-color);
    margin-right: 0.3rem;
}

.cart-item-info p {
    margin: 0;
    color: var(--text-light);
    font-size: 0.9rem;
}

.cart-item-quantity {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    background: white;
    border: 1px solid var(--border-color);
    border-radius: 6px;
    padding: 0.25rem;
}

.cart-item-quantity button {
    width: 32px;
    height: 32px;
    border: none;
    background: white;
    cursor: pointer;
    transition: var(--transition);
    font-weight: bold;
    color: var(--text-light);
}

.cart-item-quantity button:hover {
    background: linear-gradient(135deg, var(--primary-color), #E6B800);
    color: white;
    transform: scale(1.1);
}

.cart-item-quantity input {
    width: 50px;
    text-align: center;
    border: none;
    padding: 0.25rem;
    font-weight: bold;
}

.cart-item-price {
    font-weight: bold;
    color: var(--primary-color);
    min-width: 70px;
    text-align: right;
    font-family: var(--font-heading);
}

.btn-remove {
    background: none;
    border: none;
    color: #999;
    cursor: pointer;
    font-size: 1.2rem;
    transition: var(--transition);
    width: 32px;
    height: 32px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
}

.btn-remove:hover {
    color: white;
    background-color: #E74C3C;
    transform: rotate(90deg) scale(1.1);
}

.cart-summary {
    background: linear-gradient(135deg, var(--bg-color), white);
    padding: var(--spacing-md);
    border-radius: 8px;
    margin-top: var(--spacing-lg);
    border: 1px solid var(--border-color);
    animation: slideInUp 0.4s ease 0.3s both;
}

.cart-total {
    display: flex;
    justify-content: space-between;
    font-size: 1.3rem;
    font-weight: bold;
    margin-bottom: var(--spacing-md);
    color: var(--dark-color);
    padding: var(--spacing-sm) 0;
    border-bottom: 2px solid var(--border-color);
}

.cart-total span:last-child {
    color: var(--primary-color);
    font-family: var(--font-heading);
}

.btn-full {
    width: 100%;
}

/* ========== CHECKOUT FORM ========== */
.form-group {
    display: flex;
    flex-direction: column;
    margin-bottom: var(--spacing-md);
    animation: fadeInUp 0.5s ease;
}

.form-group:nth-child(1) { animation-delay: 0.1s; }
.form-group:nth-child(2) { animation-delay: 0.2s; }
.form-group:nth-child(3) { animation-delay: 0.3s; }
.form-group:nth-child(4) { animation-delay: 0.4s; }
.form-group:nth-child(5) { animation-delay: 0.5s; }
.form-group:nth-child(6) { animation-delay: 0.6s; }

.form-group label {
    margin-bottom: 0.5rem;
    color: var(--dark-color);
    font-weight: 600;
}

.form-group label::before {
    content: '▸ ';
    color: var(--primary-color);
    margin-right: 0.3rem;
}

.form-group input {
    padding: var(--spacing-sm);
    border: 2px solid var(--border-color);
    border-radius: 6px;
    font-family: var(--font-primary);
    font-size: 1rem;
    transition: var(--transition);
    background: white;
}

.form-group input:focus {
    outline: none;
    border-color: var(--primary-color);
    box-shadow: 0 0 0 4px rgba(212, 175, 55, 0.15);
    transform: translateY(-2px);
}

/* ========== SUCCESS MODAL ========== */
.success-icon {
    width: 100px;
    height: 100px;
    margin: 0 auto var(--spacing-lg);
    background: linear-gradient(135deg, #27AE60, #229954);
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 3rem;
    font-weight: bold;
    box-shadow: 0 8px 20px rgba(39, 174, 96, 0.3);
    animation: scaleInCenter 0.6s cubic-bezier(0.68, -0.55, 0.265, 1.55);
    position: relative;
}

.success-icon::before {
    content: '';
    position: absolute;
    width: 120px;
    height: 120px;
    border: 2px solid rgba(39, 174, 96, 0.3);
    border-radius: 50%;
    animation: pulse 2s ease-in-out infinite;
}

.success-subtitle {
    color: var(--text-light);
    margin-top: var(--spacing-md);
    margin-bottom: var(--spacing-lg);
    animation: fadeInUp 0.6s ease 0.3s both;
}

.modal-success {
    animation: slideInUp 0.5s cubic-bezier(0.68, -0.55, 0.265, 1.55) !important;
}

/* ========== NOTIFICATIONS ========== */
.notification {
    position: fixed;
    bottom: -100px;
    left: 50%;
    transform: translateX(-50%);
    background: linear-gradient(135deg, #27AE60, #229954);
    color: white;
    padding: 1rem 2rem;
    border-radius: 8px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
    transition: bottom 0.4s cubic-bezier(0.68, -0.55, 0.265, 1.55);
    z-index: 2000;
    max-width: 90%;
    font-weight: 500;
    letter-spacing: 0.5px;
    border-left: 4px solid white;
}

.notification::before {
    content: '✓ ';
    font-weight: bold;
    margin-right: 0.5rem;
}

.notification.show {
    bottom: 30px;
    animation: slideInUp 0.4s ease;
}

/* ========== FOOTER ========== */
footer {
    background: linear-gradient(135deg, #1A1A1A, #2D2D2D);
    color: white;
    padding: var(--spacing-lg) var(--spacing-md);
    text-align: center;
    border-top: 2px solid var(--primary-color);
    animation: slideInDown 0.5s ease reverse;
    margin-top: var(--spacing-xl);
}

footer p {
    margin: 0;
    animation: fadeInUp 0.6s ease both;
    line-height: 1.8;
}

footer p::before {
    content: '✦ ';
    color: var(--primary-color);
    margin-right: 0.5rem;
}

footer a {
    color: var(--primary-color);
    text-decoration: none;
    transition: var(--transition);
    font-weight: 600;
    position: relative;
}

footer a::after {
    content: '';
    position: absolute;
    bottom: -2px;
    left: 0;
    width: 0;
    height: 2px;
    background-color: var(--primary-color);
    transition: width 0.3s ease;
}

footer a:hover::after {
    width: 100%;
}

/* ========== ABOUT SECTION ========== */
.about {
    background: linear-gradient(180deg, var(--light-color) 0%, var(--accent-bg) 100%);
    animation: fadeInUp 0.8s ease both;
}

.about-text h2::before {
    content: '✨ ';
    color: var(--primary-color);
}

.about-features {
    animation: fadeInUp 0.8s ease 0.2s both;
}

.feature {
    animation: fadeInUp 0.7s ease both;
    transition: var(--transition);
    position: relative;
}

.feature:nth-child(1) { animation-delay: 0.3s; }
.feature:nth-child(2) { animation-delay: 0.4s; }
.feature:nth-child(3) { animation-delay: 0.5s; }

.feature:hover {
    transform: translateY(-8px);
    box-shadow: 0 12px 30px rgba(212, 175, 55, 0.2);
}

.feature h4::before {
    content: '◆ ';
    color: var(--primary-color);
    margin-right: 0.5rem;
}

/* ========== RESPONSIVE ========== */
@media (max-width: 768px) {
    :root {
        --spacing-xl: 2.5rem;
        --spacing-lg: 2rem;
        --spacing-md: 1.5rem;
    }

    .nav {
        gap: var(--spacing-md);
        display: none;
    }

    .header-top {
        flex-wrap: wrap;
        padding: var(--spacing-md) 0;
    }

    .hero {
        padding: var(--spacing-lg) var(--spacing-md);
        min-height: 350px;
    }

    .hero h2 {
        font-size: 2.2rem;
        margin-bottom: var(--spacing-md);
    }

    .hero p {
        font-size: 1rem;
        margin-bottom: var(--spacing-md);
    }

    .hero-content {
        animation: fadeInUp 0.5s ease !important;
    }

    .logo h1 {
        font-size: 1.5rem;
    }

    section h2 {
        font-size: 2rem;
    }

    section {
        padding: var(--spacing-lg) var(--spacing-md);
    }

    .collections-grid,
    .products-grid,
    .about-features,
    .contact-grid {
        grid-template-columns: 1fr;
    }

    .modal-content {
        width: 95%;
        margin: 40% auto 10%;
        max-height: 70vh;
        border-radius: 16px;
    }

    .product-card,
    .collection-card,
    .feature {
        animation: fadeInUp 0.4s ease !important;
    }

    .btn {
        padding: 0.75rem 1.5rem;
        width: 100%;
        border-radius: 6px;
    }

    .btn-sm {
        width: auto;
    }

    .product-price {
        font-size: 1.2rem;
    }

    .product-info h3 {
        font-size: 1rem;
    }

    .header-actions {
        gap: 1rem;
    }

    .cart-item {
        flex-wrap: wrap;
        gap: 0.5rem;
        padding: var(--spacing-md) 0.5rem;
    }

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

    .cart-item-price {
        flex: 1;
        min-width: 50px;
    }

    .cart-item-quantity input {
        width: 40px;
        font-size: 0.9rem;
    }

    .contact-form {
        animation: fadeInRight 0.5s ease !important;
    }

    .contact-item {
        animation: fadeInLeft 0.4s ease !important;
    }

    footer {
        padding: var(--spacing-md);
    }

    .product-card:hover {
        transform: translateY(-6px) scale(1.01);
    }

    .collection-card:hover {
        transform: translateY(-8px) scale(1.01);
    }

    .feature:hover {
        transform: translateY(-6px);
    }
}

@media (max-width: 480px) {
    :root {
        --spacing-lg: 1.5rem;
        --spacing-md: 1rem;
    }

    .hero h2 {
        font-size: 1.8rem;
    }

    .hero {
        min-height: 300px;
    }

    section h2 {
        font-size: 1.5rem;
    }

    .btn {
        padding: 0.6rem 1.2rem;
        font-size: 0.75rem;
    }

    .modal-content {
        margin: 50% auto 10%;
        padding: var(--spacing-md);
    }

    .product-info h3 {
        font-size: 0.95rem;
    }

    .product-price {
        font-size: 1rem;
    }

    .logo h1 {
        font-size: 1.2rem;
    }

    .header-actions {
        gap: 0.8rem;
    }

    .cart-item-quantity {
        gap: 0.3rem;
    }

    .cart-item-quantity button,
    .btn-remove {
        width: 28px;
        height: 28px;
        font-size: 0.9rem;
    }
}
