:root {
    --primary: #F1641E;
    --primary-hover: #D1561A;
    --secondary: #222222;
    --bg-main: #FFFFFF;
    --bg-light: #F8F9FA;
    --bg-card: #FFFFFF;
    --text-dark: #222222;
    --text-muted: #595959;
    --border: #E1E3E4;
    --radius: 8px;
    --radius-round: 50px;
    --shadow-sm: 0 1px 4px rgba(34, 34, 34, 0.1);
    --shadow-md: 0 4px 12px rgba(34, 34, 34, 0.1);
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Graphik Webfont', -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue", Arial, sans-serif;
}

body {
    background-color: var(--bg-main);
    color: var(--text-dark);
    line-height: 1.5;
    display: flex;
    flex-direction: column;
    min-height: 100vh;
}

a {
    color: var(--text-dark);
    text-decoration: none;
    transition: 0.2s ease;
}

.container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 24px;
    width: 100%;
}

/* Header */
.site-header {
    background: #FFFFFF;
    border-bottom: 1px solid var(--border);
    position: sticky;
    top: 0;
    z-index: 1000;
    padding: 12px 0;
}

.header-top {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 20px;
    margin-bottom: 12px;
}

.logo {
    font-size: 28px;
    font-weight: 700;
    color: var(--primary);
    letter-spacing: -0.5px;
    flex-shrink: 0;
}

.logo:hover {
    color: var(--primary-hover);
}

.search-bar {
    flex-grow: 1;
    max-width: 800px;
    position: relative;
    display: flex;
}

.search-input {
    width: 100%;
    padding: 12px 20px;
    border: 2px solid var(--text-dark);
    border-radius: var(--radius-round);
    font-size: 16px;
    outline: none;
    transition: 0.2s;
    background: var(--bg-light);
}

.search-input:focus {
    background: #fff;
    box-shadow: 0 0 0 3px rgba(34, 34, 34, 0.1);
}

.search-btn {
    position: absolute;
    right: 5px;
    top: 5px;
    bottom: 5px;
    background: var(--primary);
    border: none;
    border-radius: var(--radius-round);
    width: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    cursor: pointer;
}

.search-btn:hover {
    background: var(--primary-hover);
}

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

.icon-btn {
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 8px 12px;
    border-radius: var(--radius-round);
    font-weight: 600;
    font-size: 14px;
    cursor: pointer;
}

.icon-btn:hover {
    background: var(--bg-light);
}

.cart-icon {
    position: relative;
}

.cart-count {
    position: absolute;
    top: -5px;
    right: -5px;
    background: var(--primary);
    color: white;
    font-size: 11px;
    font-weight: bold;
    width: 18px;
    height: 18px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.header-bottom {
    display: flex;
    justify-content: center;
    gap: 24px;
    font-size: 14px;
    font-weight: 500;
}

.header-bottom a:hover {
    text-decoration: underline;
}

/* Buttons */
.btn {
    background: var(--text-dark);
    color: #fff !important;
    padding: 10px 24px;
    border-radius: var(--radius-round);
    font-weight: 600;
    font-size: 15px;
    border: none;
    cursor: pointer;
    display: inline-block;
    transition: all 0.2s ease;
    text-align: center;
}

.btn:hover {
    background: #000;
    transform: scale(1.02);
}

.btn-primary {
    background: var(--primary);
}

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

.btn-outline {
    background: transparent;
    color: var(--text-dark) !important;
    border: 2px solid var(--text-dark);
}

.btn-outline:hover {
    background: var(--bg-light);
    transform: none;
}

/* Hero Banner */
.hero-banner {
    background: linear-gradient(135deg, #fff7f3 0%, #ffece4 100%);
    padding: 80px 20px;
    text-align: center;
    border-bottom: 1px solid var(--border);
}

.hero-content {
    max-width: 800px;
    margin: 0 auto;
}

.hero-title {
    font-size: 48px;
    font-weight: 800;
    color: var(--text-dark);
    margin-bottom: 20px;
    line-height: 1.1;
    letter-spacing: -1px;
}

.hero-subtitle {
    font-size: 18px;
    color: var(--text-muted);
    margin-bottom: 40px;
    line-height: 1.6;
}

.hero-search {
    display: flex;
    max-width: 600px;
    margin: 0 auto;
    background: white;
    padding: 8px;
    border-radius: var(--radius-round);
    box-shadow: var(--shadow-md);
}

.hero-search-input {
    flex: 1;
    border: none;
    padding: 15px 25px;
    font-size: 16px;
    outline: none;
    border-radius: var(--radius-round);
}

.hero-search-btn {
    background: var(--primary);
    color: white;
    border: none;
    padding: 0 30px;
    font-size: 16px;
    font-weight: 600;
    border-radius: var(--radius-round);
    cursor: pointer;
    transition: 0.2s;
}

.hero-search-btn:hover {
    background: var(--primary-hover);
}

/* Value Propositions */
.value-prop-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
    text-align: center;
}

.value-prop-card {
    padding: 20px;
}

.vp-icon {
    font-size: 40px;
    margin-bottom: 15px;
}

.value-prop-card h3 {
    font-size: 20px;
    margin-bottom: 10px;
    color: var(--text-dark);
}

.value-prop-card p {
    color: var(--text-muted);
    font-size: 15px;
    line-height: 1.6;
}

/* Circular Categories */
.category-circles {
    display: flex;
    justify-content: center;
    gap: 40px;
    padding: 40px 0;
    overflow-x: auto;
    scrollbar-width: none;
}

.cat-circle-link {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 12px;
    min-width: 90px;
}

.cat-circle {
    width: 110px;
    height: 110px;
    border-radius: 50%;
    background: var(--bg-light);
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    transition: 0.3s;
    border: 2px solid transparent;
}

.cat-circle img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.cat-circle-link:hover .cat-circle {
    border-color: var(--text-dark);
    box-shadow: var(--shadow-md);
    transform: translateY(-3px);
}

.cat-circle-title {
    font-size: 15px;
    font-weight: 600;
    text-align: center;
}

.cat-circle-link:hover .cat-circle-title {
    text-decoration: underline;
}

/* Product Grid */
.section-title {
    font-size: 24px;
    font-weight: 700;
    margin-bottom: 24px;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.product-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(220px, 1fr));
    gap: 20px;
    margin-bottom: 50px;
}

.product-card {
    background: var(--bg-card);
    border-radius: var(--radius);
    transition: all 0.2s ease;
    display: flex;
    flex-direction: column;
    position: relative;
}

.product-card:hover {
    box-shadow: var(--shadow-md);
}

.product-img {
    width: 100%;
    aspect-ratio: 4/3;
    object-fit: cover;
    border-radius: var(--radius);
    background: var(--bg-light);
    transition: 0.3s;
}

.product-card:hover .product-img {
    border-radius: var(--radius) var(--radius) 0 0;
}

.product-info {
    padding: 12px 8px;
}

.product-title {
    font-size: 14px;
    font-weight: 400;
    margin-bottom: 6px;
    color: var(--text-dark);
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
    line-height: 1.3;
}

.product-shop {
    font-size: 12px;
    color: var(--text-muted);
    margin-bottom: 6px;
}

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

/* Forms */
.form-container {
    max-width: 450px;
    margin: 40px auto;
    background: var(--bg-card);
    padding: 30px;
    border-radius: var(--radius);
    border: 1px solid var(--border);
    box-shadow: var(--shadow-sm);
}

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

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

.form-control {
    width: 100%;
    padding: 12px 15px;
    border: 1px solid var(--border);
    border-radius: var(--radius);
    font-size: 16px;
    transition: 0.2s;
}

.form-control:focus {
    outline: none;
    border-color: var(--text-dark);
    box-shadow: 0 0 0 1px var(--text-dark);
}

/* Footer */
.site-footer {
    background: var(--secondary);
    color: #fff;
    padding: 50px 0 30px;
    margin-top: auto;
}

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

.footer-col h4 {
    margin-bottom: 20px;
    font-size: 16px;
}

.footer-links {
    list-style: none;
}

.footer-links li {
    margin-bottom: 12px;
}

.footer-links a {
    color: #ccc;
    font-size: 14px;
}

.footer-links a:hover {
    color: #fff;
    text-decoration: underline;
}

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