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

:root {
    --primary: #000000;
    --secondary: #ffffff;
    --accent: #ff6b35;
    --neutral: #f8f9fa;
    --text-dark: #1a1a1a;
    --text-light: #6b7280;
    --border: #e5e7eb;
    --shadow-sm: 0 1px 2px 0 rgba(0, 0, 0, 0.05);
    --shadow-md: 0 4px 6px -1px rgba(0, 0, 0, 0.1), 0 2px 4px -1px rgba(0, 0, 0, 0.06);
    --shadow-lg: 0 10px 15px -3px rgba(0, 0, 0, 0.1), 0 4px 6px -2px rgba(0, 0, 0, 0.05);
    --shadow-xl: 0 20px 25px -5px rgba(0, 0, 0, 0.1), 0 10px 10px -5px rgba(0, 0, 0, 0.04);
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, sans-serif;
    color: var(--text-dark);
    background-color: var(--secondary);
    line-height: 1.6;
}

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

/* NAVBAR */
.navbar {
    position: sticky;
    top: 0;
    z-index: 1000;
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    border-bottom: 1px solid var(--border);
    box-shadow: var(--shadow-sm);
    transition: all 0.3s ease;
}

.nav-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    max-width: 1200px;
    margin: 0 auto;
    padding: 1rem 20px;
}

.nav-logo {
    display: flex;
    align-items: center;
    gap: 12px;
    font-size: 24px;
    font-weight: 700;
    text-decoration: none;
    color: var(--primary);
}

.nav-logo img {
    height: 44px;
    width: 44px;
    border-radius: 50%;
    object-fit: cover;
    border: 2px solid var(--border);
    box-shadow: var(--shadow-md);
    transition: all 0.3s ease;
}

.nav-logo:hover img {
    transform: scale(1.05);
    box-shadow: var(--shadow-lg);
}

.nav-links {
    display: flex;
    list-style: none;
    gap: 2rem;
    margin: 0;
}

.nav-links a {
    text-decoration: none;
    color: var(--text-dark);
    font-weight: 500;
    transition: all 0.3s ease;
    position: relative;
    padding: 8px 0;
}

.nav-links a:hover,
.nav-links a.active {
    color: var(--accent);
    transform: translateY(-1px);
}

.nav-links a.active::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    right: 0;
    height: 2px;
    background: linear-gradient(90deg, var(--accent), #ff8c5a);
    border-radius: 2px;
}

.nav-cart {
    display: flex;
    align-items: center;
    gap: 12px;
}

.cart-btn,
.account-btn {
    display: flex;
    align-items: center;
    justify-content: center;
    background: none;
    border: none;
    cursor: pointer;
    position: relative;
    transition: all 0.2s ease;
    text-decoration: none;
    color: var(--text-dark);
    width: 40px;
    height: 40px;
    border-radius: 8px;
    padding: 0;
}

.cart-btn:hover,
.account-btn:hover {
    background: var(--neutral);
    transform: scale(1.05);
}

.cart-icon,
.account-icon {
    width: 20px;
    height: 20px;
    stroke: currentColor;
    fill: none;
    stroke-width: 2;
}

.account-icon {
    width: 22px;
    height: 22px;
}

.cart-count {
    position: absolute;
    top: -6px;
    right: -6px;
    background: linear-gradient(135deg, var(--accent), #ff8c5a);
    color: var(--secondary);
    border-radius: 50%;
    width: 20px;
    height: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 11px;
    font-weight: 700;
    box-shadow: var(--shadow-md);
    border: 2px solid var(--secondary);
}

/* CART SIDEBAR */
.cart-sidebar {
    position: fixed;
    top: 0;
    right: -400px;
    width: 400px;
    height: 100vh;
    background: var(--secondary);
    border-left: 1px solid var(--border);
    box-shadow: -2px 0 8px rgba(0,0,0,0.1);
    display: flex;
    flex-direction: column;
    z-index: 999;
    transition: right 0.3s ease;
    overflow-y: auto;
}

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

.cart-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 20px;
    border-bottom: 1px solid var(--border);
}

.cart-header h2 {
    font-size: 20px;
    font-weight: 700;
}

.close-cart {
    background: none;
    border: none;
    font-size: 24px;
    cursor: pointer;
    color: var(--text-dark);
}

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

.cart-item {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 12px 0;
    border-bottom: 1px solid var(--border);
}

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

.cart-item-info p {
    font-size: 12px;
    color: var(--text-light);
}

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

.quantity-btn {
    background: var(--neutral);
    border: none;
    width: 24px;
    height: 24px;
    border-radius: 4px;
    cursor: pointer;
    font-size: 12px;
    transition: background 0.2s ease;
}

.quantity-btn:hover {
    background: var(--border);
}

.remove-btn {
    background: none;
    border: none;
    color: var(--accent);
    cursor: pointer;
    font-size: 14px;
}

.cart-footer {
    padding: 20px;
    border-top: 2px solid var(--border);
}

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

.checkout-btn {
    width: 100%;
    padding: 12px;
    background: var(--primary);
    color: var(--secondary);
    border: none;
    border-radius: 4px;
    font-size: 14px;
    font-weight: 600;
    cursor: pointer;
    transition: background 0.3s ease;
}

.checkout-btn:hover {
    background: var(--text-dark);
}

/* HERO */
.hero {
    background: linear-gradient(135deg, var(--primary) 0%, #1a1a1a 50%, #2d2d2d 100%);
    color: var(--secondary);
    padding: 140px 20px;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: 
        radial-gradient(circle at 20% 20%, rgba(255, 107, 53, 0.1) 0%, transparent 50%),
        radial-gradient(circle at 80% 80%, rgba(255, 107, 53, 0.08) 0%, transparent 50%);
    opacity: 0.4;
    z-index: 1;
}

/* PARTICLES */
.particles-container {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    overflow: hidden;
    z-index: 1;
}

.particle {
    position: absolute;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 50%;
    pointer-events: none;
    animation: float 20s infinite linear;
}

.particle:nth-child(1) {
    width: 6px;
    height: 6px;
    left: 8%;
    animation-delay: 0s;
    animation-duration: 25s;
}

.particle:nth-child(2) {
    width: 9px;
    height: 9px;
    left: 18%;
    animation-delay: 2s;
    animation-duration: 30s;
}

.particle:nth-child(3) {
    width: 5px;
    height: 5px;
    left: 28%;
    animation-delay: 4s;
    animation-duration: 20s;
}

.particle:nth-child(4) {
    width: 7px;
    height: 7px;
    left: 38%;
    animation-delay: 1s;
    animation-duration: 28s;
}

.particle:nth-child(5) {
    width: 6px;
    height: 6px;
    left: 48%;
    animation-delay: 3s;
    animation-duration: 22s;
}

.particle:nth-child(6) {
    width: 10px;
    height: 10px;
    left: 58%;
    animation-delay: 5s;
    animation-duration: 26s;
}

.particle:nth-child(7) {
    width: 5px;
    height: 5px;
    left: 68%;
    animation-delay: 1.5s;
    animation-duration: 24s;
}

.particle:nth-child(8) {
    width: 8px;
    height: 8px;
    left: 78%;
    animation-delay: 3.5s;
    animation-duration: 27s;
}

.particle:nth-child(9) {
    width: 6px;
    height: 6px;
    left: 12%;
    animation-delay: 2.5s;
    animation-duration: 23s;
}

.particle:nth-child(10) {
    width: 9px;
    height: 9px;
    left: 32%;
    animation-delay: 4.5s;
    animation-duration: 29s;
}

.particle:nth-child(11) {
    width: 5px;
    height: 5px;
    left: 52%;
    animation-delay: 0.5s;
    animation-duration: 21s;
}

.particle:nth-child(12) {
    width: 7px;
    height: 7px;
    left: 72%;
    animation-delay: 3.2s;
    animation-duration: 25s;
}

.particle:nth-child(13) {
    width: 6px;
    height: 6px;
    left: 22%;
    animation-delay: 1.8s;
    animation-duration: 26s;
}

.particle:nth-child(14) {
    width: 10px;
    height: 10px;
    left: 62%;
    animation-delay: 4.2s;
    animation-duration: 24s;
}

.particle:nth-child(15) {
    width: 5px;
    height: 5px;
    left: 82%;
    animation-delay: 2.8s;
    animation-duration: 28s;
}

.particle:nth-child(16) {
    width: 7px;
    height: 7px;
    left: 5%;
    animation-delay: 1.2s;
    animation-duration: 27s;
}

.particle:nth-child(17) {
    width: 8px;
    height: 8px;
    left: 15%;
    animation-delay: 3.8s;
    animation-duration: 23s;
}

.particle:nth-child(18) {
    width: 6px;
    height: 6px;
    left: 42%;
    animation-delay: 0.8s;
    animation-duration: 26s;
}

.particle:nth-child(19) {
    width: 9px;
    height: 9px;
    left: 55%;
    animation-delay: 2.2s;
    animation-duration: 29s;
}

.particle:nth-child(20) {
    width: 5px;
    height: 5px;
    left: 65%;
    animation-delay: 4.8s;
    animation-duration: 21s;
}

.particle:nth-child(21) {
    width: 7px;
    height: 7px;
    left: 35%;
    animation-delay: 1.6s;
    animation-duration: 25s;
}

.particle:nth-child(22) {
    width: 8px;
    height: 8px;
    left: 45%;
    animation-delay: 3.4s;
    animation-duration: 28s;
}

.particle:nth-child(23) {
    width: 6px;
    height: 6px;
    left: 75%;
    animation-delay: 0.3s;
    animation-duration: 24s;
}

.particle:nth-child(24) {
    width: 10px;
    height: 10px;
    left: 88%;
    animation-delay: 2.7s;
    animation-duration: 30s;
}

.particle:nth-child(25) {
    width: 7px;
    height: 7px;
    left: 92%;
    animation-delay: 1.4s;
    animation-duration: 22s;
}

@keyframes float {
    0% {
        transform: translateY(100vh) translateX(0) rotate(0deg);
        opacity: 0;
    }
    10% {
        opacity: 1;
    }
    90% {
        opacity: 1;
    }
    100% {
        transform: translateY(-100px) translateX(100px) rotate(360deg);
        opacity: 0;
    }
}

.hero-content {
    position: relative;
    z-index: 2;
    max-width: 600px;
    margin: 0 auto;
}

.hero h1 {
    font-size: 72px;
    font-weight: 900;
    margin-bottom: 20px;
    line-height: 1.1;
    letter-spacing: -0.02em;
    text-shadow: 0 2px 20px rgba(0, 0, 0, 0.3);
}

.hero p {
    font-size: 20px;
    margin-bottom: 40px;
    opacity: 0.95;
    font-weight: 300;
    letter-spacing: 0.01em;
}

.hero-btn {
    display: inline-block;
    background: linear-gradient(135deg, var(--accent), #ff8c5a);
    color: var(--secondary);
    padding: 16px 40px;
    border-radius: 8px;
    text-decoration: none;
    font-weight: 600;
    transition: all 0.3s ease;
    border: none;
    box-shadow: var(--shadow-lg);
    letter-spacing: 0.5px;
}

.hero-btn:hover {
    transform: translateY(-2px);
    box-shadow: var(--shadow-xl);
    background: linear-gradient(135deg, #ff8c5a, var(--accent));
}

/* FEATURED COLLECTIONS */
.featured {
    padding: 100px 20px;
    background: linear-gradient(to bottom, var(--secondary), var(--neutral));
}

.featured h2,
.values h2 {
    font-size: 42px;
    font-weight: 800;
    margin-bottom: 60px;
    text-align: center;
    letter-spacing: -0.02em;
    color: var(--text-dark);
}

.collection-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 32px;
}

.collection-card {
    background: var(--secondary);
    border-radius: 12px;
    overflow: hidden;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    cursor: pointer;
    border: 1px solid var(--border);
    box-shadow: var(--shadow-sm);
}

.collection-card:hover {
    transform: translateY(-12px) scale(1.02);
    box-shadow: var(--shadow-xl);
    border-color: var(--accent);
}

.collection-card img {
    width: 100%;
    height: 250px;
    object-fit: cover;
}

.collection-card h3 {
    padding: 20px;
    font-size: 20px;
    font-weight: 700;
}

.collection-card p {
    padding: 0 20px 20px;
    color: var(--text-light);
    font-size: 14px;
}

/* VALUES SECTION */
.values {
    padding: 80px 20px;
}

.values-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 32px;
}

.value-item {
    text-align: center;
    padding: 40px 32px;
    border: 1px solid var(--border);
    border-radius: 12px;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    background: var(--secondary);
    box-shadow: var(--shadow-sm);
}

.value-item:hover {
    border-color: var(--accent);
    box-shadow: var(--shadow-lg);
    transform: translateY(-4px);
    background: linear-gradient(to bottom, var(--secondary), var(--neutral));
}

.value-item h3 {
    font-size: 18px;
    font-weight: 700;
    margin-bottom: 12px;
}

.value-item p {
    color: var(--text-light);
    font-size: 14px;
}

/* SHOP PAGE */
.shop-page {
    padding: 60px 20px;
    min-height: calc(100vh - 300px);
}

.shop-header {
    text-align: center;
    margin-bottom: 48px;
}

.shop-header h1 {
    font-size: 40px;
    font-weight: 700;
    margin-bottom: 12px;
}

.shop-header p {
    color: var(--text-light);
    font-size: 16px;
}

.filters-section {
    display: flex;
    gap: 20px;
    margin-bottom: 32px;
    flex-wrap: wrap;
}

.filter-group {
    display: flex;
    align-items: center;
    gap: 10px;
}

.filter-group label {
    font-weight: 600;
    font-size: 14px;
}

.filter-group select {
    padding: 8px 12px;
    border: 1px solid var(--border);
    border-radius: 4px;
    background: var(--secondary);
    cursor: pointer;
    font-size: 14px;
}

.products-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(220px, 1fr));
    gap: 24px;
}

.product-card {
    background: var(--secondary);
    border: 1px solid var(--border);
    border-radius: 12px;
    overflow: hidden;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    box-shadow: var(--shadow-sm);
}

.product-card:hover {
    box-shadow: var(--shadow-xl);
    transform: translateY(-8px);
    border-color: var(--accent);
}

.product-image {
    width: 100%;
    height: 200px;
    object-fit: cover;
    background: var(--neutral);
}

.product-info {
    padding: 16px;
}

.product-category {
    font-size: 12px;
    color: var(--accent);
    font-weight: 600;
    text-transform: uppercase;
    margin-bottom: 4px;
}

.product-name {
    font-size: 16px;
    font-weight: 700;
    margin-bottom: 8px;
    line-height: 1.3;
}

.product-price {
    font-size: 18px;
    font-weight: 700;
    color: var(--primary);
    margin-bottom: 12px;
}

.product-rating {
    display: flex;
    gap: 4px;
    margin-bottom: 12px;
    font-size: 12px;
}

.add-to-cart-btn {
    width: 100%;
    padding: 12px;
    background: linear-gradient(135deg, var(--primary), #2d2d2d);
    color: var(--secondary);
    border: none;
    border-radius: 8px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    font-size: 14px;
    box-shadow: var(--shadow-sm);
    letter-spacing: 0.3px;
}

.add-to-cart-btn:hover {
    background: linear-gradient(135deg, var(--accent), #ff8c5a);
    transform: translateY(-1px);
    box-shadow: var(--shadow-md);
}

/* ABOUT PAGE */
.about-hero {
    background: linear-gradient(135deg, var(--primary) 0%, #1a1a1a 100%);
    color: var(--secondary);
    padding: 80px 20px;
    text-align: center;
}

.about-hero h1 {
    font-size: 48px;
    font-weight: 700;
    margin-bottom: 16px;
}

.about-hero p {
    font-size: 20px;
    opacity: 0.9;
}

.about-content {
    padding: 80px 20px;
}

.about-section {
    margin-bottom: 60px;
}

.about-section h2 {
    font-size: 32px;
    font-weight: 700;
    margin-bottom: 20px;
}

.about-section p {
    font-size: 16px;
    color: var(--text-light);
    line-height: 1.8;
}

.values-list {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 32px;
    margin-top: 32px;
}

.value {
    padding: 24px;
    border: 1px solid var(--border);
    border-radius: 8px;
}

.value h3 {
    font-size: 18px;
    font-weight: 700;
    margin-bottom: 12px;
}

.value p {
    color: var(--text-light);
    font-size: 14px;
}

/* CONTACT PAGE */
.contact-page {
    padding: 60px 20px;
    min-height: calc(100vh - 300px);
}

.contact-header {
    text-align: center;
    margin-bottom: 48px;
}

.contact-header h1 {
    font-size: 40px;
    font-weight: 700;
    margin-bottom: 12px;
}

.contact-header p {
    color: var(--text-light);
    font-size: 18px;
}

.contact-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 48px;
    max-width: 1000px;
    margin: 0 auto;
}

.contact-form {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.form-group {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.form-group label {
    font-weight: 600;
    font-size: 14px;
}

.form-group input,
.form-group textarea {
    padding: 12px;
    border: 1px solid var(--border);
    border-radius: 4px;
    font-family: inherit;
    font-size: 14px;
    transition: border-color 0.3s ease;
}

.form-group input:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--accent);
}

.submit-btn {
    padding: 12px;
    background: var(--primary);
    color: var(--secondary);
    border: none;
    border-radius: 4px;
    font-weight: 600;
    cursor: pointer;
    transition: background 0.3s ease;
}

.submit-btn:hover {
    background: var(--accent);
}

.contact-info {
    display: flex;
    flex-direction: column;
    gap: 24px;
}

.contact-info h2 {
    font-size: 28px;
    font-weight: 700;
    margin-bottom: 12px;
}

.info-item h3 {
    font-size: 16px;
    font-weight: 700;
    margin-bottom: 8px;
}

.info-item p {
    color: var(--text-light);
    font-size: 14px;
    line-height: 1.6;
}

/* FOOTER */
.footer {
    background: var(--primary);
    color: var(--secondary);
    padding: 60px 20px 20px;
    margin-top: 80px;
}

.footer-content {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 40px;
    margin-bottom: 40px;
}

.footer-section h4 {
    font-size: 16px;
    font-weight: 700;
    margin-bottom: 16px;
}

.footer-section ul {
    list-style: none;
}

.footer-section a {
    color: rgba(255,255,255,0.7);
    text-decoration: none;
    font-size: 14px;
    transition: color 0.3s ease;
    display: block;
    margin-bottom: 8px;
}

.footer-section a:hover {
    color: var(--accent);
}

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

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

/* RESPONSIVE */
@media (max-width: 768px) {
    .nav-links {
        display: none;
    }

    .hero h1 {
        font-size: 40px;
    }

    .hero p {
        font-size: 16px;
    }

    .featured h2,
    .values h2 {
        font-size: 28px;
    }

    .collection-grid {
        grid-template-columns: 1fr;
    }

    .products-grid {
        grid-template-columns: repeat(auto-fill, minmax(150px, 1fr));
    }

    .contact-content {
        grid-template-columns: 1fr;
        gap: 32px;
    }

    .cart-sidebar {
        width: 100%;
        right: -100%;
    }

    .shop-header h1 {
        font-size: 28px;
    }

    .about-hero h1 {
        font-size: 32px;
    }
}

/* NEW PAGE STYLES */
.page-header {
    text-align: center;
    margin-bottom: 48px;
}

.page-header h1 {
    font-size: 40px;
    font-weight: 700;
    margin-bottom: 12px;
}

.page-header p {
    color: var(--text-light);
    font-size: 18px;
}

/* SERVICE/CATEGORY CARDS */
.service-links-grid,
.blog-categories,
.legal-links,
.cart-links,
.account-links {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 24px;
    margin-top: 32px;
}

.service-card,
.blog-category-card,
.legal-card,
.cart-link-card,
.account-link-card {
    background: var(--secondary);
    border: 1px solid var(--border);
    border-radius: 8px;
    padding: 32px;
    text-decoration: none;
    color: var(--text-dark);
    transition: all 0.3s ease;
    display: block;
}

.service-card:hover,
.blog-category-card:hover,
.legal-card:hover,
.cart-link-card:hover,
.account-link-card:hover {
    border-color: var(--accent);
    box-shadow: 0 8px 16px rgba(0,0,0,0.1);
    transform: translateY(-4px);
}

.service-card h3,
.blog-category-card h3,
.legal-card h3,
.cart-link-card h3,
.account-link-card h3 {
    font-size: 20px;
    font-weight: 700;
    margin-bottom: 12px;
    color: var(--primary);
}

.service-card p,
.blog-category-card p,
.legal-card p,
.cart-link-card p,
.account-link-card p {
    color: var(--text-light);
    font-size: 14px;
    line-height: 1.6;
}

/* CUSTOMER SERVICE PAGE */
.customer-service-page {
    padding: 60px 20px;
    min-height: calc(100vh - 300px);
}

/* BLOG PAGE */
.blog-page {
    padding: 60px 20px;
    min-height: calc(100vh - 300px);
}

/* LEGAL PAGE */
.legal-page {
    padding: 60px 20px;
    min-height: calc(100vh - 300px);
}

/* CART PAGE */
.cart-page {
    padding: 60px 20px;
    min-height: calc(100vh - 300px);
}

/* ACCOUNT PAGE */
.account-page {
    padding: 60px 20px;
    min-height: calc(100vh - 300px);
}