/* Custom CSS for Agora Arad */

:root {
    --primary-color: #822d2d;
    --secondary-color: #f2bb47;
    --white: #ffffff;
    --light-gray: #f8f9fa;
    --dark-gray: #6c757d;
    --text-dark: #212529;
}

/* Typography */
body {
    font-family: 'Poppins', sans-serif;
    color: var(--text-dark);
    line-height: 1.6;
}

h1, h2, h3, h4, h5, h6 {
    font-family: 'Roboto Condensed', sans-serif;
    font-weight: 700;
    color: var(--text-dark);
}

/* Navigation */
.navbar {
    padding: 1rem 0;
    transition: all 0.3s ease;
    top: 36px;
    z-index: 1002;
    margin-top: 0;
}

.navbar-transparent {
    background: transparent !important;
    box-shadow: none !important;
}

.mobile-nav-overlay {
    position: fixed;
    inset: 0;
    background: rgba(130, 45, 45, 0.85);
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.3s ease, visibility 0.3s ease;
    z-index: 1001;
}

.mobile-nav-overlay.active {
    opacity: 1;
    visibility: visible;
}

.navbar {
    background: transparent !important;
}

.navbar-brand img {
    transition: all 0.3s ease;
}

.navbar-nav .nav-link {
    font-weight: 500;
    margin: 0 0.5rem;
    transition: all 0.3s ease;
    position: relative;
}

.nav-link-white {
    color: white !important;
}

.nav-link-white:hover {
    color: var(--secondary-color) !important;
}

.nav-link-dark {
    color: var(--text-dark) !important;
}

.nav-link-dark:hover {
    color: var(--primary-color) !important;
}

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

.navbar-nav .nav-link:hover::after {
    width: 100%;
}

.navbar-toggler {
    border-color: white;
}

.navbar-toggler-icon {
    background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 30 30'%3e%3cpath stroke='rgba%28255, 255, 255, 1%29' stroke-linecap='round' stroke-miterlimit='10' stroke-width='2' d='M4 7h22M4 15h22M4 23h22'/%3e%3c/svg%3e");
}

/* Subheader */
.subheader {
    background-color: rgba(242, 187, 71, 0.9);
    padding: 0.4rem 0;
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1003;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
    backdrop-filter: blur(5px);
}

.subheader-item {
    display: flex;
    align-items: center;
    color: var(--text-dark);
    font-weight: 500;
    font-size: 0.9rem;
}

.subheader-item i {
    color: var(--primary-color);
    font-size: 1rem;
}

.subheader-left {
    display: flex;
    align-items: center;
    gap: 20px;
}

.subheader-right {
    display: flex;
    align-items: center;
    gap: 20px;
    justify-content: flex-end;
}

.subheader-phone {
    display: flex;
    align-items: center;
    color: var(--text-dark);
    font-weight: 500;
    font-size: 0.9rem;
}

.subheader-phone i {
    color: var(--primary-color);
    font-size: 1rem;
}

.subheader-social {
    display: flex;
    align-items: center;
    gap: 10px;
}

.social-link {
    color: white;
    font-size: 1rem;
    text-decoration: none;
    transition: all 0.3s ease;
    padding: 6px;
    border-radius: 50%;
    background: var(--primary-color);
    width: 30px;
    height: 30px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.social-link:hover {
    color: white;
    background: black;
    transform: translateY(-2px);
}

/* Hero Slider */
.hero-slider {
    height: 100vh;
    position: relative;
    top: 0;
    left: 0;
    right: 0;
    overflow: hidden;
    z-index: 1;
}

.hero-slide {
    height: 100vh;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
}

.hero-slide::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.4);
    z-index: 1;
}

.hero-content {
    position: relative;
    z-index: 2;
    text-align: left;
    color: white;
    max-width: 600px;
    padding: 110px 0 0 0;
    animation: contentSlideUp 1s ease-out 0.3s both;
}

@keyframes contentSlideUp {
    0% {
        opacity: 0;
        transform: translateY(100px);
    }
    100% {
        opacity: 1;
        transform: translateY(0);
    }
}

.hero-title {
    font-size: 3rem;
    font-weight: 700;
    margin-bottom: 1rem;
    color: var(--text-dark);
    background-color: var(--secondary-color);
    padding: 1rem 2rem;
    border-radius: 10px;
    display: inline-block;
    animation: titleSlideIn 1s ease-out;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
    line-height: 1.2;
    max-width: fit-content;
}

@keyframes titleSlideIn {
    0% {
        opacity: 0;
        transform: translateY(50px) rotateX(90deg);
    }
    100% {
        opacity: 1;
        transform: translateY(0) rotateX(0deg);
    }
}

.hero-divider {
    width: 100px;
    height: 3px;
    background: var(--secondary-color);
    margin: 1.5rem 0;
    position: relative;
    animation: dividerGlow 2s ease-in-out infinite alternate;
}

.hero-divider::before {
    content: '';
    position: absolute;
    top: -2px;
    left: 50%;
    transform: translateX(-50%);
    width: 8px;
    height: 8px;
    background: var(--secondary-color);
    border-radius: 50%;
    box-shadow: 0 0 20px var(--secondary-color);
    animation: pulse 2s ease-in-out infinite;
}

@keyframes dividerGlow {
    0% {
        box-shadow: 0 0 5px var(--secondary-color);
    }
    100% {
        box-shadow: 0 0 20px var(--secondary-color), 0 0 30px var(--secondary-color);
    }
}

@keyframes pulse {
    0%, 100% {
        transform: translateX(-50%) scale(1);
        opacity: 1;
    }
    50% {
        transform: translateX(-50%) scale(1.2);
        opacity: 0.8;
    }
}

.hero-description {
    font-size: 1.3rem;
    margin-bottom: 2rem;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.7);
    position: relative;
    animation: descriptionFadeIn 1.5s ease-out 0.5s both;
}

@keyframes descriptionFadeIn {
    0% {
        opacity: 0;
        transform: translateY(30px);
    }
    100% {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Swiper Navigation */
.swiper-button-next,
.swiper-button-prev {
    color: var(--secondary-color) !important;
    background: rgba(255, 255, 255, 0.2);
    width: 60px;
    height: 60px;
    border-radius: 50%;
    backdrop-filter: blur(10px);
    padding: 5px;
    transition: all 0.3s ease;
}

.swiper-button-next {
    right: 30px !important;
}

.swiper-button-prev {
    left: 30px !important;
}

.swiper-button-next:hover,
.swiper-button-prev:hover {
    background: rgba(255, 255, 255, 0.3);
    transform: scale(1.1);
}

.swiper-button-next:after,
.swiper-button-prev:after {
    font-size: 16px;
    font-weight: 600;
}

.swiper-pagination-bullet {
    background: var(--secondary-color) !important;
    opacity: 0.5;
}

.swiper-pagination-bullet-active {
    opacity: 1;
}

/* Content Sections */
.content-section {
    padding: 5rem 0;
    position: relative;
    z-index: 0;
    background: white;
}

.section-title {
    font-size: 2.5rem;
    text-align: center;
    margin-bottom: 3rem;
    color: var(--primary-color);
    position: relative;
}

.section-title::after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 50%;
    transform: translateX(-50%);
    width: 80px;
    height: 3px;
    background-color: var(--secondary-color);
}

/* Category Cards */
.category-card {
    background: white;
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
    height: 100%;
    text-decoration: none;
    color: inherit;
}

.category-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.15);
    text-decoration: none;
    color: inherit;
}

.category-card img {
    width: 100%;
    height: 250px;
    object-fit: cover;
    transition: all 0.3s ease;
}

.category-card:hover img {
    transform: scale(1.05);
}

.category-card-body {
    padding: 2rem;
    text-align: center;
}

.category-card h3 {
    font-size: 1.5rem;
    margin-bottom: 1rem;
    color: var(--primary-color);
}

.category-card p {
    color: var(--dark-gray);
    margin-bottom: 1.5rem;
}

.category-card .btn {
    background-color: var(--primary-color);
    border: none;
    padding: 0.75rem 2rem;
    border-radius: 25px;
    color: white;
    font-weight: 500;
    transition: all 0.3s ease;
}

.category-card .btn:hover {
    background-color: var(--secondary-color);
    color: var(--text-dark);
}

/* Info Cards */
.info-card {
    background: white;
    border-radius: 20px;
    padding: 2.5rem 2rem;
    text-align: center;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
    height: 100%;
    position: relative;
    border: 3px solid transparent;
    background: linear-gradient(white, white) padding-box,
                linear-gradient(45deg, var(--primary-color), var(--secondary-color), var(--primary-color), var(--secondary-color)) border-box;
    background-size: 400% 400%;
    animation: gradientShift 3s ease infinite;
}

@keyframes gradientShift {
    0% {
        background-position: 0% 50%;
    }
    50% {
        background-position: 100% 50%;
    }
    100% {
        background-position: 0% 50%;
    }
}

.info-card:hover {
    transform: translateY(-15px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.2);
}

.info-card-primary:hover {
    background: linear-gradient(white, white) padding-box,
                linear-gradient(45deg, var(--primary-color), var(--secondary-color), var(--primary-color), var(--secondary-color)) border-box;
    background-size: 400% 400%;
    animation-duration: 1s;
}

.info-card-secondary:hover {
    background: linear-gradient(white, white) padding-box,
                linear-gradient(45deg, var(--primary-color), var(--secondary-color), var(--primary-color), var(--secondary-color)) border-box;
    background-size: 400% 400%;
    animation-duration: 1s;
}

.info-card i {
    font-size: 3.5rem;
    margin-bottom: 1.5rem;
    transition: all 0.3s ease;
}

.info-card-primary i {
    color: var(--primary-color);
}

.info-card-secondary i {
    color: var(--secondary-color);
}

.info-card:hover i {
    transform: scale(1.1);
}

.info-card h4 {
    font-family: 'Roboto Condensed', sans-serif;
    font-size: 1.6rem;
    font-weight: 700;
    margin-bottom: 1rem;
    transition: all 0.3s ease;
}

.info-card-primary h4 {
    color: var(--primary-color);
}

.info-card-secondary h4 {
    color: var(--secondary-color);
}

.info-card:hover h4 {
    transform: translateY(-2px);
}

.info-card p {
    color: #666;
    line-height: 1.6;
    font-size: 0.95rem;
}

/* Event Cards */
.event-card {
    background: white;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
    height: 100%;
}

.event-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.15);
}

.event-image {
    height: auto;
    overflow: hidden;
    display: flex;
    align-items: center;
    justify-content: center;
}

.event-image img {
    width: 100%;
    height: auto;
    object-fit: cover;
    object-position: center;
    transition: transform 0.3s ease;
}

.event-card:hover .event-image img {
    transform: scale(1.05);
}

.event-content {
    padding: 2rem;
}

.event-content h4 {
    font-family: 'Roboto Condensed', sans-serif;
    font-size: 1.3rem;
    font-weight: 700;
    color: var(--text-dark);
    margin-bottom: 0.75rem;
}

#events .section-title {
    text-align: center;
    margin-bottom: 2rem;
}

#events .view-all-wrapper {
    display: flex;
    justify-content: center;
    margin-bottom: 2rem;
}

.view-all-btn {
    background: transparent;
    border: 2px solid var(--primary-color);
    color: var(--primary-color);
    padding: 0.6rem 1.5rem;
    border-radius: 999px;
    font-weight: 600;
    transition: all 0.3s ease;
}

.view-all-btn:hover {
    background: var(--primary-color);
    color: white;
    text-decoration: none;
}

.event-content p {
    color: #666;
    line-height: 1.6;
    margin-bottom: 1.5rem;
}

.event-date {
    display: flex;
    align-items: center;
    color: var(--primary-color);
    font-weight: 600;
    margin-bottom: 1.5rem;
}

.event-date i {
    margin-right: 0.5rem;
    font-size: 1.1rem;
}

/* Promotion Cards */
.promotion-card {
    background: white;
    border-radius: 20px;
    padding: 2.5rem 2rem;
    text-align: center;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
    height: 100%;
    position: relative;
    overflow: hidden;
}

.promotion-card::before {
    content: '';
    position: absolute;
    top: -3px;
    left: -3px;
    right: -3px;
    bottom: -3px;
    background: linear-gradient(45deg, var(--secondary-color), var(--primary-color), var(--secondary-color), var(--primary-color));
    background-size: 400% 400%;
    border-radius: 23px;
    z-index: -1;
    animation: gradientShift 3s ease infinite;
}

.promotion-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.2);
}

.promotion-icon {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.5rem;
    transition: all 0.3s ease;
}

.promotion-icon i {
    font-size: 2rem;
    color: white;
}

.promotion-card:hover .promotion-icon {
    transform: scale(1.1);
}

.promotion-card h4 {
    font-family: 'Roboto Condensed', sans-serif;
    font-size: 1.4rem;
    font-weight: 700;
    color: var(--text-dark);
    margin-bottom: 1rem;
}

.promotion-card p {
    color: #666;
    line-height: 1.6;
    margin-bottom: 1.5rem;
}

.promotion-badge {
    display: block;
    background: var(--primary-color);
    color: white;
    padding: 0.5rem 1rem;
    border-radius: 25px;
    font-weight: 700;
    font-size: 0.9rem;
    margin-bottom: 1.5rem;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    text-align: center;
}

.promotion-card .btn {
    font-weight: 700;
    background: var(--secondary-color);
    color: var(--primary-color);
    border: none;
    padding: 0.75rem 2rem;
    border-radius: 25px;
    transition: all 0.3s ease;
}

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

.promotion-card:hover h4,
.promotion-card:hover p {
    color: white;
}

/* Footer */
.footer-custom {
    background: linear-gradient(135deg, var(--text-dark), #1a1a1a);
    color: white;
    padding: 4rem 0 2rem;
    position: relative;
    overflow: hidden;
}

.footer-custom::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: linear-gradient(90deg, var(--primary-color), var(--secondary-color), var(--primary-color));
    background-size: 200% 100%;
    animation: gradientShift 3s ease infinite;
}

.footer-brand {
    margin-bottom: 2rem;
}

.footer-description {
    color: #ccc;
    line-height: 1.6;
    margin-bottom: 1.5rem;
}

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

.social-link-footer {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    background: rgba(255, 255, 255, 0.1);
    color: white;
    border-radius: 50%;
    text-decoration: none;
    transition: all 0.3s ease;
    backdrop-filter: blur(10px);
}

.social-link-footer:hover {
    background: black;
    color: white;
    transform: translateY(-3px);
}

.footer-title {
    color: var(--secondary-color);
    font-family: 'Roboto Condensed', sans-serif;
    font-size: 1.3rem;
    font-weight: 700;
    margin-bottom: 1.5rem;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.footer-links {
    list-style: none;
    padding: 0;
    margin: 0;
}

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

.footer-link {
    color: #ccc;
    text-decoration: none;
    transition: all 0.3s ease;
    position: relative;
    padding-left: 0;
}

.footer-link::before {
    content: '→';
    position: absolute;
    left: -20px;
    color: var(--secondary-color);
    opacity: 0;
    transition: all 0.3s ease;
}

.footer-link:hover {
    color: var(--secondary-color);
    padding-left: 20px;
}

.footer-link:hover::before {
    opacity: 1;
}

.footer-contact {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.contact-item {
    display: flex;
    align-items: center;
    color: #ccc;
    transition: all 0.3s ease;
}

.contact-item i {
    color: var(--secondary-color);
    margin-right: 12px;
    width: 20px;
    text-align: center;
}

.contact-item:hover {
    color: white;
}

.contact-item:hover i {
    color: var(--primary-color);
}

.footer-divider {
    border: none;
    height: 1px;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.2), transparent);
    margin: 2rem 0 1.5rem;
}

.footer-bottom {
    color: #999;
    font-size: 0.9rem;
}

.footer-bottom p {
    margin: 0;
}

footer a:hover {
    color: var(--secondary-color) !important;
}

/* Responsive Design */
@media (max-width: 768px) {
    .mobile-nav-overlay.active {
        z-index: 1001;
    }

    .hero-title {
        font-size: 2.2rem;
    }
    
    .hero-title::before {
        left: -15px;
        right: -15px;
    }
    
    .hero-title::after {
        left: -10px;
        right: -10px;
    }
    
    .hero-description {
        font-size: 1rem;
        padding: 0.8rem 1.5rem;
    }
    
    .section-title {
        font-size: 2rem;
    }
    
    .category-card-body {
        padding: 1.5rem;
    }
    
    .navbar-nav .nav-link {
        margin: 0.2rem 0;
        text-align: center;
    }
    
    .navbar {
        top: 32px;
    }
    
    .subheader-left {
        display: none;
    }
    
    .subheader-right {
        flex-direction: row;
        justify-content: space-between;
        align-items: center;
        width: 100%;
        gap: 12px;
    }
    
    .subheader-item {
        font-size: 0.8rem;
        margin-bottom: 0;
    }
    
    .subheader-phone {
        font-size: 0.85rem;
    }
    
    .subheader-social {
        gap: 8px;
    }
    
    .social-link {
        width: 28px;
        height: 28px;
        font-size: 0.9rem;
    }
    
    .shop-finder-section {
        padding: 60px 0;
    }
    
    .shop-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr)) !important;
        gap: 1rem;
    }
    
    .search-box {
        padding: 12px 20px;
    }
    
    .search-box input {
        font-size: 0.9rem;
    }
    
    .hero-slider {
        height: 100vh;
    }
    
    .hero-slide {
        height: 100vh;
    }
    
    .hero-content {
        max-width: 90%;
    }
    
    .hero-slider .swiper-button-next,
    .hero-slider .swiper-button-prev {
        top: auto !important;
        bottom: 20px !important;
        transform: none !important;
        width: 48px;
        height: 48px;
        background: rgba(255, 255, 255, 0.25);
    }

    .hero-slider .swiper-button-next:after,
    .hero-slider .swiper-button-prev:after {
        font-size: 14px;
    }
    
    .hero-slider .swiper-button-prev {
        left: 20px !important;
        right: auto !important;
    }
    
    .hero-slider .swiper-button-next {
        right: 20px !important;
        left: auto !important;
    }
}

@media (max-width: 576px) {
    .hero-title {
        font-size: 1.8rem;
    }
    
    .hero-title::before {
        left: -10px;
        right: -10px;
    }
    
    .hero-title::after {
        left: -8px;
        right: -8px;
    }
    
    .hero-content {
        padding: 0 1rem;
    }
    
    .hero-description {
        font-size: 0.9rem;
        padding: 0.6rem 1rem;
    }
    
    .content-section {
        padding: 3rem 0;
    }
    
    .hero-divider {
        width: 80px;
    }
    
    .navbar {
        top: 28px;
    }
    
    .subheader-item {
        font-size: 0.75rem;
    }
    
    .hero-slider {
        height: 100vh;
    }
    
    .hero-slide {
        height: 100vh;
    }
    
    .hero-content {
        max-width: 95%;
        padding: 0;
    }
}

/* Shop Finder Section */
.shop-finder-section {
    background: linear-gradient(rgba(130, 45, 45, 0.8), rgba(130, 45, 45, 0.8)), url('../web/images/findshop.jpg');
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
    padding: 80px 0;
    position: relative;
}

.section-subtitle {
    font-size: 1.1rem;
    margin-bottom: 3rem;
    opacity: 0.9;
}

.shop-search-container {
    max-width: 600px;
    margin: 0 auto 4rem;
}

.search-box {
    position: relative;
    display: flex;
    align-items: center;
    background: rgba(255, 255, 255, 0.95);
    border-radius: 50px;
    padding: 15px 25px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
    backdrop-filter: blur(10px);
}

.search-box i:first-child {
    color: var(--primary-color);
    font-size: 1.2rem;
    margin-right: 15px;
}

.search-box input {
    flex: 1;
    border: none;
    outline: none;
    background: transparent;
    font-size: 1rem;
    color: var(--text-dark);
    font-family: 'Poppins', sans-serif;
}

.search-box input::placeholder {
    color: #999;
}

.search-btn {
    background: var(--primary-color);
    border: none;
    color: white;
    padding: 10px 20px;
    border-radius: 25px;
    cursor: pointer;
    transition: all 0.3s ease;
    margin-left: 10px;
    font-weight: 600;
    font-size: 0.9rem;
}

.search-btn:hover {
    background: var(--secondary-color);
    color: var(--primary-color);
    transform: scale(1.1);
}

.shop-grid {
    display: grid;
    grid-template-columns: repeat(6, 1fr);
    gap: 1.5rem;
    margin-bottom: 3rem;
}

.shop-card {
    background: rgba(255, 255, 255, 0.95);
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
    backdrop-filter: blur(10px);
}

.shop-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.2);
}

.shop-image {
    position: relative;
    height: 150px;
    overflow: hidden;
    background: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
}

.shop-image img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    transition: transform 0.3s ease;
    padding: 20px;
}

.shop-card:hover .shop-image img {
    transform: scale(1.05);
}


.shop-info {
    padding: 1.5rem;
}

.shop-info h4 {
    font-family: 'Roboto Condensed', sans-serif;
    font-size: 1.1rem;
    font-weight: 700;
    color: var(--text-dark);
    margin-bottom: 0.5rem;
}

.shop-info p {
    color: #666;
    font-size: 0.8rem;
    margin-bottom: 0.8rem;
    line-height: 1.4;
}

.shop-meta {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.shop-category {
    display: inline-block;
    background: var(--secondary-color);
    color: var(--primary-color);
    padding: 0.2rem 0.6rem;
    border-radius: 15px;
    font-size: 0.7rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.shop-floor {
    display: inline-block;
    background: var(--primary-color);
    color: white;
    padding: 0.2rem 0.6rem;
    border-radius: 15px;
    font-size: 0.7rem;
    font-weight: 600;
}

/* Utility Classes */
.text-primary-custom {
    color: var(--primary-color) !important;
}

.text-secondary-custom {
    color: var(--secondary-color) !important;
}

.bg-primary-custom {
    background-color: var(--primary-color) !important;
}

.bg-secondary-custom {
    background-color: var(--secondary-color) !important;
}

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

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

.btn-secondary-custom {
    background-color: var(--secondary-color);
    border-color: var(--secondary-color);
    color: var(--text-dark);
    font-size: 0.9rem;
    padding: 0.6rem 1.5rem;
}

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

/* Shops Page */
.shops-hero {
    position: relative;
    overflow: hidden;
    padding: 6rem 0 5rem;
}

.shops-hero .display-5,
.shops-hero .lead {
    color: #fff;
}

.shops-hero::after {
    content: '';
    position: absolute;
    inset: 0;
    background: rgba(0, 0, 0, 0.2);
    z-index: 0;
}

.shops-hero .container {
    position: relative;
    z-index: 1;
}

@media (max-width: 768px) {
    .shops-hero {
        padding: 7rem 0 4.5rem;
    }
}

main {
    margin-top: 160px;
}

body.is-home main {
    margin-top: 0;
}

body.inner-page .navbar {
    background: rgba(255, 255, 255, 0.95) !important;
    box-shadow: 0 2px 20px rgba(0, 0, 0, 0.1);
}

body.inner-page .nav-link {
    color: var(--text-dark) !important;
}

body.inner-page .nav-link:hover {
    color: var(--primary-color) !important;
}

body.inner-page .navbar-brand img {
    content: url('../web/images/logo.png');
}

.icon-circle {
    width: 45px;
    height: 45px;
    border-radius: 50%;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    margin-right: 1rem;
    color: white;
    flex-shrink: 0;
}

.icon-circle i {
    color: inherit;
}

.icon-circle.bg-secondary {
    color: white;
}

.contact-hero .btn-primary {
    background: var(--primary-color);
    border-color: var(--primary-color);
    font-weight: 600;
}

.contact-hero .btn-primary:hover {
    background: var(--secondary-color);
    border-color: var(--secondary-color);
    color: var(--primary-color);
}

/* Contact Page */
.contact-hero {
    position: relative;
    overflow: hidden;
    padding: 6rem 0 5rem;
    margin-bottom: 3rem;
}

.contact-hero .display-5,
.contact-hero .lead {
    color: #fff;
}

.icon-circle {
    width: 45px;
    height: 45px;
    border-radius: 50%;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    margin-right: 1rem;
}

.btn-contact {
    background: var(--primary-color);
    border: none;
    color: white;
    padding: 0.75rem 2rem;
    border-radius: 12px;
    font-weight: 600;
    transition: all 0.3s ease;
}

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

.contact-page iframe {
    border-radius: 0 0 24px 24px;
}

@media (max-width: 768px) {
    main {
        margin-top: 180px;
    }
}

/* Events Page */
.events-hero {
    position: relative;
    overflow: hidden;
    padding: 6rem 0 5rem;
}

.events-hero .display-5,
.events-hero .lead {
    color: #fff;
}

.event-card {
    background: white;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
    height: 100%;
}

.event-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.15);
}

.link-primary-custom {
    color: var(--primary-color);
    text-decoration: none;
}

.link-primary-custom:hover {
    color: var(--secondary-color);
    text-decoration: underline;
}

/* Promotions Page */
.promotions-hero {
    position: relative;
    overflow: hidden;
    padding: 6rem 0 5rem;
}

.promotions-hero .display-5,
.promotions-hero .lead {
    color: #fff;
}

.promotion-card {
    background: white;
    border-radius: 24px;
    padding: 2.5rem 2rem;
    box-shadow: 0 18px 40px rgba(130, 45, 45, 0.12);
    position: relative;
    overflow: hidden;
    height: 100%;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}
