/* ======= Global Styles ======= */
:root {
    --primary-color: #8b5a2b;
    --primary-dark: #6b4521;
    --primary-light: #a67c4f;
    --secondary-color: #2b5a8b;
    --accent-color: #b8860b;
    --text-color: #333333;
    --text-light: #666666;
    --bg-color: #ffffff;
    --bg-light: #f8f5f2;
    --bg-dark: #e6dfda;
    --border-color: #e0e0e0;
    --success-color: #4CAF50;
    --error-color: #F44336;
    --warning-color: #FFC107;
    --box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
    --border-radius: 6px;
    --font-primary: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    --font-heading: 'Playfair Display', Georgia, serif;
    --transition: all 0.3s ease;
}

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

body {
    font-family: var(--font-primary);
    color: var(--text-color);
    line-height: 1.6;
    background-color: var(--bg-light);
}

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

h1, h2, h3, h4, h5, h6 {
    font-family: var(--font-heading);
    margin-bottom: 1rem;
    color: var(--primary-dark);
}

h1 {
    font-size: 2.5rem;
    font-weight: 700;
}

h2 {
    font-size: 2rem;
    margin-bottom: 1.5rem;
}

h3 {
    font-size: 1.5rem;
}

p {
    margin-bottom: 1rem;
}

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

a:hover {
    color: var(--primary-dark);
}

ul {
    list-style: none;
}

img {
    max-width: 100%;
    height: auto;
    display: block;
}

/* ======= Buttons ======= */
.btn {
    display: inline-block;
    padding: 10px 20px;
    background-color: transparent;
    border: none;
    border-radius: var(--border-radius);
    font-weight: 600;
    cursor: pointer;
    transition: var(--transition);
    text-align: center;
    font-family: var(--font-primary);
    font-size: 1rem;
}

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

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

.btn-secondary {
    background-color: var(--bg-dark);
    color: var(--primary-dark);
    border: 1px solid var(--primary-light);
}

.btn-secondary:hover {
    background-color: var(--primary-light);
    color: white;
}

.btn-text {
    color: var(--primary-color);
    padding: 10px;
    background: transparent;
}

.btn-text:hover {
    color: var(--primary-dark);
    background-color: var(--bg-dark);
}

/* ======= Header ======= */
header {
    background-color: var(--bg-color);
    box-shadow: var(--box-shadow);
    padding: 15px 0;
    position: sticky;
    top: 0;
    z-index: 1000;
}

header .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo {
    display: flex;
    align-items: center;
}

.logo a {
    display: flex;
    align-items: center;
    color: var(--primary-dark);
    font-weight: bold;
    font-size: 1.5rem;
}

.logo img {
    height: 50px;
    width: auto;
    margin-right: 10px;
    border-radius: 50%;
}

nav ul {
    display: flex;
    align-items: center;
}

nav li {
    margin-left: 30px;
}

nav a {
    font-weight: 500;
    position: relative;
}

nav a:hover, nav a.active {
    color: var(--primary-dark);
}

nav a.active::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 100%;
    height: 2px;
    background-color: var(--primary-color);
}

.cart-link {
    position: relative;
    display: flex;
    align-items: center;
}

#cart-count {
    position: absolute;
    top: -8px;
    right: -8px;
    background-color: var(--accent-color);
    color: white;
    border-radius: 50%;
    width: 20px;
    height: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.75rem;
}

/* ======= Hero Section ======= */
.hero {
    background-color: var(--primary-color);
    color: white;
    padding: 80px 0;
    text-align: center;
    background-image: linear-gradient(rgba(139, 90, 43, 0.8), rgba(139, 90, 43, 0.8)), url('images/logo.jpg');
    background-size: cover;
    background-position: center;
    position: relative;
}

.hero h1 {
    font-size: 3rem;
    margin-bottom: 1rem;
    color: white;
}

.hero p {
    font-size: 1.25rem;
    margin-bottom: 2rem;
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
}

/* ======= Advantages Section ======= */
.advantages {
    padding: 80px 0;
    text-align: center;
    background-color: var(--bg-color);
}

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

.advantage-item {
    padding: 30px 20px;
    background-color: var(--bg-light);
    border-radius: var(--border-radius);
    box-shadow: var(--box-shadow);
    transition: var(--transition);
}

.advantage-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

.icon {
    display: flex;
    justify-content: center;
    align-items: center;
    width: 60px;
    height: 60px;
    margin: 0 auto 20px;
    border-radius: 50%;
    background-color: var(--primary-light);
    color: white;
}

.stats {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 40px;
    margin-bottom: 40px;
}

.stat-item {
    text-align: center;
}

.stat-number {
    display: block;
    font-size: 2.5rem;
    font-weight: bold;
    color: var(--primary-color);
    margin-bottom: 5px;
}

.stat-text {
    color: var(--text-light);
    font-size: 1rem;
}

.cta {
    text-align: center;
    max-width: 700px;
    margin: 0 auto;
}

.cta p {
    font-size: 1.2rem;
    margin-bottom: 20px;
}

/* ======= About Products Section ======= */
.about-products {
    padding: 80px 0;
    background-color: var(--bg-light);
}

.quality-assurance, .heritage {
    margin-top: 30px;
    padding: 20px;
    background-color: var(--bg-color);
    border-radius: var(--border-radius);
    box-shadow: var(--box-shadow);
}

/* ======= Terminology Section ======= */
.terminology {
    padding: 80px 0;
    background-color: var(--bg-color);
}

.terminology-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
}

.term {
    padding: 20px;
    background-color: var(--bg-light);
    border-radius: var(--border-radius);
    box-shadow: var(--box-shadow);
    transition: var(--transition);
}

.term:hover {
    transform: translateY(-5px);
}

/* ======= Daily Inspiration Section ======= */
.daily-inspiration {
    padding: 80px 0;
    background-color: var(--bg-light);
    text-align: center;
}

.daily-inspiration blockquote {
    font-style: italic;
    font-size: 1.5rem;
    color: var(--primary-dark);
    margin-bottom: 20px;
    position: relative;
    padding: 0 40px;
}

.daily-inspiration blockquote::before,
.daily-inspiration blockquote::after {
    content: '"';
    font-size: 3rem;
    color: var(--primary-light);
    position: absolute;
}

.daily-inspiration blockquote::before {
    top: -20px;
    left: 0;
}

.daily-inspiration blockquote::after {
    bottom: -40px;
    right: 0;
}

.inspiration-text {
    max-width: 800px;
    margin: 0 auto;
    font-size: 1.1rem;
}

/* ======= Products Section ======= */
.products {
    padding: 80px 0;
    background-color: var(--bg-color);
}

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

.product-card {
    background-color: var(--bg-color);
    border-radius: var(--border-radius);
    box-shadow: var(--box-shadow);
    overflow: hidden;
    transition: var(--transition);
}

.product-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.1);
}

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

.product-card h3 {
    padding: 20px 20px 10px;
    font-size: 1.2rem;
}

.price {
    color: var(--primary-color);
    font-weight: bold;
    font-size: 1.1rem;
    padding: 0 20px 10px;
}

.product-card p {
    padding: 0 20px 20px;
    color: var(--text-light);
}

.product-card .btn {
    margin: 0 20px 20px;
    display: block;
}

/* ======= Product Detail Page ======= */
.product-detail {
    padding: 60px 0;
    background-color: var(--bg-color);
}

.breadcrumb {
    margin-bottom: 30px;
    color: var(--text-light);
}

.breadcrumb a {
    color: var(--text-light);
}

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

.product-layout {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
    margin-bottom: 60px;
}

.product-image {
    border-radius: var(--border-radius);
    overflow: hidden;
}

.product-image img {
    width: 100%;
    height: auto;
}

.product-rating {
    display: flex;
    align-items: center;
    margin-bottom: 20px;
}

.stars {
    display: flex;
    color: var(--accent-color);
    margin-right: 10px;
}

.product-rating span {
    color: var(--text-light);
}

.product-info h1 {
    margin-bottom: 10px;
    font-size: 2rem;
}

.product-info .price {
    font-size: 1.5rem;
    margin-bottom: 20px;
    padding: 0;
}

.product-features {
    list-style-type: disc;
    margin: 20px 0 20px 20px;
}

.product-features li {
    margin-bottom: 5px;
}

.quantity-selector {
    margin-bottom: 20px;
}

.quantity-controls {
    display: flex;
    align-items: center;
}

.quantity-controls button {
    width: 40px;
    height: 40px;
    background-color: var(--bg-dark);
    border: none;
    font-size: 1.2rem;
    cursor: pointer;
}

.quantity-controls input {
    width: 50px;
    height: 40px;
    text-align: center;
    border: 1px solid var(--border-color);
    margin: 0 5px;
}

.product-actions {
    display: flex;
    gap: 15px;
    margin-bottom: 30px;
}

.product-actions button {
    flex: 1;
}

.product-meta {
    margin-top: 20px;
    padding-top: 20px;
    border-top: 1px solid var(--border-color);
}

.product-meta p {
    margin-bottom: 5px;
    color: var(--text-light);
}

/* ======= Product Tabs ======= */
.product-tabs {
    margin-bottom: 60px;
}

.tab-controls {
    display: flex;
    border-bottom: 1px solid var(--border-color);
    margin-bottom: 20px;
}

.tab-btn {
    padding: 10px 20px;
    background: none;
    border: none;
    cursor: pointer;
    font-weight: bold;
    transition: var(--transition);
    position: relative;
}

.tab-btn.active {
    color: var(--primary-color);
}

.tab-btn.active::after {
    content: '';
    position: absolute;
    bottom: -1px;
    left: 0;
    width: 100%;
    height: 3px;
    background-color: var(--primary-color);
}

.tab-pane {
    display: none;
}

.tab-pane.active {
    display: block;
}

.specs-table {
    width: 100%;
    border-collapse: collapse;
}

.specs-table tr:nth-child(odd) {
    background-color: var(--bg-light);
}

.specs-table td {
    padding: 12px 15px;
    border-bottom: 1px solid var(--border-color);
}

.specs-table td:first-child {
    font-weight: bold;
    width: 30%;
}

.related-products h2 {
    margin-bottom: 30px;
}

/* ======= Notification ======= */
.notification {
    position: fixed;
    top: 20px;
    right: 20px;
    background-color: var(--success-color);
    color: white;
    padding: 15px 25px;
    border-radius: var(--border-radius);
    box-shadow: var(--box-shadow);
    transform: translateY(-100px);
    opacity: 0;
    transition: transform 0.3s ease, opacity 0.3s ease;
    z-index: 1100;
}

.notification.show {
    transform: translateY(0);
    opacity: 1;
}

/* ======= Page Header ======= */
.page-header {
    background-color: var(--primary-color);
    color: white;
    padding: 60px 0;
    text-align: center;
    background-image: linear-gradient(rgba(139, 90, 43, 0.8), rgba(139, 90, 43, 0.8)), url('images/logo.jpg');
    background-size: cover;
    background-position: center;
}

.page-header h1 {
    color: white;
    margin-bottom: 10px;
}

/* ======= About Page ======= */
.about-story {
    padding: 80px 0;
    background-color: var(--bg-color);
}

.about-layout {
    display: grid;
    grid-template-columns: 2fr 1fr;
    gap: 40px;
}

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

.value-item {
    text-align: center;
    padding: 20px;
    background-color: var(--bg-light);
    border-radius: var(--border-radius);
    box-shadow: var(--box-shadow);
}

.value-icon {
    display: flex;
    justify-content: center;
    align-items: center;
    width: 50px;
    height: 50px;
    margin: 0 auto 15px;
    color: var(--primary-color);
}

.about-image {
    position: relative;
}

.about-image img {
    width: 100%;
    height: auto;
    border-radius: var(--border-radius);
    box-shadow: var(--box-shadow);
}

.about-stats {
    position: absolute;
    bottom: -20px;
    left: -20px;
    background-color: var(--primary-color);
    color: white;
    padding: 20px;
    border-radius: var(--border-radius);
    box-shadow: var(--box-shadow);
}

.craftsmanship {
    padding: 80px 0;
    background-color: var(--bg-light);
    text-align: center;
}

.craftsmanship-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
}

.craftsmanship-item {
    padding: 30px;
    background-color: var(--bg-color);
    border-radius: var(--border-radius);
    box-shadow: var(--box-shadow);
}

.team {
    padding: 80px 0;
    background-color: var(--bg-color);
    text-align: center;
}

.team-intro {
    max-width: 800px;
    margin: 0 auto 40px;
    font-size: 1.1rem;
}

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

.team-member {
    background-color: var(--bg-light);
    border-radius: var(--border-radius);
    box-shadow: var(--box-shadow);
    overflow: hidden;
    transition: var(--transition);
}

.team-member:hover {
    transform: translateY(-5px);
}

.team-member img {
    width: 100%;
    height: auto;
}

.team-member h3 {
    margin: 20px 20px 5px;
}

.team-member p {
    padding: 0 20px;
}

.team-member p:first-of-type {
    color: var(--primary-color);
    font-weight: bold;
    margin-bottom: 10px;
}

.social-links {
    display: flex;
    justify-content: center;
    gap: 15px;
    margin: 20px 0;
}

.social-links a {
    display: flex;
    justify-content: center;
    align-items: center;
    width: 40px;
    height: 40px;
    background-color: var(--bg-dark);
    color: var(--primary-color);
    border-radius: 50%;
    transition: var(--transition);
}

.social-links a:hover {
    background-color: var(--primary-color);
    color: white;
}

.sustainability {
    padding: 80px 0;
    background-color: var(--bg-light);
}

.sustainability-content {
    display: grid;
    grid-template-columns: 3fr 2fr;
    gap: 40px;
}

.sustainability-list {
    list-style-type: none;
    margin: 20px 0;
}

.sustainability-list li {
    margin-bottom: 15px;
    padding-left: 30px;
    position: relative;
}

.sustainability-list li::before {
    content: '✓';
    position: absolute;
    left: 0;
    color: var(--primary-color);
    font-weight: bold;
}

.certification-list {
    background-color: var(--bg-color);
    border-radius: var(--border-radius);
    box-shadow: var(--box-shadow);
    padding: 20px;
}

.certification-item {
    display: flex;
    margin-bottom: 20px;
}

.certification-icon {
    flex: 0 0 40px;
    color: var(--primary-color);
}

.certification-info {
    flex: 1;
}

.certification-info h4 {
    margin-bottom: 5px;
}

.cta {
    padding: 60px 0;
    background-color: var(--primary-color);
    color: white;
    text-align: center;
}

.cta h2 {
    color: white;
}

/* ======= Contact Page ======= */
.contact-section {
    padding: 80px 0;
    background-color: var(--bg-color);
}

.contact-layout {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
}

.info-items {
    margin: 40px 0;
}

.info-item {
    display: flex;
    margin-bottom: 30px;
}

.info-icon {
    flex: 0 0 40px;
    color: var(--primary-color);
}

.info-content {
    flex: 1;
}

.info-content h3 {
    margin-bottom: 5px;
}

.social-connect h3 {
    margin-bottom: 15px;
}

.contact-form-container {
    background-color: var(--bg-light);
    border-radius: var(--border-radius);
    box-shadow: var(--box-shadow);
    padding: 30px;
}

.contact-form {
    margin-top: 20px;
}

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

.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
}

label {
    display: block;
    margin-bottom: 5px;
    font-weight: 500;
}

input, textarea, select {
    width: 100%;
    padding: 10px;
    border: 1px solid var(--border-color);
    border-radius: var(--border-radius);
    font-family: var(--font-primary);
}

.checkbox-group {
    display: flex;
    align-items: center;
}

.checkbox-group input {
    width: auto;
    margin-right: 10px;
}

.checkbox-group label {
    margin: 0;
}

.form-success {
    text-align: center;
    padding: 30px;
}

.success-icon {
    display: flex;
    justify-content: center;
    align-items: center;
    width: 80px;
    height: 80px;
    margin: 0 auto 20px;
    background-color: var(--success-color);
    color: white;
    border-radius: 50%;
}

.faq-section {
    padding: 80px 0;
    background-color: var(--bg-light);
}

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

.faq-item {
    background-color: var(--bg-color);
    border-radius: var(--border-radius);
    box-shadow: var(--box-shadow);
    padding: 20px;
}

.faq-item h3 {
    margin-bottom: 10px;
    color: var(--primary-color);
}

/* ======= Cart Page ======= */
.cart-section {
    padding: 80px 0;
    background-color: var(--bg-color);
}

.cart-empty, .checkout-empty {
    text-align: center;
    padding: 60px 20px;
    background-color: var(--bg-light);
    border-radius: var(--border-radius);
    box-shadow: var(--box-shadow);
}

.empty-cart-icon {
    display: flex;
    justify-content: center;
    align-items: center;
    width: 100px;
    height: 100px;
    margin: 0 auto 30px;
    color: var(--primary-light);
    border: 2px solid var(--primary-light);
    border-radius: 50%;
}

.cart-layout {
    display: grid;
    grid-template-columns: 2fr 1fr;
    gap: 30px;
}

.cart-items, .cart-summary {
    background-color: var(--bg-light);
    border-radius: var(--border-radius);
    box-shadow: var(--box-shadow);
    padding: 30px;
}

.cart-header {
    display: grid;
    grid-template-columns: 3fr 1fr 1fr 1fr 50px;
    gap: 20px;
    padding-bottom: 15px;
    border-bottom: 1px solid var(--border-color);
    font-weight: bold;
    margin-bottom: 20px;
}

.cart-item {
    display: grid;
    grid-template-columns: 3fr 1fr 1fr 1fr 50px;
    gap: 20px;
    align-items: center;
    padding: 15px 0;
    border-bottom: 1px solid var(--border-color);
}

.cart-product {
    display: flex;
    align-items: center;
}

.cart-product img {
    width: 80px;
    height: 80px;
    object-fit: cover;
    border-radius: var(--border-radius);
    margin-right: 15px;
}

.cart-quantity {
    display: flex;
    align-items: center;
}

.cart-quantity button {
    width: 30px;
    height: 30px;
    background-color: var(--bg-dark);
    border: none;
    cursor: pointer;
}

.cart-quantity input {
    width: 40px;
    height: 30px;
    text-align: center;
    border: 1px solid var(--border-color);
    margin: 0 5px;
}

.cart-remove {
    cursor: pointer;
    color: var(--text-light);
    transition: var(--transition);
}

.cart-remove:hover {
    color: var(--error-color);
}

.cart-actions {
    display: flex;
    justify-content: space-between;
    margin-top: 30px;
}

.summary-row {
    display: flex;
    justify-content: space-between;
    margin-bottom: 15px;
}

.summary-divider {
    height: 1px;
    background-color: var(--border-color);
    margin: 15px 0;
}

.total {
    font-weight: bold;
    font-size: 1.2rem;
}

.checkout-btn {
    display: block;
    text-align: center;
    margin: 20px 0;
}

.payment-icons {
    text-align: center;
    margin-top: 20px;
}

.payment-methods {
    display: flex;
    justify-content: center;
    gap: 10px;
    margin-top: 10px;
}

.payment-icon {
    opacity: 0.6;
}

/* ======= Checkout Page ======= */
.checkout-section {
    padding: 80px 0;
    background-color: var(--bg-color);
}

.checkout-progress {
    display: flex;
    justify-content: space-between;
    max-width: 600px;
    margin: 0 auto 60px;
}

.progress-step {
    display: flex;
    flex-direction: column;
    align-items: center;
    position: relative;
    flex: 1;
}

.step-number {
    width: 40px;
    height: 40px;
    background-color: var(--bg-dark);
    color: var(--text-light);
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    margin-bottom: 10px;
}

.progress-step.active .step-number,
.progress-step.completed .step-number {
    background-color: var(--success-color);
    color: white;
}

.progress-connector {
    position: absolute;
    top: 20px;
    left: 50%;
    height: 2px;
    background-color: var(--bg-dark);
    width: 100%;
    z-index: -1;
}

.progress-connector.active,
.progress-connector.completed {
    background-color: var(--success-color);
}

.checkout-layout {
    display: grid;
    grid-template-columns: 3fr 2fr;
    gap: 30px;
}

.checkout-details, .checkout-summary {
    background-color: var(--bg-light);
    border-radius: var(--border-radius);
    box-shadow: var(--box-shadow);
    padding: 30px;
}

.checkout-item {
    display: flex;
    margin-bottom: 20px;
}

.checkout-item img {
    width: 80px;
    height: 80px;
    object-fit: cover;
    border-radius: var(--border-radius);
    margin-right: 15px;
}

.checkout-item-details {
    flex: 1;
}

.checkout-item-price {
    display: flex;
    justify-content: space-between;
    font-weight: bold;
}

.security-note {
    display: flex;
    align-items: flex-start;
    background-color: var(--bg-dark);
    border-radius: var(--border-radius);
    padding: 15px;
    margin-top: 20px;
}

.security-icon {
    flex: 0 0 30px;
    margin-right: 10px;
    color: var(--success-color);
}

.security-note p {
    margin: 0;
    font-size: 0.9rem;
    color: var(--text-light);
}

/* ======= Success Page ======= */
.success-section {
    padding: 80px 0;
    background-color: var(--bg-color);
}

.success-message {
    text-align: center;
    background-color: var(--bg-light);
    border-radius: var(--border-radius);
    box-shadow: var(--box-shadow);
    padding: 60px 30px;
    margin-bottom: 60px;
}

.success-message h1 {
    margin-bottom: 20px;
}

.success-text {
    font-size: 1.2rem;
    margin-bottom: 30px;
}

.success-details {
    max-width: 700px;
    margin: 0 auto 40px;
}

.success-actions {
    margin-top: 30px;
}

.after-purchase {
    padding-top: 40px;
}

.care-tips {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    margin: 40px 0;
}

.care-tip {
    background-color: var(--bg-light);
    border-radius: var(--border-radius);
    box-shadow: var(--box-shadow);
    padding: 20px;
    text-align: center;
}

.tip-icon {
    display: flex;
    justify-content: center;
    align-items: center;
    width: 60px;
    height: 60px;
    margin: 0 auto 20px;
    color: var(--primary-color);
    border: 2px solid var(--primary-color);
    border-radius: 50%;
}

/* ======= Footer ======= */
footer {
    background-color: var(--primary-dark);
    color: white;
    padding: 60px 0 30px;
}

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

.footer-column h3 {
    color: white;
    margin-bottom: 20px;
    padding-bottom: 10px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.footer-column p {
    margin-bottom: 15px;
}

.footer-column ul li {
    margin-bottom: 10px;
}

.footer-column a {
    color: rgba(255, 255, 255, 0.8);
}

.footer-column a:hover {
    color: white;
    text-decoration: underline;
}

address {
    font-style: normal;
    line-height: 1.8;
}

.reg-number {
    font-size: 0.9rem;
    opacity: 0.7;
}

.social-icons {
    display: flex;
    gap: 15px;
}

.social-icons a {
    display: flex;
    justify-content: center;
    align-items: center;
    width: 40px;
    height: 40px;
    background-color: rgba(255, 255, 255, 0.1);
    border-radius: 50%;
    transition: var(--transition);
}

.social-icons a:hover {
    background-color: rgba(255, 255, 255, 0.2);
}

.copyright {
    text-align: center;
    padding-top: 30px;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    font-size: 0.9rem;
    opacity: 0.7;
}

/* ======= Cookie Banner ======= */
.cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    width: 100%;
    background-color: var(--bg-color);
    box-shadow: 0 -5px 10px rgba(0, 0, 0, 0.1);
    padding: 20px;
    z-index: 1000;
    transform: translateY(100%);
    transition: transform 0.3s ease;
}

.cookie-banner.show {
    transform: translateY(0);
}

.cookie-content {
    max-width: 1200px;
    margin: 0 auto;
}

.cookie-buttons {
    display: flex;
    gap: 15px;
    margin: 20px 0 10px;
}

.cookie-more {
    font-size: 0.9rem;
    color: var(--text-light);
}

/* ======= Responsive Design ======= */
@media (max-width: 992px) {
    .about-layout, .sustainability-content, .checkout-layout {
        grid-template-columns: 1fr;
    }
    
    .cart-layout {
        grid-template-columns: 1fr;
    }
    
    .product-layout {
        grid-template-columns: 1fr;
    }
    
    .contact-layout {
        grid-template-columns: 1fr;
    }
    
    .about-stats {
        position: static;
        margin-top: 20px;
    }
}

@media (max-width: 768px) {
    .cart-header {
        display: none;
    }
    
    .cart-item {
        grid-template-columns: 1fr;
        gap: 10px;
        padding: 20px 0;
    }
    
    .cart-product, .cart-price, .cart-quantity, .cart-total {
        margin-bottom: 10px;
    }
    
    .cart-remove {
        text-align: right;
    }
    
    header .container {
        flex-direction: column;
    }
    
    nav {
        margin-top: 20px;
    }
    
    nav ul {
        justify-content: center;
    }
    
    nav li:first-child {
        margin-left: 0;
    }
}

@media (max-width: 576px) {
    .form-row {
        grid-template-columns: 1fr;
    }
    
    .product-actions {
        flex-direction: column;
    }
    
    .progress-step .step-name {
        font-size: 0.8rem;
    }
}
