@import url('https://fonts.googleapis.com/css2?family=Bebas+Neue&family=Oswald:wght@400;500;600;700&family=Inter:wght@400;500;600;700&display=swap');

/* Theme 7 - Black Angus Steak & Burger House */
:root {
    --angus-black: #1a1a1a;
    --angus-black-2: #2d2d2d;
    --angus-black-3: #3a3a3a;
    --angus-red: #c41e2a;
    --angus-red-dark: #a01820;
    --angus-red-light: #e8333f;
    --angus-white: #ffffff;
    --angus-cream: #f5f0eb;
    --angus-gray: #8a8a8a;
    --angus-gray-light: #e8e4e0;
    --angus-border: rgba(196, 30, 42, 0.35);
    --angus-shadow: 0 10px 30px rgba(0, 0, 0, 0.45);
    --angus-shadow-hover: 0 16px 44px rgba(0, 0, 0, 0.6);
    --angus-radius: 14px;
}

* {
    box-sizing: border-box;
}

body {
    font-family: 'Inter', sans-serif;
    background: linear-gradient(180deg, var(--angus-black) 0%, #111111 50%, var(--angus-black) 100%);
    background-attachment: fixed;
    color: var(--angus-white);
    line-height: 1.6;
    -webkit-font-smoothing: antialiased;
}

::selection {
    background: var(--angus-red);
    color: var(--angus-white);
}

/* Hero */
.hero-section {
    min-height: 300px;
    border-bottom: 4px solid var(--angus-red);
    position: relative;
    overflow: hidden;
}

.hero-section::before {
    content: '';
    position: absolute;
    inset: 0;
    background:
        linear-gradient(180deg, rgba(0, 0, 0, 0.3) 0%, rgba(0, 0, 0, 0.7) 100%);
    z-index: 1;
}

.hero-section::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, transparent, var(--angus-red), transparent);
    z-index: 2;
}

.hero-section > * {
    position: relative;
    z-index: 2;
}

/* Hero logo */
.hero-logo-wrapper {
    display: flex;
    justify-content: center;
}

.hero-logo {
    width: 140px;
    height: 140px;
    object-fit: contain;
    background: transparent;
    border: none;
    padding: 0;
    filter: drop-shadow(0 4px 16px rgba(0, 0, 0, 0.6));
}

@media (min-width: 640px) {
    .hero-logo {
        width: 170px;
        height: 170px;
    }
}

.hero-section h1 {
    font-family: 'Bebas Neue', sans-serif !important;
    color: var(--angus-white) !important;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    text-shadow:
        3px 3px 0px rgba(196, 30, 42, 0.6),
        0 0 40px rgba(196, 30, 42, 0.3);
}

.hero-section p {
    color: #d4d0cc !important;
    font-family: 'Oswald', sans-serif;
    letter-spacing: 0.05em;
    text-transform: uppercase;
    font-weight: 400;
}

/* Top bar - ID selectors to override header.php inline styles */
#topBarFixed,
body #topBarFixed,
html body #topBarFixed,
body .top-bar,
html .top-bar,
.top-bar {
    background: rgba(26, 26, 26, 0.97) !important;
    border-bottom: 2px solid var(--angus-red) !important;
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.5) !important;
    backdrop-filter: blur(10px) !important;
    -webkit-backdrop-filter: blur(10px) !important;
}

#topBarFixed *,
.top-bar * {
    color: var(--angus-white) !important;
}

/* General text */
.text-gray-900,
.text-gray-800,
.text-gray-700 {
    color: var(--angus-white) !important;
}

.text-gray-600,
.text-gray-500,
.text-gray-400 {
    color: var(--angus-gray) !important;
}

/* Buttons */
.bg-blue-500,
.nav-button.accent,
button.theme-bg,
a.theme-bg,
#submitOrderBtn {
    background: linear-gradient(135deg, var(--angus-red) 0%, var(--angus-red-dark) 100%) !important;
    color: var(--angus-white) !important;
    border: 2px solid rgba(232, 51, 63, 0.5) !important;
    border-radius: 10px !important;
    font-family: 'Oswald', sans-serif !important;
    font-weight: 600 !important;
    letter-spacing: 0.06em !important;
    text-transform: uppercase !important;
    box-shadow:
        0 6px 20px rgba(196, 30, 42, 0.35),
        inset 0 1px 0 rgba(255, 255, 255, 0.15) !important;
    transition: all 0.3s ease !important;
}

.bg-blue-500:hover,
.nav-button.accent:hover,
button.theme-bg:hover,
a.theme-bg:hover,
#submitOrderBtn:hover {
    background: linear-gradient(135deg, var(--angus-red-light) 0%, var(--angus-red) 100%) !important;
    transform: translateY(-2px) !important;
    box-shadow:
        0 10px 28px rgba(196, 30, 42, 0.5),
        inset 0 1px 0 rgba(255, 255, 255, 0.2) !important;
}

/* Category cards */
.category-grid {
    gap: 1rem !important;
}

.category-card {
    border-radius: 12px !important;
    border: 2px solid var(--angus-black-3) !important;
    box-shadow: var(--angus-shadow) !important;
    overflow: hidden;
    transition: all 0.3s ease !important;
}

.category-card::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: var(--angus-red);
    opacity: 0;
    transition: opacity 0.3s ease;
    z-index: 3;
}

.category-card:hover::after {
    opacity: 1;
}

.category-card__bg::after {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg, rgba(0, 0, 0, 0.15) 0%, rgba(0, 0, 0, 0.75) 100%);
}

.category-card__content span {
    font-family: 'Oswald', sans-serif;
    color: var(--angus-white);
    text-transform: uppercase;
    letter-spacing: 0.08em;
    font-weight: 600;
    text-shadow: 0 3px 12px rgba(0, 0, 0, 0.6);
}

.category-card:hover {
    transform: translateY(-4px) !important;
    border-color: var(--angus-red) !important;
    box-shadow: var(--angus-shadow-hover) !important;
}

.category-card.is-active {
    outline: 2px solid var(--angus-red);
    outline-offset: 2px;
    border-color: var(--angus-red) !important;
}

/* Back to categories button */
#backToCategories {
    background: var(--angus-black-2) !important;
    border: 1px solid var(--angus-black-3) !important;
    color: var(--angus-white) !important;
}

#backToCategories:hover {
    border-color: var(--angus-red) !important;
    color: var(--angus-red-light) !important;
}

/* Product cards - dark style */
.product-card,
.bg-white.rounded-xl,
.bg-white.rounded-lg {
    background: linear-gradient(180deg, var(--angus-black-2) 0%, var(--angus-black) 100%) !important;
    border: 1px solid var(--angus-black-3) !important;
    border-radius: var(--angus-radius) !important;
    box-shadow: var(--angus-shadow) !important;
    color: var(--angus-white) !important;
    transition: all 0.3s ease !important;
    overflow: hidden;
    position: relative;
}

.product-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: linear-gradient(90deg, var(--angus-red), var(--angus-red-light), var(--angus-red));
    opacity: 0;
    transition: opacity 0.3s ease;
}

.product-card:hover::before {
    opacity: 1;
}

.product-card:hover,
.bg-white.rounded-xl:hover {
    transform: translateY(-4px) !important;
    border-color: var(--angus-red) !important;
    box-shadow: var(--angus-shadow-hover) !important;
}

.product-card img {
    transition: transform 0.4s ease;
}

.product-card:hover img {
    transform: scale(1.05);
}

.product-card h3 {
    font-family: 'Oswald', sans-serif !important;
    color: var(--angus-white) !important;
    text-transform: uppercase;
    letter-spacing: 0.03em;
    font-weight: 600;
}

.product-card p {
    color: var(--angus-gray) !important;
}

.category-panel h2 {
    font-family: 'Bebas Neue', sans-serif !important;
    color: var(--angus-white) !important;
    letter-spacing: 0.06em;
    text-transform: uppercase;
}

.category-panel .bg-white {
    background: linear-gradient(180deg, var(--angus-black-2) 0%, var(--angus-black) 100%) !important;
    border: 1px solid var(--angus-black-3) !important;
    border-radius: var(--angus-radius) !important;
    box-shadow: var(--angus-shadow) !important;
    color: var(--angus-white) !important;
}

/* Product card internals */
.product-card .bg-white,
.product-card div[class*="bg-white"] {
    background: transparent !important;
}

.product-card .bg-gray-50,
.product-card .bg-red-50,
.product-card .bg-blue-50,
.product-card .bg-yellow-50,
.product-card .bg-orange-50,
.product-card .bg-green-50 {
    background: rgba(255, 255, 255, 0.08) !important;
    border: none !important;
    color: var(--angus-white) !important;
}

.product-card .bg-gray-50 *,
.product-card .bg-red-50 *,
.product-card .bg-blue-50 *,
.product-card .bg-yellow-50 *,
.product-card .bg-orange-50 *,
.product-card .bg-green-50 * {
    color: var(--angus-white) !important;
}

.product-card .text-amber-500,
.product-card .text-red-500,
.product-card .text-blue-500,
.product-card .text-yellow-500,
.product-card .text-orange-500,
.product-card .text-green-500,
.product-card .text-pink-500,
.product-card .text-gray-500 {
    color: var(--angus-red-light) !important;
}

.product-card .text-amber-800,
.product-card .text-amber-600 {
    color: #d4d0cc !important;
}

.product-card .border-amber-300 {
    border-color: var(--angus-black-3) !important;
}

.product-card .inline-flex.items-center {
    background: rgba(255, 255, 255, 0.1) !important;
    border: 1px solid var(--angus-black-3) !important;
    color: #d4d0cc !important;
}

.product-card .text-blue-600 {
    color: var(--angus-red-light) !important;
}

.product-card .text-xs.font-semibold.text-gray-700 {
    color: var(--angus-gray) !important;
}

/* Price */
.text-2xl.font-extrabold.text-gray-900,
.text-sm.font-bold.text-gray-900 {
    color: var(--angus-red-light) !important;
    font-family: 'Oswald', sans-serif;
}

.text-red-600 {
    color: var(--angus-red-light) !important;
}

.text-green-600 {
    color: #4caf50 !important;
}

/* Tags & badges */
.absolute.top-2.left-2 span,
.inline-flex.items-center.px-3.py-1\.5 {
    background: var(--angus-red) !important;
    color: var(--angus-white) !important;
    border: 1px solid rgba(232, 51, 63, 0.5) !important;
    border-radius: 6px !important;
    font-family: 'Oswald', sans-serif;
    font-weight: 600;
    letter-spacing: 0.05em;
    text-transform: uppercase;
    box-shadow: 0 4px 12px rgba(196, 30, 42, 0.4);
}

.animate-bounce-subtle {
    animation: none !important;
}

/* Campaign & info blocks */
.campaign-banner-marquee,
.bg-gradient-to-r.from-blue-50.to-indigo-50,
.bg-amber-50,
.bg-yellow-50,
.bg-red-50,
.bg-blue-50,
.bg-orange-50,
.bg-green-50 {
    background: linear-gradient(180deg, var(--angus-black-2) 0%, var(--angus-black) 100%) !important;
    border: 1px solid var(--angus-black-3) !important;
    border-left: 3px solid var(--angus-red) !important;
    color: var(--angus-white) !important;
    border-radius: 10px !important;
}

/* Modal */
#cartModal .bg-white,
#searchModal .bg-white {
    background: linear-gradient(180deg, #2a2a2a 0%, var(--angus-black) 100%) !important;
    color: var(--angus-white) !important;
    border: 1px solid var(--angus-black-3) !important;
}

.bg-gradient-to-r.from-blue-500.to-blue-600,
.bg-gradient-to-r.from-amber-500.to-orange-500 {
    background: linear-gradient(135deg, var(--angus-red-dark) 0%, var(--angus-red) 100%) !important;
    color: var(--angus-white) !important;
    border-bottom: 2px solid rgba(232, 51, 63, 0.4);
}

/* Inputs */
input,
textarea,
select {
    background: rgba(45, 45, 45, 0.9) !important;
    color: var(--angus-white) !important;
    border: 1px solid var(--angus-black-3) !important;
    border-radius: 8px !important;
}

input::placeholder,
textarea::placeholder {
    color: var(--angus-gray) !important;
}

input:focus,
textarea:focus,
select:focus {
    border-color: var(--angus-red) !important;
    box-shadow: 0 0 0 2px rgba(196, 30, 42, 0.25) !important;
}

/* Borders */
.border-gray-100,
.border-gray-200,
.border-gray-300 {
    border-color: var(--angus-black-3) !important;
}

/* Language dropdown */
.language-dropdown,
.language-dropdown-bottom,
div.language-dropdown,
div.language-dropdown-bottom,
#languageDropdown,
#languageDropdownBottom {
    background: #2d2d2d !important;
    border: 1px solid #3a3a3a !important;
    border-radius: 12px !important;
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.7) !important;
}

.language-option,
.language-option-bottom,
div.language-option,
div.language-option-bottom {
    color: #ffffff !important;
    border-bottom: 1px solid #3a3a3a !important;
    background: transparent !important;
}

.language-option:last-child,
.language-option-bottom:last-child {
    border-bottom: none !important;
}

.language-option:hover,
.language-option-bottom:hover,
div.language-option:hover,
div.language-option-bottom:hover {
    background: #3a3a3a !important;
}

.language-option.active,
.language-option-bottom.active,
div.language-option.active,
div.language-option-bottom.active {
    background: rgba(196, 30, 42, 0.25) !important;
    color: #e8333f !important;
}

.language-option.active i,
.language-option-bottom.active i {
    color: #e8333f !important;
}

.language-option span,
.language-option-bottom span {
    color: #ffffff !important;
}

.language-option.active span,
.language-option-bottom.active span {
    color: #e8333f !important;
}

/* Bottom nav */
.bottom-nav-bar {
    background: rgba(26, 26, 26, 0.98) !important;
    border-top: 2px solid var(--angus-red) !important;
    box-shadow: 0 -8px 24px rgba(0, 0, 0, 0.5) !important;
    backdrop-filter: blur(10px) !important;
    -webkit-backdrop-filter: blur(10px) !important;
}

.bottom-nav-btn,
.bottom-nav-search-btn {
    color: var(--angus-white) !important;
    background: linear-gradient(135deg, #2d2d2d 0%, #1a1a1a 100%) !important;
    border: 1px solid #3a3a3a !important;
}

.bottom-nav-btn:hover,
.bottom-nav-search-btn:hover {
    border-color: var(--angus-red) !important;
}

.language-toggle-bottom {
    color: var(--angus-white) !important;
    background: linear-gradient(135deg, #2d2d2d 0%, #1a1a1a 100%) !important;
    border: 1px solid #3a3a3a !important;
}

.language-toggle-bottom:hover {
    border-color: var(--angus-red) !important;
}

.bottom-nav-cart-btn {
    background: linear-gradient(135deg, var(--angus-red) 0%, var(--angus-red-dark) 100%) !important;
    color: var(--angus-white) !important;
    border: 2px solid rgba(232, 51, 63, 0.5) !important;
}

.bottom-nav-info-btn {
    background: linear-gradient(135deg, #2d2d2d 0%, #1a1a1a 100%) !important;
    color: var(--angus-white) !important;
    border: 1px solid #3a3a3a !important;
}

.bottom-nav-info-btn:hover {
    border-color: var(--angus-red) !important;
    background: linear-gradient(135deg, #3a3a3a 0%, #2d2d2d 100%) !important;
}

#callWaiterBtn {
    background: linear-gradient(135deg, #2d2d2d 0%, #1a1a1a 100%) !important;
    color: var(--angus-white) !important;
    border: 1px solid #3a3a3a !important;
}

#callWaiterBtn:hover {
    border-color: var(--angus-red) !important;
    color: var(--angus-red-light) !important;
}

#cartBadgeBottom,
#cartBadgeTop,
#cartBadge {
    background: var(--angus-red) !important;
    color: var(--angus-white) !important;
    font-family: 'Oswald', sans-serif;
    font-weight: 700;
}

/* Cart footer */
#cartFooter {
    background: var(--angus-black-2) !important;
    box-shadow: 0 -2px 10px rgba(0, 0, 0, 0.4) !important;
}

/* Cart modal full override */
#cartModal > div,
#searchModal > div {
    background: var(--angus-black) !important;
    color: var(--angus-white) !important;
}

/* Footer */
footer {
    background: linear-gradient(180deg, var(--angus-black-2) 0%, #111111 100%) !important;
    border-top: 2px solid var(--angus-red) !important;
    color: var(--angus-white) !important;
}

footer h3,
footer .text-gray-800 {
    color: var(--angus-white) !important;
}

/* Body inline style override */
body.bg-gray-100 {
    background: linear-gradient(180deg, var(--angus-black) 0%, #111111 50%, var(--angus-black) 100%) !important;
}

/* Scrollbar */
::-webkit-scrollbar {
    width: 8px;
}

::-webkit-scrollbar-track {
    background: var(--angus-black);
}

::-webkit-scrollbar-thumb {
    background: var(--angus-black-3);
    border-radius: 4px;
}

::-webkit-scrollbar-thumb:hover {
    background: var(--angus-red);
}

/* Product Detail Modal */
#productDetailContent {
    background: linear-gradient(180deg, var(--angus-black-2) 0%, var(--angus-black) 100%) !important;
    color: var(--angus-white) !important;
}

#productDetailContent h2 {
    color: var(--angus-white) !important;
    font-family: 'Oswald', sans-serif !important;
    text-transform: uppercase;
}

#productDetailContent p {
    color: var(--angus-gray) !important;
}

#productDetailContent .bg-red-50,
#productDetailContent .bg-blue-50,
#productDetailContent .bg-yellow-50,
#productDetailContent .bg-orange-50 {
    background: rgba(255, 255, 255, 0.08) !important;
}

#productDetailContent .bg-red-50 *,
#productDetailContent .bg-blue-50 *,
#productDetailContent .bg-yellow-50 *,
#productDetailContent .bg-orange-50 * {
    color: var(--angus-white) !important;
}

#productDetailContent .bg-amber-50 {
    background: rgba(255, 255, 255, 0.08) !important;
    border-color: var(--angus-black-3) !important;
}

#productDetailContent .text-amber-800 {
    color: #d4d0cc !important;
}

#productDetailContent .border-gray-100 {
    border-color: var(--angus-black-3) !important;
}

#productDetailContent .text-gray-900 {
    color: var(--angus-white) !important;
}

#productDetailContent .text-red-600 {
    color: var(--angus-red-light) !important;
}

#productDetailContent button.bg-blue-600 {
    background: linear-gradient(135deg, var(--angus-red) 0%, var(--angus-red-dark) 100%) !important;
    border: none !important;
}

/* Favorite button */
.favorite-btn {
    transition: transform 0.3s ease !important;
}

.favorite-btn.is-favorited {
    background: rgba(196, 30, 42, 0.6) !important;
}

/* Gallery Slider - Dark Theme */
.product-slider__dot {
    background: rgba(255, 255, 255, 0.35) !important;
    box-shadow: 0 1px 4px rgba(0, 0, 0, 0.5);
}

.product-slider__dot.active {
    background: var(--angus-red) !important;
}

.product-slider img,
.product-card:hover .product-slider img {
    transition: none !important;
    transform: none !important;
}

/* Campaign marquee animation */
.campaign-marquee-content {
    animation: marquee 18s linear infinite;
}

@keyframes marquee {
    0% { transform: translateX(0); }
    100% { transform: translateX(-50%); }
}

/* Twemoji flag images */
img.emoji {
    height: 1.2em !important;
    width: 1.2em !important;
    vertical-align: -0.15em !important;
    display: inline-block !important;
}

.language-flag img.emoji,
.language-option img.emoji,
.language-option-bottom img.emoji {
    height: 1.4em !important;
    width: 1.4em !important;
    margin-right: 0.4em;
}

#currentLanguageFlagBottom img.emoji,
#currentLanguageFlag img.emoji {
    height: 1.5em !important;
    width: 1.5em !important;
}

/* Animations */
@keyframes angusSlideUp {
    from {
        opacity: 0;
        transform: translateY(20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.category-card,
.product-card {
    animation: angusSlideUp 0.5s ease both;
}

/* Responsive */
@media (max-width: 768px) {
    .hero-section {
        min-height: 250px;
    }

    .product-card,
    .bg-white.rounded-xl {
        border-radius: 12px !important;
    }
}

@media (max-width: 480px) {
    .category-card {
        border-radius: 10px !important;
    }
}
