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

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

:root {
    --primary-color: #1a1a1a;
    --secondary-color: #D4AF37;
    --accent-color: #8B7355;
    --accent-light: #C9B99B;
    --text-dark: #2C2C2C;
    --text-light: #6B6B6B;
    --bg-light: #FAF8F5;
    --bg-cream: #F5F1EB;
    --white: #FFFFFF;
    --transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

body {
    font-family: 'Montserrat', sans-serif;
    line-height: 1.7;
    color: var(--text-dark);
    background-color: var(--white);
    overflow-x: hidden;
}

h1, h2, h3, h4, h5, h6 {
    font-family: 'Playfair Display', serif;
    font-weight: 600;
    letter-spacing: -0.5px;
}

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

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

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

.main-header {
    background-color: rgba(255, 255, 255, 0.98);
    backdrop-filter: blur(10px);
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
    position: sticky;
    top: 0;
    z-index: 1000;
    transition: var(--transition);
}

.main-header:hover {
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.12);
}

.header-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1.2rem 0;
}

.logo h1 {
    color: var(--primary-color);
    font-size: 2rem;
    margin-bottom: 0.1rem;
    font-weight: 700;
    letter-spacing: 1px;
    position: relative;
    display: inline-block;
}

.logo h1::after {
    content: '';
    position: absolute;
    bottom: -3px;
    left: 0;
    width: 0;
    height: 2px;
    background: linear-gradient(90deg, var(--secondary-color), var(--accent-light));
    transition: width 0.4s ease;
}

.logo:hover h1::after {
    width: 100%;
}

.logo .tagline {
    color: var(--accent-color);
    font-size: 0.75rem;
    font-weight: 400;
    letter-spacing: 2px;
    text-transform: uppercase;
}

.main-nav ul {
    display: flex;
    list-style: none;
    gap: 2.5rem;
}

.main-nav a {
    color: var(--text-dark);
    font-weight: 500;
    font-size: 0.95rem;
    padding: 0.5rem 0;
    position: relative;
    letter-spacing: 0.5px;
}

.main-nav a::before {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 0;
    height: 2px;
    background: var(--secondary-color);
    transition: width 0.3s ease;
}

.main-nav a:hover::before,
.main-nav a.active::before {
    width: 100%;
}

.main-nav a:hover,
.main-nav a.active {
    color: var(--secondary-color);
}

.mobile-menu-toggle {
    display: none;
    flex-direction: column;
    gap: 5px;
    cursor: pointer;
}

.mobile-menu-toggle span {
    width: 28px;
    height: 2px;
    background-color: var(--primary-color);
    transition: var(--transition);
}

.hero {
    position: relative;
    height: 85vh;
    min-height: 600px;
    overflow: hidden;
}

.hero-image {
    position: absolute;
    width: 100%;
    height: 100%;
}

.hero-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    animation: zoomIn 20s ease-in-out infinite alternate;
}

@keyframes zoomIn {
    0% { transform: scale(1); }
    100% { transform: scale(1.1); }
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, 
        rgba(26, 26, 26, 0.75) 0%, 
        rgba(26, 26, 26, 0.5) 50%,
        rgba(212, 175, 55, 0.15) 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
}

.hero-overlay h1 {
    color: var(--white);
    font-size: 4rem;
    margin-bottom: 1.5rem;
    font-weight: 700;
    line-height: 1.2;
    animation: fadeInUp 1s ease;
    text-shadow: 2px 2px 20px rgba(0, 0, 0, 0.3);
}

.hero-overlay p {
    color: var(--white);
    font-size: 1.4rem;
    margin-bottom: 2.5rem;
    font-weight: 300;
    letter-spacing: 1px;
    animation: fadeInUp 1.2s ease;
}

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.btn {
    display: inline-block;
    padding: 16px 40px;
    border: none;
    border-radius: 0;
    font-size: 0.95rem;
    font-weight: 500;
    cursor: pointer;
    transition: var(--transition);
    text-align: center;
    letter-spacing: 1.5px;
    text-transform: uppercase;
    position: relative;
    overflow: hidden;
}

.btn::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 0;
    height: 0;
    background: rgba(255, 255, 255, 0.2);
    border-radius: 50%;
    transform: translate(-50%, -50%);
    transition: width 0.6s, height 0.6s;
}

.btn:hover::before {
    width: 300px;
    height: 300px;
}

.btn-primary {
    background-color: var(--secondary-color);
    color: var(--primary-color);
    box-shadow: 0 8px 25px rgba(212, 175, 55, 0.3);
}

.btn-primary:hover {
    background-color: #E5C158;
    transform: translateY(-3px);
    box-shadow: 0 15px 40px rgba(212, 175, 55, 0.4);
}

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

.btn-secondary:hover {
    background-color: var(--primary-color);
    color: var(--white);
    transform: translateY(-2px);
    box-shadow: 0 10px 30px rgba(26, 26, 26, 0.3);
}

section {
    padding: 6rem 0;
    position: relative;
}

section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 1px;
    background: linear-gradient(90deg, 
        transparent, 
        var(--accent-light), 
        transparent);
}

.intro {
    background: linear-gradient(135deg, var(--bg-cream) 0%, var(--bg-light) 100%);
    text-align: center;
    position: relative;
}

.intro::after {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 300px;
    height: 300px;
    background: radial-gradient(circle, rgba(212, 175, 55, 0.1) 0%, transparent 70%);
    z-index: 0;
}

.intro h2 {
    color: var(--primary-color);
    font-size: 3rem;
    margin-bottom: 1.5rem;
    position: relative;
    z-index: 1;
}

.intro h2::after {
    content: '';
    display: block;
    width: 80px;
    height: 3px;
    background: var(--secondary-color);
    margin: 1.5rem auto 0;
}

.intro p {
    color: var(--text-light);
    font-size: 1.15rem;
    max-width: 900px;
    margin: 0 auto;
    line-height: 1.9;
    position: relative;
    z-index: 1;
}

.featured-categories h2,
.why-choose h2 {
    text-align: center;
    color: var(--primary-color);
    font-size: 3rem;
    margin-bottom: 1rem;
    position: relative;
    display: inline-block;
    left: 50%;
    transform: translateX(-50%);
}

.featured-categories h2::after,
.why-choose h2::after {
    content: '';
    position: absolute;
    bottom: -15px;
    left: 50%;
    transform: translateX(-50%);
    width: 60px;
    height: 3px;
    background: linear-gradient(90deg, var(--secondary-color), var(--accent-light));
}

.featured-categories {
    padding-top: 5rem;
}

.categories-grid,
.products-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2.5rem;
    margin-top: 4rem;
}

.category-card,
.product-card {
    background-color: var(--white);
    border-radius: 0;
    overflow: hidden;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.08);
    transition: var(--transition);
    position: relative;
}

.category-card::before,
.product-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, transparent 0%, rgba(212, 175, 55, 0.1) 100%);
    opacity: 0;
    transition: var(--transition);
    z-index: 1;
}

.category-card:hover::before,
.product-card:hover::before {
    opacity: 1;
}

.category-card:hover,
.product-card:hover {
    transform: translateY(-15px);
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.15);
}

.category-card img,
.product-card img {
    width: 100%;
    height: 280px;
    object-fit: cover;
    transition: transform 0.6s ease;
}

.category-card:hover img,
.product-card:hover img {
    transform: scale(1.1);
}

.category-card h3,
.product-card h3 {
    color: var(--primary-color);
    font-size: 1.6rem;
    margin: 2rem 2rem 1rem;
    position: relative;
    z-index: 2;
}

.category-card p,
.product-card p {
    color: var(--text-light);
    margin: 0 2rem 2rem;
    line-height: 1.7;
    position: relative;
    z-index: 2;
}

.category-card .btn,
.product-card .btn {
    margin: 0 2rem 2rem;
    position: relative;
    z-index: 2;
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 3rem;
    margin-top: 4rem;
}

.feature {
    text-align: center;
    padding: 3rem 2rem;
    background: linear-gradient(135deg, var(--bg-cream) 0%, var(--white) 100%);
    border-radius: 0;
    position: relative;
    overflow: hidden;
    transition: var(--transition);
}

.feature::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 3px;
    background: linear-gradient(90deg, var(--secondary-color), var(--accent-light));
    transform: scaleX(0);
    transition: transform 0.4s ease;
}

.feature:hover::before {
    transform: scaleX(1);
}

.feature:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 50px rgba(0, 0, 0, 0.1);
}

.feature h3 {
    color: var(--primary-color);
    margin-bottom: 1.2rem;
    font-size: 1.4rem;
}

.feature p {
    color: var(--text-light);
}

.cta {
    background: linear-gradient(135deg, 
        var(--primary-color) 0%, 
        #2C2C2C 50%,
        var(--accent-color) 100%);
    text-align: center;
    color: var(--white);
    position: relative;
    overflow: hidden;
}

.cta::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle, rgba(212, 175, 55, 0.1) 0%, transparent 60%);
    animation: rotate 30s linear infinite;
}

@keyframes rotate {
    from { transform: rotate(0deg); }
    to { transform: rotate(360deg); }
}

.cta h2 {
    font-size: 3rem;
    margin-bottom: 1.5rem;
    position: relative;
    z-index: 1;
}

.cta p {
    font-size: 1.3rem;
    margin-bottom: 2.5rem;
    position: relative;
    z-index: 1;
    font-weight: 300;
}

.cta .btn-primary {
    position: relative;
    z-index: 1;
}

.page-header {
    background: linear-gradient(135deg, 
        var(--primary-color) 0%, 
        var(--accent-color) 100%);
    color: var(--white);
    text-align: center;
    padding: 5rem 0;
    position: relative;
    overflow: hidden;
}

.page-header::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-image: 
        linear-gradient(30deg, transparent 12%, rgba(212, 175, 55, 0.05) 12.5%, rgba(212, 175, 55, 0.05) 13%, transparent 13.5%),
        linear-gradient(150deg, transparent 12%, rgba(212, 175, 55, 0.05) 12.5%, rgba(212, 175, 55, 0.05) 13%, transparent 13.5%);
    background-size: 60px 60px;
}

.page-header h1 {
    font-size: 3.5rem;
    margin-bottom: 1rem;
    position: relative;
    z-index: 1;
}

.page-header p {
    font-size: 1.3rem;
    position: relative;
    z-index: 1;
    font-weight: 300;
}

.about-grid,
.contact-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 4rem;
    align-items: center;
}

.about-text h2,
.contact-info h2 {
    color: var(--primary-color);
    font-size: 2.5rem;
    margin-bottom: 2rem;
    position: relative;
    display: inline-block;
}

.about-text h2::after,
.contact-info h2::after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 0;
    width: 60px;
    height: 3px;
    background: var(--secondary-color);
}

.about-text p {
    color: var(--text-light);
    margin-bottom: 1.5rem;
    line-height: 1.9;
    font-size: 1.05rem;
}

.about-image img {
    border-radius: 0;
    box-shadow: 20px 20px 0 var(--secondary-color);
    transition: var(--transition);
}

.about-image:hover img {
    transform: translate(10px, 10px);
    box-shadow: 10px 10px 0 var(--secondary-color);
}

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

.value-item {
    padding: 3rem 2rem;
    background: linear-gradient(135deg, var(--bg-cream) 0%, var(--white) 100%);
    text-align: center;
    position: relative;
    transition: var(--transition);
}

.value-item::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, var(--secondary-color), var(--accent-light));
    transform: scaleX(0);
    transition: transform 0.4s ease;
}

.value-item:hover::before {
    transform: scaleX(1);
}

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

.value-item h3 {
    color: var(--primary-color);
    margin-bottom: 1.2rem;
    font-size: 1.5rem;
}

.value-item p {
    color: var(--text-light);
    line-height: 1.8;
}

.team,
.location,
.products-intro,
.services-intro,
.custom-orders,
.service-cta,
.order-info {
    text-align: center;
}

.team h2,
.location h2 {
    color: var(--primary-color);
    font-size: 2.5rem;
    margin-bottom: 2rem;
}

.team p,
.location p {
    color: var(--text-light);
    max-width: 900px;
    margin: 0 auto;
    line-height: 1.9;
    font-size: 1.05rem;
}

.location-info {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 4rem;
    margin-top: 3rem;
    text-align: left;
}

.location-details h3 {
    color: var(--primary-color);
    margin-bottom: 1.5rem;
    font-size: 1.6rem;
}

.location-details p {
    color: var(--text-light);
    margin-bottom: 1.2rem;
    line-height: 1.8;
}

.location-image img {
    border-radius: 0;
    box-shadow: -20px 20px 0 var(--accent-light);
    transition: var(--transition);
}

.location-image:hover img {
    transform: translate(-10px, 10px);
    box-shadow: -10px 10px 0 var(--accent-light);
}

.product-category {
    background-color: var(--bg-light);
}

.product-category:nth-child(even) {
    background-color: var(--white);
}

.product-category h2 {
    color: var(--primary-color);
    font-size: 2.5rem;
    margin-bottom: 3rem;
    text-align: center;
    position: relative;
    display: inline-block;
    left: 50%;
    transform: translateX(-50%);
}

.product-category h2::after {
    content: '';
    position: absolute;
    bottom: -15px;
    left: 50%;
    transform: translateX(-50%);
    width: 80px;
    height: 3px;
    background: linear-gradient(90deg, var(--secondary-color), var(--accent-light));
}

.service-item {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 4rem;
    margin-bottom: 5rem;
    align-items: center;
}

.service-item.reverse {
    direction: rtl;
}

.service-item.reverse > * {
    direction: ltr;
}

.service-content h2 {
    color: var(--primary-color);
    font-size: 2.3rem;
    margin-bottom: 1.5rem;
}

.service-content p {
    color: var(--text-light);
    margin-bottom: 2rem;
    line-height: 1.9;
    font-size: 1.05rem;
}

.service-content ul {
    list-style: none;
    margin-left: 0;
}

.service-content ul li {
    color: var(--text-light);
    padding: 0.8rem 0;
    padding-left: 2rem;
    position: relative;
    transition: var(--transition);
}

.service-content ul li::before {
    content: '✦';
    position: absolute;
    left: 0;
    color: var(--secondary-color);
    font-weight: bold;
    font-size: 1.2rem;
}

.service-content ul li:hover {
    color: var(--primary-color);
    padding-left: 2.5rem;
}

.service-image img {
    border-radius: 0;
    box-shadow: 15px 15px 0 var(--accent-light);
    transition: var(--transition);
}

.service-image:hover img {
    transform: translate(8px, 8px);
    box-shadow: 7px 7px 0 var(--accent-light);
}

.contact-details {
    margin-top: 2.5rem;
}

.contact-item {
    margin-bottom: 2.5rem;
}

.contact-item h3 {
    color: var(--primary-color);
    margin-bottom: 0.8rem;
    font-size: 1.3rem;
}

.contact-item p {
    color: var(--text-light);
    line-height: 1.8;
}

.contact-form {
    background: linear-gradient(135deg, var(--bg-cream) 0%, var(--bg-light) 100%);
    padding: 3rem;
    border-radius: 0;
    box-shadow: 0 15px 50px rgba(0, 0, 0, 0.08);
}

.form-group {
    margin-bottom: 2rem;
}

.form-group label {
    display: block;
    color: var(--primary-color);
    font-weight: 500;
    margin-bottom: 0.8rem;
    letter-spacing: 0.5px;
}

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 14px 18px;
    border: 2px solid var(--accent-light);
    border-radius: 0;
    font-family: inherit;
    font-size: 1rem;
    transition: var(--transition);
    background-color: var(--white);
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--secondary-color);
    box-shadow: 0 0 0 4px rgba(212, 175, 55, 0.1);
}

.alert {
    padding: 1.2rem;
    border-radius: 0;
    margin-bottom: 2rem;
    border-left: 4px solid;
}

.alert-success {
    background-color: #E8F5E9;
    color: #2E7D32;
    border-color: #4CAF50;
}

.alert-error {
    background-color: #FFEBEE;
    color: #C62828;
    border-color: #F44336;
}

.order-steps {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: 3rem;
    margin-top: 3rem;
}

.order-step {
    text-align: center;
    padding: 2rem;
    position: relative;
}

.order-step::before {
    content: '';
    position: absolute;
    top: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 50px;
    height: 3px;
    background: var(--secondary-color);
}

.order-step h3 {
    color: var(--primary-color);
    font-size: 1.8rem;
    margin-bottom: 1.2rem;
    margin-top: 1rem;
}

.order-step p {
    color: var(--text-light);
    line-height: 1.8;
}

.legal-content {
    max-width: 900px;
    margin: 0 auto;
}

.legal-content h2 {
    color: var(--primary-color);
    font-size: 2.2rem;
    margin-top: 3rem;
    margin-bottom: 1.5rem;
}

.legal-content h3 {
    color: var(--primary-color);
    font-size: 1.5rem;
    margin-top: 2rem;
    margin-bottom: 1rem;
}

.legal-content p {
    color: var(--text-light);
    margin-bottom: 1.2rem;
    line-height: 1.9;
    font-size: 1.05rem;
}

.legal-content ul {
    margin-left: 2.5rem;
    margin-bottom: 1.5rem;
}

.legal-content ul li {
    color: var(--text-light);
    margin-bottom: 0.8rem;
    line-height: 1.9;
}

.main-footer {
    background: linear-gradient(135deg, var(--primary-color) 0%, #2C2C2C 100%);
    color: var(--white);
    padding: 4rem 0 1.5rem;
    position: relative;
}

.main-footer::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: linear-gradient(90deg, 
        var(--secondary-color), 
        var(--accent-light),
        var(--secondary-color));
}

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

.footer-section h3 {
    color: var(--secondary-color);
    margin-bottom: 1.5rem;
    font-size: 1.4rem;
}

.footer-section p {
    margin-bottom: 0.8rem;
    line-height: 1.9;
    color: rgba(255, 255, 255, 0.8);
}

.footer-section ul {
    list-style: none;
}

.footer-section ul li {
    margin-bottom: 0.8rem;
}

.footer-section a {
    color: rgba(255, 255, 255, 0.8);
    transition: var(--transition);
}

.footer-section a:hover {
    color: var(--secondary-color);
    padding-left: 5px;
}

.footer-bottom {
    text-align: center;
    padding-top: 2rem;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    color: rgba(255, 255, 255, 0.6);
}

.cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background: linear-gradient(135deg, var(--primary-color) 0%, #2C2C2C 100%);
    color: var(--white);
    padding: 2rem;
    box-shadow: 0 -10px 40px rgba(0, 0, 0, 0.3);
    z-index: 9999;
    display: none;
    border-top: 2px solid var(--secondary-color);
}

.cookie-banner.show {
    display: block;
    animation: slideUp 0.5s ease;
}

@keyframes slideUp {
    from {
        transform: translateY(100%);
    }
    to {
        transform: translateY(0);
    }
}

.cookie-content {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 2rem;
}

.cookie-content p {
    flex: 1;
    margin: 0;
    line-height: 1.8;
}

.cookie-content a {
    color: var(--secondary-color);
    text-decoration: underline;
    transition: var(--transition);
}

.cookie-content a:hover {
    color: var(--accent-light);
}

.cookie-buttons {
    display: flex;
    gap: 1rem;
}

.btn-accept,
.btn-decline {
    padding: 12px 30px;
    border: none;
    border-radius: 0;
    font-weight: 500;
    cursor: pointer;
    transition: var(--transition);
    letter-spacing: 1px;
    text-transform: uppercase;
}

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

.btn-accept:hover {
    background-color: #E5C158;
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(212, 175, 55, 0.4);
}

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

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

@media (max-width: 768px) {
    .main-nav {
        display: none;
    }

    .mobile-menu-toggle {
        display: flex;
    }

    .hero {
        height: 70vh;
        min-height: 500px;
    }

    .hero-image img {
        height: 70vh;
    }

    .hero-overlay h1 {
        font-size: 2.5rem;
    }

    .hero-overlay p {
        font-size: 1.1rem;
    }

    .page-header h1 {
        font-size: 2.5rem;
    }

    .intro h2,
    .featured-categories h2,
    .why-choose h2 {
        font-size: 2rem;
    }

    .categories-grid,
    .products-grid {
        grid-template-columns: 1fr;
    }

    .service-item.reverse {
        direction: ltr;
    }

    .cookie-content {
        flex-direction: column;
        text-align: center;
    }

    .cookie-buttons {
        justify-content: center;
        width: 100%;
    }

    .btn-accept,
    .btn-decline {
        flex: 1;
    }

    .about-image img,
    .location-image img,
    .service-image img {
        box-shadow: 10px 10px 0 var(--secondary-color);
    }

    .about-image:hover img,
    .location-image:hover img {
        transform: translate(5px, 5px);
        box-shadow: 5px 5px 0 var(--secondary-color);
    }

    .location-image img {
        box-shadow: -10px 10px 0 var(--accent-light);
    }

    .location-image:hover img {
        transform: translate(-5px, 5px);
        box-shadow: -5px 5px 0 var(--accent-light);
    }
}
