/* ==========================================
BACK COMPANY - MAIN STYLESHEET
Version: 1.0
Author: Back Company Digital Team
========================================== */

/* Root Variables */
:root {
–anthrazit: #2d3033;
–coral: #ff6f61;
–coral-hover: #ff5a4a;
–coral-light: #ff8c7a;
–white: #ffffff;
–off-white: #fafafa;
–gray: #666666;
–light-gray: #f5f5f5;
–border-gray: #e5e5e5;
–success: #10b981;
–error: #ef4444;
–shadow-sm: 0 2px 10px rgba(0,0,0,0.08);
–shadow-md: 0 5px 20px rgba(0,0,0,0.1);
–shadow-lg: 0 10px 40px rgba(0,0,0,0.15);
–transition: all 0.3s ease;
}

/* Reset & Base Styles */

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

html {
scroll-behavior: smooth;
}

body {
font-family: -apple-system, BlinkMacSystemFont, ‘Segoe UI’, Roboto, ‘Helvetica Neue’, Arial, sans-serif;
font-size: 16px;
line-height: 1.6;
color: var(–anthrazit);
background-color: var(–white);
overflow-x: hidden;
-webkit-font-smoothing: antialiased;
-moz-osx-font-smoothing: grayscale;
}

/* Typography */
h1, h2, h3, h4, h5, h6 {
font-weight: 600;
line-height: 1.2;
margin-bottom: 1rem;
}

h1 { font-size: clamp(2.5rem, 5vw, 4rem); }
h2 { font-size: clamp(2rem, 4vw, 3rem); }
h3 { font-size: clamp(1.5rem, 3vw, 2rem); }

p {
margin-bottom: 1rem;
}

a {
text-decoration: none;
color: inherit;
transition: var(–transition);
}

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

.coral {
color: var(–coral);
font-weight: 600;
}

.section-title {
text-align: center;
font-size: clamp(2rem, 4vw, 3rem);
margin-bottom: 1rem;
color: var(–anthrazit);
}

.section-subtitle {
text-align: center;
font-size: 1.125rem;
color: var(–gray);
margin-bottom: 3rem;
}

/* Buttons */
.btn {
display: inline-block;
padding: 15px 40px;
border-radius: 30px;
font-weight: 600;
text-align: center;
transition: var(–transition);
cursor: pointer;
border: none;
font-size: 1rem;
}

.btn-primary {
background-color: var(–coral);
color: var(–white);
}

.btn-primary:hover {
background-color: var(–coral-hover);
transform: translateY(-2px);
box-shadow: 0 10px 30px rgba(255, 111, 97, 0.3);
}

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

.btn-secondary:hover {
background-color: var(–white);
color: var(–anthrazit);
}

/* Header Styles */
header {
position: fixed;
top: 0;
left: 0;
right: 0;
background-color: rgba(255, 255, 255, 0.98);
backdrop-filter: blur(10px);
-webkit-backdrop-filter: blur(10px);
box-shadow: var(–shadow-sm);
z-index: 1000;
transition: var(–transition);
}

nav {
display: flex;
justify-content: space-between;
align-items: center;
padding: 1rem 2rem;
}

.logo {
font-size: 1.75rem;
font-weight: 300;
color: var(–anthrazit);
letter-spacing: -0.5px;
}

/* Desktop Navigation */
.desktop-nav {
display: none;
list-style: none;
align-items: center;
gap: 2rem;
}

.desktop-nav a {
font-weight: 500;
color: var(–anthrazit);
position: relative;
}

.desktop-nav a::after {
content: ‘’;
position: absolute;
bottom: -5px;
left: 0;
width: 0;
height: 2px;
background-color: var(–coral);
transition: width 0.3s ease;
}

.desktop-nav a:hover {
color: var(–coral);
}

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

.order-btn {
background-color: var(–coral);
color: var(–white) !important;
padding: 10px 25px;
border-radius: 25px;
}

.order-btn:hover {
background-color: var(–coral-hover);
transform: translateY(-2px);
}

.order-btn::after {
display: none !important;
}

/* Mobile Menu Button */
.menu-btn {
display: flex;
flex-direction: column;
justify-content: center;
align-items: center;
width: 40px;
height: 40px;
background-color: var(–coral);
border: none;
border-radius: 8px;
cursor: pointer;
padding: 8px;
}

.menu-btn span {
width: 24px;
height: 2px;
background-color: var(–white);
margin: 3px 0;
transition: var(–transition);
}

.menu-btn.active span:nth-child(1) {
transform: rotate(45deg) translate(5px, 5px);
}

.menu-btn.active span:nth-child(2) {
opacity: 0;
}

.menu-btn.active span:nth-child(3) {
transform: rotate(-45deg) translate(7px, -6px);
}

/* Mobile Navigation */
.mobile-nav {
position: fixed;
top: 70px;
left: 0;
right: 0;
background-color: var(–white);
transform: translateY(-100%);
transition: transform 0.3s ease;
box-shadow: var(–shadow-lg);
max-height: calc(100vh - 70px);
overflow-y: auto;
}

.mobile-nav.active {
transform: translateY(0);
}

.mobile-nav a {
display: block;
padding: 1.25rem;
color: var(–anthrazit);
font-weight: 500;
border-bottom: 1px solid var(–border-gray);
}

.mobile-nav a:active {
background-color: var(–light-gray);
}

.mobile-order-btn {
background-color: var(–coral);
color: var(–white) !important;
margin: 1rem;
text-align: center;
border-radius: 25px;
border: none;
}

/* Special Offer Banner */
.offer-banner {
background-color: var(–coral);
color: var(–white);
padding: 12px 20px;
text-align: center;
font-weight: 600;
font-size: 0.875rem;
}

/* Hero Section */
.hero {
margin-top: 70px;
min-height: calc(100vh - 70px);
background: linear-gradient(135deg, rgba(45, 48, 51, 0.9), rgba(45, 48, 51, 0.7)),
url(‘data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 1200 800"><rect fill="%23d4c4b8" width="1200" height="800"/><circle cx="600" cy="400" r="300" fill="%23ff6f61" opacity="0.1"/></svg>’);
background-size: cover;
background-position: center;
display: flex;
align-items: center;
justify-content: center;
text-align: center;
color: var(–white);
padding: 2rem;
}

.hero-content h1 {
font-weight: 300;
margin-bottom: 1rem;
letter-spacing: -1px;
}

.hero-content p {
font-size: clamp(1.25rem, 3vw, 1.75rem);
margin-bottom: 2.5rem;
opacity: 0.9;
}

.hero-buttons {
display: flex;
flex-direction: column;
gap: 1rem;
align-items: center;
}

/* Features Section */
.features {
padding: 4rem 0;
background-color: var(–light-gray);
}

.features-grid {
display: grid;
grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
gap: 2rem;
}

.feature-card {
background-color: var(–white);
padding: 2.5rem;
border-radius: 15px;
text-align: center;
box-shadow: var(–shadow-sm);
transition: var(–transition);
}

.feature-card:hover {
transform: translateY(-5px);
box-shadow: var(–shadow-lg);
}

.feature-icon {
font-size: 3rem;
margin-bottom: 1rem;
}

.feature-card h3 {
font-size: 1.25rem;
margin-bottom: 0.75rem;
color: var(–anthrazit);
}

.feature-card p {
color: var(–gray);
line-height: 1.6;
}

/* Products Section */
.products {
padding: 4rem 0;
}

.product-categories {
display: flex;
justify-content: center;
gap: 1rem;
margin-bottom: 3rem;
flex-wrap: wrap;
}

.category-btn {
padding: 10px 25px;
border: 2px solid var(–coral);
background-color: var(–white);
color: var(–coral);
border-radius: 25px;
font-weight: 600;
cursor: pointer;
transition: var(–transition);
}

.category-btn:hover,
.category-btn.active {
background-color: var(–coral);
color: var(–white);
}

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

.product-card {
background-color: var(–white);
border-radius: 15px;
overflow: hidden;
box-shadow: var(–shadow-sm);
transition: var(–transition);
cursor: pointer;
}

.product-card:hover {
transform: scale(1.05);
box-shadow: var(–shadow-lg);
}

.product-image {
height: 200px;
background: linear-gradient(135deg, var(–light-gray), var(–border-gray));
display: flex;
align-items: center;
justify-content: center;
font-size: 4rem;
}

.product-info {
padding: 1.5rem;
}

.product-info h3 {
font-size: 1.125rem;
margin-bottom: 0.5rem;
}

.product-price {
color: var(–coral);
font-size: 1.25rem;
font-weight: 600;
}

/* Hours Section */
.hours {
padding: 4rem 0;
background-color: var(–light-gray);
}

.hours-widget {
background: linear-gradient(135deg, var(–anthrazit), #1a1a1a);
color: var(–white);
border-radius: 20px;
padding: 3rem;
max-