/*
Theme Name: Techynolic Shop Theme V3 Premium
Theme URI: https://techynolic.com
Author: Techynolic
Description: High-end luxury WooCommerce theme with premium layout and Elementor support.
Version: 3.0
Requires at least: 6.0
Requires PHP: 8.0
Text Domain: techynolic
*/

@import url('https://fonts.googleapis.com/css2?family=Playfair+Display:wght@500;700&family=Inter:wght@300;400;500;600&display=swap');

body {
    margin:0;
    font-family: 'Inter', sans-serif;
    background:#f7f7f7;
    color:#111;
}

h1,h2,h3,h4 {
    font-family:'Playfair Display', serif;
}

.container {
    width:90%;
    max-width:1300px;
    margin:0 auto;
}

.site-header {
    background:#ffffff;
    padding:25px 0;
    border-bottom:1px solid #eee;
    position:sticky;
    top:0;
    z-index:999;
}

.logo {
    font-size:26px;
    font-weight:700;
    letter-spacing:3px;
}

.main-nav ul {
    list-style:none;
    display:flex;
    gap:35px;
    padding:0;
    margin:0;
}

.main-nav a {
    text-decoration:none;
    color:#111;
    font-weight:500;
    position:relative;
}

.main-nav a:after {
    content:'';
    position:absolute;
    width:0;
    height:2px;
    background:#000;
    left:0;
    bottom:-5px;
    transition:0.3s;
}

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

.header-icons {
    display:flex;
    gap:20px;
    align-items:center;
}

.product-card {
    background:#fff;
    padding:25px;
    border-radius:12px;
    transition:0.4s ease;
}

.product-card:hover {
    transform:translateY(-8px);
    box-shadow:0 20px 40px rgba(0,0,0,0.08);
}

.woocommerce ul.products li.product {
    border-radius:12px;
    overflow:hidden;
    transition:0.3s;
}

.woocommerce ul.products li.product:hover {
    transform:translateY(-6px);
}

.button,
.woocommerce button.button,
.woocommerce a.button {
    background:#111;
    color:#fff;
    border:none;
    padding:12px 25px;
    border-radius:50px;
    transition:0.3s;
}

.button:hover,
.woocommerce button.button:hover {
    background:#333;
}

footer {
    background:#111;
    color:#fff;
    padding:60px 0;
    margin-top:100px;
}

footer p {
    text-align:center;
}
