@import url('https://fonts.googleapis.com/css2?family=Inter:wght@100;200;300;400;500;600&display=swap');
        
        :root {
            --bg-color: #ffffff;
            --text-color: #000000;
            --accent-color: #888888;
            --border-color: rgba(0,0,0,0.08);
            --card-bg: #f9f9f9;
            --transition-speed: 0.6s;
            --max-width: 1440px;
            --nav-text-idle: #ffffff;
            --nav-blur-bg: rgba(255, 255, 255, 0.05);
        }

        .dark {
            --bg-color: #0a0a0a;
            --text-color: #f5f5f5;
            --border-color: rgba(255,255,255,0.08);
            --card-bg: #111111;
            --nav-blur-bg: rgba(0, 0, 0, 0.2);
        }

        html {
            scroll-behavior: smooth;
        }

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

        body {
            font-family: 'Inter', sans-serif;
            background-color: var(--bg-color);
            color: var(--text-color);
            transition: background-color var(--transition-speed), color var(--transition-speed);
            line-height: 1.6;
            overflow-x: hidden;
        }

        button {
            background: none;
            border: none;
            color: inherit;
            cursor: pointer;
            font-family: inherit;
            transition: opacity 0.3s;
        }

        button:hover { opacity: 0.6; }
        a { text-decoration: none; color: inherit; transition: opacity 0.3s; }
        a:hover { opacity: 0.6; }

        .navbar {
            position: fixed;
            top: 0;
            width: 100%;
            z-index: 1000;
            padding: 30px 0;
            transition: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
            color: var(--nav-text-idle);
            background: var(--nav-blur-bg);
            backdrop-filter: blur(15px);
            -webkit-backdrop-filter: blur(15px);
            border-bottom: 1px solid rgba(255, 255, 255, 0.05);
        }

        .navbar.scrolled {
            padding: 15px 0;
            background: var(--bg-color);
            color: var(--text-color);
            border-bottom: 1px solid var(--border-color);
            box-shadow: 0 4px 30px rgba(0, 0, 0, 0.02);
        }

        .nav-container {
            max-width: var(--max-width);
            margin: 0 auto;
            padding: 0 40px;
            display: flex;
            justify-content: space-between;
            align-items: center;
        }

        .logo {
            font-size: 16px;
            font-weight: 300;
            letter-spacing: 0.5em;
            text-transform: uppercase;
            white-space: nowrap;
        }

        .nav-links {
            display: flex;
            gap: 40px;
        }

        .nav-link {
            font-size: 10px;
            text-transform: uppercase;
            letter-spacing: 0.2em;
            font-weight: 500;
            position: relative;
        }

        .nav-link.active::after {
            content: '';
            position: absolute;
            bottom: -5px;
            left: 0;
            width: 100%;
            height: 1px;
            background: currentColor;
        }

        .nav-icons {
            display: flex;
            gap: 25px;
            align-items: center;
        }

        .cart-badge {
            position: absolute;
            top: -5px;
            right: -8px;
            background: var(--text-color);
            color: var(--bg-color);
            font-size: 8px;
            width: 14px;
            height: 14px;
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
        }

        .hero {
            height: 100vh;
            position: relative;
            display: flex;
            align-items: center;
            justify-content: center;
            color: white;
            text-align:justify;
            overflow: hidden;
            background: black; 
        }

        .hero-img-container {
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            z-index: 0;
        }

        .hero-img {
            width: 100%;
            height: 100%;
            object-fit: cover;
            filter: brightness(0.6) blur(2px); 
            transform: scale(1.1);
        }

        .hero-content {
             position: relative;
            z-index: 10;
            display: flex;
            flex-direction: column; 
            align-items: center;
        text-align: center;     
            padding: 0 20px;
        }

        .hero-title {
            font-size: clamp(3rem, 8vw, 6rem);
            font-weight: 200;
            letter-spacing: -0.05em;
            line-height: 1;
            margin-bottom: 10px;
            text-shadow: 0 4px 30px rgba(0,0,0,0.4);
        }
        .hero-parg{
               ont-size: 15px;         
            font-weight: 500;
            letter-spacing: 0.02em;
            line-height: 1.8;
            text-align: justify;    
            max-width: 700px;       
            margin: 0 auto 40px auto; 
            opacity: 0.9;   
        }

        .btn-hero {
            background: white;
            color: black;
            padding: 18px 45px;
            font-size: 10px;
            text-transform: uppercase;
            letter-spacing: 0.3em;
            transition: all 0.3s;
        }

        .btn-hero:hover {
            background: black;
            color: white;
            opacity: 1;
        }

        .section-container {
            max-width: var(--max-width);
            margin: 0 auto;
            padding: 120px 40px;
        }

        .view-header {
            display: flex;
            justify-content: space-between;
            align-items: flex-end;
            margin-bottom: 60px;
        }

        .view-title {
            font-size: 32px;
            font-weight: 300;
            font-style: italic;
            margin-bottom: 10px;
        }

        .view-subtitle {
            font-size: 10px;
            text-transform: uppercase;
            letter-spacing: 0.3em;
            opacity: 0.5;
        }

        .product-grid {
            display: grid;
            grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
            gap: 40px 30px;
        }

        .product-card {
            cursor: pointer;
        }

        .product-image-wrapper {
            position: relative;
            aspect-ratio: 3/4;
            background: var(--card-bg);
            margin-bottom: 15px;
            overflow: hidden;
        }

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

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

        .add-to-cart-overlay {
            position: absolute;
            bottom: 15px;
            right: 15px;
            background: white;
            color: black;
            padding: 10px;
            border-radius: 50%;
            opacity: 0;
            transform: translateY(10px);
            transition: all 0.3s ease;
            box-shadow: 0 4px 10px rgba(0,0,0,0.1);
        }

        .product-card:hover .add-to-cart-overlay {
            opacity: 1;
            transform: translateY(0);
        }

        .contact-box {
            border: 1px solid var(--border-color);
            background: var(--bg-color);
            padding: 80px;
            display: grid;
            grid-template-columns: 1fr 1.2fr;
            gap: 100px;
            max-width: 1200px;
            margin: 0 auto;
        }

        .contact-label {
            font-size: 9px;
            text-transform: uppercase;
            letter-spacing: 0.3em;
            opacity: 0.4;
            display: block;
            margin-bottom: 15px;
        }

        .contact-value {
            font-size: 15px;
            font-weight: 300;
            letter-spacing: 0.02em;
            margin-bottom: 40px;
        }

        .contact-input {
            width: 100%;
            background: transparent;
            border: none;
            border-bottom: 1px solid var(--border-color);
            padding: 12px 0;
            color: var(--text-color);
            font-family: inherit;
            font-size: 13px;
            font-weight: 200;
            outline: none;
            margin-bottom: 35px;
        }

        .btn-submit-contact {
            padding: 15px 50px;
            background: var(--text-color);
            color: var(--bg-color);
            font-size: 10px;
            text-transform: uppercase;
            letter-spacing: 0.3em;
        }

        .overlay {
            position: fixed;
            inset: 0;
            background: rgba(0,0,0,0.3);
            backdrop-filter: blur(4px);
            z-index: 2000;
            opacity: 0;
            visibility: hidden;
            transition: 0.5s;
        }

        .cart-drawer {
            position: fixed;
            top: 0;
            right: 0;
            height: 100%;
            width: 100%;
            max-width: 400px;
            background: var(--bg-color);
            z-index: 2100;
            transform: translateX(100%);
            transition: transform 0.5s ease;
            padding: 40px;
            display: flex;
            flex-direction: column;
        }

        .drawer-open .overlay { opacity: 1; visibility: visible; }
        .drawer-open .cart-drawer { transform: translateX(0); }

        .cart-list {
            flex: 1;
            overflow-y: auto;
            margin: 40px 0;
        }

        .footer {
            border-top: 1px solid var(--border-color);
            padding: 120px 40px 60px 40px;
            background-color:grey;
        }


.social-icons svg{
        margin:2px 15px;
        margin-bottom:30px;
        cursor: pointer;
}

        .container-footer {
            max-width: var(--max-width);
            margin: 0 auto;
            display: flex;
            align-items: center;
            text-align: center;
                justify-content:center;
        }

        @media (max-width: 992px) {
            .contact-box { grid-template-columns: 1fr; gap: 60px; padding: 40px; }
        }

        @media (max-width: 768px) {
            .nav-links { display: none; }
            .section-container { padding: 80px 20px; }
        }
