/* UNIS Technology Theme - Elite Platforms For Gamers */

/* Reset and Base Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Arial', sans-serif;
    line-height: 1.6;
    color: #333;
    background-color: #fff;
}

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

/* Typography */
h1, h2, h3, h4, h5, h6 {
    font-family: 'Poppins', sans-serif;
    font-weight: 700;
    text-transform: uppercase;
    margin-bottom: 1rem;
}

/* Main Content - Add top padding to account for fixed header */
.site-content {
    padding-top: 120px; /* Adjust based on header height */
}

/* Page specific styles to prevent content from hiding under header */
.shop-page,
.games-page,
.showrooms-page,
.park-page,
.blog-page,
.support-page {
    padding-top: 80px;
}

@media (max-width: 768px) {
    .site-content {
        padding-top: 100px; /* Smaller padding for mobile */
    }
    
    .shop-page,
    .games-page,
    .showrooms-page,
    .park-page,
    .blog-page,
    .support-page {
        padding-top: 60px;
    }
}

h1 {
    font-size: 2.5rem;
    color: #fff;
}

h2 {
    font-size: 2rem;
    color: #fff;
}

h3 {
    font-size: 1.5rem;
    color: #fff;
}

/* Header Styles */
.header {
    background: linear-gradient(180deg, #E78F3E 0%, #EEB645 100%);
    padding: 1% 5% 0% 5%;
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    transition: all 0.3s ease;
}

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

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

/* Desktop Header */
.header-desktop {
    display: block;
}

.header-left,
.header-center,
.header-right {
    flex: 1;
    display: flex;
    align-items: center;
}

.header-left {
    justify-content: flex-start;
}

.header-center {
    justify-content: center;
}

.header-right {
    justify-content: flex-end;
    gap: 20px;
}

.logo {
    text-align: center;
}

.logo-img {
    max-width: 300px;
    height: auto;
}

.nav-menu {
    display: flex;
    list-style: none;
    gap: 30px;
    margin: 0;
    padding: 0;
}

.nav-menu ul {
    display: flex;
    list-style: none;
    gap: 30px;
    margin: 0;
    padding: 0;
}

.nav-menu a {
    color: #000;
    text-decoration: none;
    font-weight: 700;
    font-size: 22px;
    text-transform: uppercase;
    padding: 10px 15px;
    transition: color 0.3s ease;
    position: relative;
}

.nav-menu a:hover {
    color: #fff;
}

.nav-menu a::after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 0;
    width: 0;
    height: 3px;
    background-color: #CB5530;
    transition: width 0.3s ease;
}

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

/* Download Catalog Button */
.download-catalog {
    margin-right: 20px;
}

.catalog-button {
    display: inline-block;
    padding: 10px 20px;
    background-color: #000;
    color: #fff;
    text-decoration: none;
    border-radius: 4px;
    font-weight: 700;
    text-transform: uppercase;
    font-size: 14px;
    transition: all 0.3s ease;
    border: 1px solid #000;
}

.catalog-button:hover {
    background-color: #333;
    color: #fff;
}

/* Mobile Header */
.header-mobile {
    display: none;
}

.mobile-menu-toggle {
    display: none;
    background: none;
    border: none;
    color: #000;
    font-size: 24px;
    cursor: pointer;
    padding: 10px;
}

.menu-icon {
    display: block;
    width: 25px;
    height: 3px;
    background-color: #000;
    position: relative;
    transition: all 0.3s ease;
}

.menu-icon::before,
.menu-icon::after {
    content: '';
    position: absolute;
    width: 25px;
    height: 3px;
    background-color: #000;
    transition: all 0.3s ease;
}

.menu-icon::before {
    top: -8px;
}

.menu-icon::after {
    bottom: -8px;
}

.mobile-menu-toggle.active .menu-icon {
    background-color: transparent;
}

.mobile-menu-toggle.active .menu-icon::before {
    transform: rotate(45deg);
    top: 0;
}

.mobile-menu-toggle.active .menu-icon::after {
    transform: rotate(-45deg);
    bottom: 0;
}

.mobile-nav {
    display: none;
    flex-direction: column;
    width: 100%;
    background: linear-gradient(180deg, #E78F3E 0%, #EEB645 100%);
    padding: 20px 0;
    margin-top: 20px;
}

.mobile-nav.active {
    display: flex;
}

.mobile-nav ul {
    flex-direction: column;
    gap: 15px;
    text-align: center;
}

.mobile-nav a {
    font-size: 18px;
    padding: 15px;
    display: block;
}

/* Hero Section */
.hero-section {
    position: relative;
    height: 100vh;
    overflow: hidden;
    margin-top: 80px; /* Account for fixed header */
}

.hero-video-container {
    position: relative;
    width: 100%;
    height: 100%;
}

.hero-video {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.5);
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
}

.hero-content {
    color: #fff;
    max-width: 600px;
    padding: 0 20px;
}

.hero-content h1 {
    font-size: 3.5rem;
    font-weight: bold;
    margin-bottom: 20px;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
}

.hero-content p {
    font-size: 1.3rem;
    margin-bottom: 30px;
    text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.5);
}

.cta-button {
    display: inline-block;
    padding: 15px 30px;
    background: linear-gradient(180deg, #E78F3E 0%, #EEB645 100%);
    color: #000;
    text-decoration: none;
    border-radius: 5px;
    font-weight: bold;
    font-size: 1.1rem;
    transition: all 0.3s ease;
    text-transform: uppercase;
}

.cta-button:hover {
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.3);
}

/* Elite Games Section */
.elite-games-section {
    background-color: #000;
    padding: 50px 0;
    text-align: center;
}

.elite-games-logo-img {
    max-width: 419px;
    height: auto;
}

/* Best Sellers Section */
.best-sellers-section {
    background-color: #000;
    padding: 80px 0;
    color: #fff;
}

.section-title {
    text-align: center;
    font-size: 2.5rem;
    margin-bottom: 60px;
    color: #fff;
}

.best-sellers-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 40px;
    margin-top: 50px;
}

.product-card {
    text-align: center;
    background: #fff;
    border-radius: 10px;
    overflow: hidden;
    transition: transform 0.3s ease;
}

.product-card:hover {
    transform: translateY(-10px);
}

.product-image-container {
    position: relative;
    overflow: hidden;
}

.product-animation {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    z-index: 1;
}

.product-image {
    width: 100%;
    height: auto;
    display: block;
    transition: opacity 0.3s ease;
}

.product-card:hover .product-image {
    opacity: 0.8;
}

.product-title {
    padding: 20px;
    margin: 0;
}

.product-title a {
    color: #333;
    text-decoration: none;
    font-size: 1.3rem;
    font-weight: bold;
    transition: color 0.3s ease;
}

.product-title a:hover {
    color: #CB5530;
}

/* Elite Park Section */
.elite-park-section {
    background-color: #000;
    padding: 80px 0;
    color: #fff;
}

.elite-park-logo {
    text-align: center;
    margin-bottom: 50px;
}

.elite-park-logo-img {
    max-width: 419px;
    height: auto;
}

.products-carousel {
    position: relative;
    max-width: 1000px;
    margin: 0 auto;
}

.carousel-container {
    display: flex;
    gap: 20px;
    overflow-x: auto;
    scroll-behavior: smooth;
    padding: 20px 0;
}

.carousel-slide {
    flex: 0 0 300px;
    transition: all 0.3s ease;
}

.carousel-image {
    width: 100%;
    height: 200px;
    background-size: cover;
    background-position: center;
    border-radius: 10px;
    transition: all 0.3s ease;
    opacity: 0.6;
    transform: scale(0.8);
}

.carousel-slide:hover .carousel-image {
    opacity: 1;
    transform: scale(1);
}

.carousel-pagination {
    text-align: center;
    margin-top: 30px;
}

/* Elite News Section */
.elite-news-section {
    background-color: #000;
    padding: 80px 0;
    color: #fff;
}

.elite-news-logo {
    text-align: center;
    margin-bottom: 50px;
}

.elite-news-logo-img {
    max-width: 419px;
    height: auto;
}

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

.news-card {
    background: #fff;
    border-radius: 10px;
    overflow: hidden;
    transition: transform 0.3s ease;
}

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

.news-image {
    position: relative;
    overflow: hidden;
}

.news-image img {
    width: 100%;
    height: 250px;
    object-fit: cover;
    transition: transform 0.3s ease;
}

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

.news-content {
    padding: 25px;
}

.news-title {
    margin-bottom: 15px;
}

.news-title a {
    color: #333;
    text-decoration: none;
    font-size: 1.2rem;
    font-weight: bold;
    line-height: 1.4;
    transition: color 0.3s ease;
}

.news-title a:hover {
    color: #CB5530;
}

.news-excerpt {
    margin-bottom: 20px;
    color: #666;
    line-height: 1.6;
}

.news-meta {
    display: flex;
    justify-content: space-between;
    color: #999;
    font-size: 0.9rem;
}

/* About Section */
.about-section {
    background-color: #f5f5f5;
    padding: 100px 0;
}

.about-content {
    text-align: center;
    max-width: 800px;
    margin: 0 auto;
}

.about-content h2 {
    font-size: 2.5rem;
    margin-bottom: 30px;
    color: #333;
}

.about-content > p {
    font-size: 1.2rem;
    line-height: 1.8;
    color: #666;
    margin-bottom: 50px;
}

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

.feature {
    text-align: center;
}

.feature h3 {
    font-size: 1.5rem;
    margin-bottom: 15px;
    color: #333;
}

.feature p {
    color: #666;
    line-height: 1.6;
}

/* CTA Section */
.cta-section {
    background: linear-gradient(180deg, #E78F3E 0%, #EEB645 100%);
    padding: 100px 0;
    text-align: center;
}

.cta-content h2 {
    font-size: 2.5rem;
    margin-bottom: 20px;
    color: #000;
}

.cta-content p {
    font-size: 1.2rem;
    margin-bottom: 40px;
    color: #000;
}

.cta-buttons {
    display: flex;
    gap: 20px;
    justify-content: center;
    flex-wrap: wrap;
}

.cta-button.primary {
    background-color: #000;
    color: #fff;
}

.cta-button.secondary {
    background-color: transparent;
    color: #000;
    border: 2px solid #000;
}

.cta-button.secondary:hover {
    background-color: #000;
    color: #fff;
}

/* Footer */
.footer {
    background-color: #000;
    color: #fff;
    padding: 50px 0 20px;
}

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

.footer-section h3 {
    margin-bottom: 20px;
    color: #CB5530;
}

.footer-section p,
.footer-section a {
    color: #ccc;
    text-decoration: none;
    line-height: 1.6;
}

.footer-section a:hover {
    color: #CB5530;
}

.footer-bottom {
    border-top: 1px solid #333;
    padding-top: 20px;
    text-align: center;
    color: #999;
}

/* Responsive Design */
@media (max-width: 1024px) {
    .header-row {
        flex-wrap: nowrap;
    }
    
    .nav-menu a {
        padding: 0 5px;
        font-size: 18px;
    }
}

@media (max-width: 768px) {
    .header-desktop {
        display: none;
    }
    
    .header-mobile {
        display: block;
    }
    
    .mobile-menu-toggle {
        display: block;
    }
    
    .hero-content h1 {
        font-size: 2.5rem;
    }
    
    .hero-content p {
        font-size: 1.1rem;
    }
    
    .best-sellers-grid {
        grid-template-columns: 1fr;
    }
    
    .news-grid {
        grid-template-columns: 1fr;
    }
    
    .about-features {
        grid-template-columns: 1fr;
    }
    
    .cta-buttons {
        flex-direction: column;
        align-items: center;
    }
    
    .carousel-container {
        gap: 10px;
    }
    
    .carousel-slide {
        flex: 0 0 250px;
    }
}

@media (max-width: 480px) {
    .container {
        padding: 0 15px;
    }
    
    .hero-content h1 {
        font-size: 2rem;
    }
    
    .section-title {
        font-size: 2rem;
    }
    
    .cta-content h2 {
        font-size: 2rem;
    }
}

/* Utility Classes */
.text-center {
    text-align: center;
}

.mb-20 {
    margin-bottom: 20px;
}

.mb-30 {
    margin-bottom: 30px;
}

.mb-50 {
    margin-bottom: 50px;
}

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

.fade-in-up {
    animation: fadeInUp 0.6s ease-out;
}

/* Hover Effects */
.hover-with-arrow a {
    position: relative;
    transition: color 0.3s ease;
}

.hover-with-arrow a:after {
    content: "\f105";
    font-family: "Font Awesome 5 Free";
    font-weight: 900;
    margin-left: 5px;
    opacity: 0;
    transition: 0.3s;
    position: absolute;
}

.hover-with-arrow a:hover:after {
    opacity: 1;
}

/* Scroll to Top Button */
.scroll-to-top {
    position: fixed;
    bottom: 30px;
    right: 30px;
    background: #CB5530;
    color: #fff;
    width: 50px;
    height: 50px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    text-decoration: none;
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
    z-index: 1000;
}

.scroll-to-top.visible {
    opacity: 1;
    visibility: visible;
}

.scroll-to-top:hover {
    background: #E78F3E;
    transform: translateY(-3px);
}

/* Games Page Styles */
.hp-banner-video {
    position: relative;
    width: 100%;
    height: auto;
    margin-top: 80px;
}

.hp-banner-video .elementor-video {
    width: 100%;
    height: auto;
    display: block;
}

/* Elementor Section Styles */
.elementor-section {
    position: relative;
}

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

.elementor-row {
    display: flex;
    flex-wrap: wrap;
    margin: 0 -15px;
}

.elementor-column {
    padding: 0 15px;
    position: relative;
}

.elementor-col-25 {
    flex: 0 0 25%;
    max-width: 25%;
}

.elementor-col-33 {
    flex: 0 0 33.333%;
    max-width: 33.333%;
}

.elementor-col-50 {
    flex: 0 0 50%;
    max-width: 50%;
}

.elementor-col-100 {
    flex: 0 0 100%;
    max-width: 100%;
}

.elementor-widget-wrap {
    position: relative;
    width: 100%;
    flex-wrap: wrap;
    align-content: flex-start;
}

.elementor-widget {
    position: relative;
    width: 100%;
}

.elementor-widget-container {
    margin: 0;
}

/* Divider Styles */
.elementor-divider {
    text-align: center;
    line-height: 0;
    height: 20px;
}

.elementor-divider-separator {
    display: inline-block;
    width: 100%;
    height: 1px;
    background-color: #ddd;
}

/* Search Form Styles */
.elementor-search-form {
    position: relative;
    max-width: 400px;
    margin: 0 auto;
}

.elementor-search-form__container {
    position: relative;
    display: flex;
    align-items: center;
    border: 2px solid #E78F3E;
    border-radius: 25px;
    overflow: hidden;
    background: #fff;
}

.elementor-search-form__input {
    flex: 1;
    padding: 12px 20px;
    border: none;
    outline: none;
    font-size: 16px;
    background: transparent;
}

.elementor-search-form__input::placeholder {
    color: #999;
    font-weight: 600;
    text-transform: uppercase;
}

.elementor-search-form__submit {
    background: #E78F3E;
    border: none;
    padding: 12px 20px;
    color: #fff;
    cursor: pointer;
    transition: background-color 0.3s ease;
}

.elementor-search-form__submit:hover {
    background: #CB5530;
}

.elementor-search-form__submit i {
    font-size: 16px;
}

.elementor-screen-only {
    position: absolute;
    left: -10000px;
    top: auto;
    width: 1px;
    height: 1px;
    overflow: hidden;
}

/* Image Widget Styles */
.elementor-image {
    text-align: center;
    margin-bottom: 20px;
}

.elementor-image img {
    max-width: 100%;
    height: auto;
    display: block;
    margin: 0 auto;
}

/* Heading Widget Styles */
.elementor-heading-title {
    font-family: 'Poppins', sans-serif;
    font-weight: 700;
    text-transform: uppercase;
    text-align: center;
    margin: 0;
    font-size: 18px;
}

.elementor-heading-title a {
    color: #333;
    text-decoration: none;
    transition: color 0.3s ease;
}

.elementor-heading-title a:hover {
    color: #E78F3E;
}

/* Responsive Styles for Games Page */
@media (max-width: 768px) {
    .elementor-col-33 {
        flex: 0 0 100%;
        max-width: 100%;
        margin-bottom: 30px;
    }
    
    .elementor-search-form {
        max-width: 100%;
    }
    
    .elementor-search-form__input {
        font-size: 14px;
        padding: 10px 15px;
    }
    
    .elementor-search-form__submit {
        padding: 10px 15px;
    }
    
    .elementor-heading-title {
        font-size: 16px;
    }
}

@media (max-width: 480px) {
    .elementor-container {
        padding: 0 10px;
    }
    
    .elementor-row {
        margin: 0 -10px;
    }
    
    .elementor-column {
        padding: 0 10px;
    }
    
    .elementor-search-form__input {
        font-size: 12px;
        padding: 8px 12px;
    }
    
    .elementor-search-form__submit {
        padding: 8px 12px;
    }
}

/* Hidden Elements */
.elementor-hidden-desktop {
    display: none;
}

.elementor-hidden-tablet {
    display: none;
}

.elementor-hidden-phone {
    display: none;
}

@media (max-width: 1024px) {
    .elementor-hidden-tablet {
        display: block;
    }
}

@media (max-width: 768px) {
    .elementor-hidden-phone {
        display: block;
    }
    
    .elementor-hidden-desktop,
    .elementor-hidden-tablet {
        display: none;
    }
}

/* Showrooms Page Styles */
.showrooms-welcome {
    text-align: center;
    padding: 60px 0;
    background: #f8f9fa;
}

.showrooms-welcome h2 {
    color: #333;
    font-size: 2.5rem;
    margin-bottom: 20px;
    font-weight: 700;
}

.showrooms-welcome p {
    color: #666;
    font-size: 1.2rem;
    max-width: 800px;
    margin: 0 auto;
    line-height: 1.6;
}

.showrooms-grid {
    padding: 80px 0;
    background: #fff;
}

.showroom-card {
    text-align: center;
    padding: 30px 20px;
    transition: all 0.3s ease;
    border-radius: 10px;
    margin-bottom: 30px;
}

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

.showroom-image {
    margin-bottom: 20px;
    border-radius: 10px;
    overflow: hidden;
    transition: all 0.3s ease;
}

.showroom-image img {
    width: 100%;
    height: auto;
    transition: transform 0.3s ease;
}

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

.showroom-title {
    font-size: 1.5rem;
    font-weight: 700;
    text-transform: uppercase;
    margin: 0;
}

.showroom-title a {
    color: #E78F3E;
    text-decoration: none;
    transition: color 0.3s ease;
}

.showroom-title a:hover {
    color: #CB5530;
}

/* Text Editor Widget Styles */
.elementor-text-editor {
    color: #666;
    font-size: 1.1rem;
    line-height: 1.6;
    margin-bottom: 20px;
}

.elementor-text-editor.elementor-clearfix::after {
    content: "";
    display: table;
    clear: both;
}

/* Responsive Styles for Showrooms Page */
@media (max-width: 768px) {
    .showrooms-welcome {
        padding: 40px 20px;
    }
    
    .showrooms-welcome h2 {
        font-size: 2rem;
    }
    
    .showrooms-welcome p {
        font-size: 1rem;
    }
    
    .showrooms-grid {
        padding: 40px 20px;
    }
    
    .showroom-card {
        padding: 20px 15px;
    }
    
    .showroom-title {
        font-size: 1.3rem;
    }
}

@media (max-width: 480px) {
    .showrooms-welcome h2 {
        font-size: 1.8rem;
    }
    
    .showrooms-welcome p {
        font-size: 0.9rem;
    }
    
    .showroom-title {
        font-size: 1.2rem;
    }
}

/* Park Page Styles */
.park-hero {
    text-align: center;
    padding: 60px 0;
    background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
}

.park-hero h2 {
    color: #333;
    font-size: 2.5rem;
    margin-bottom: 30px;
    font-weight: 700;
    text-transform: uppercase;
}

.park-hero p {
    color: #666;
    font-size: 1.2rem;
    max-width: 900px;
    margin: 0 auto;
    line-height: 1.8;
}

.elite-park-intro {
    text-align: center;
    padding: 40px 0;
    background: #fff;
}

.elite-park-intro h2 {
    color: #E78F3E;
    font-size: 2.2rem;
    margin-bottom: 20px;
    font-weight: 700;
}

.park-description {
    padding: 40px 0;
    background: #f8f9fa;
}

.park-description p {
    color: #555;
    font-size: 1.1rem;
    line-height: 1.7;
    max-width: 1000px;
    margin: 0 auto 20px;
    text-align: center;
}

.exergaming-section {
    text-align: center;
    padding: 40px 0;
    background: #fff;
}

.exergaming-section h3 {
    color: #CB5530;
    font-size: 1.8rem;
    margin-bottom: 20px;
    font-weight: 700;
    text-transform: uppercase;
}

.exergaming-section p {
    color: #666;
    font-size: 1.1rem;
    max-width: 800px;
    margin: 0 auto 30px;
    line-height: 1.6;
}

.exergaming-image {
    max-width: 600px;
    margin: 0 auto;
}

.exergaming-image img {
    width: 100%;
    height: auto;
    border-radius: 10px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
}

.park-products {
    padding: 60px 0;
    background: #fff;
}

.park-products-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    max-width: 1200px;
    margin: 0 auto;
}

.park-product-card {
    background: #fff;
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 5px 20px rgba(0,0,0,0.1);
    transition: all 0.3s ease;
    text-align: center;
}

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

.park-product-image {
    position: relative;
    overflow: hidden;
    height: 200px;
}

.park-product-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s ease;
}

.park-product-card:hover .park-product-image img {
    transform: scale(1.1);
}

.park-product-title {
    padding: 20px;
}

.park-product-title h4 {
    margin: 0;
    font-size: 1.2rem;
    font-weight: 700;
    text-transform: uppercase;
}

.park-product-title a {
    color: #E78F3E;
    text-decoration: none;
    transition: color 0.3s ease;
}

.park-product-title a:hover {
    color: #CB5530;
}

/* Responsive Styles for Park Page */
@media (max-width: 768px) {
    .park-hero h2 {
        font-size: 2rem;
    }
    
    .park-hero p {
        font-size: 1rem;
        padding: 0 20px;
    }
    
    .elite-park-intro h2 {
        font-size: 1.8rem;
    }
    
    .park-description p {
        font-size: 1rem;
        padding: 0 20px;
    }
    
    .exergaming-section h3 {
        font-size: 1.5rem;
    }
    
    .exergaming-section p {
        font-size: 1rem;
        padding: 0 20px;
    }
    
    .park-products-grid {
        grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
        gap: 20px;
        padding: 0 20px;
    }
    
    .park-product-image {
        height: 150px;
    }
    
    .park-product-title h4 {
        font-size: 1.1rem;
    }
}

@media (max-width: 480px) {
    .park-hero {
        padding: 40px 20px;
    }
    
    .park-hero h2 {
        font-size: 1.8rem;
    }
    
    .elite-park-intro h2 {
        font-size: 1.6rem;
    }
    
    .exergaming-section h3 {
        font-size: 1.3rem;
    }
    
    .park-products-grid {
        grid-template-columns: 1fr;
        gap: 15px;
    }
    
    .park-product-image {
        height: 120px;
    }
    
    .park-product-title {
        padding: 15px;
    }
    
    .park-product-title h4 {
        font-size: 1rem;
    }
}

/* Shop Page Styles */
.shop-header {
    background: #f8f9fa;
    padding: 40px 0;
    margin-top: 80px;
}

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

.woocommerce-breadcrumb {
    margin-bottom: 20px;
    font-size: 14px;
    color: #666;
}

.woocommerce-breadcrumb a {
    color: #E78F3E;
    text-decoration: none;
}

.woocommerce-breadcrumb a:hover {
    color: #CB5530;
}

.woocommerce-products-header__title {
    font-size: 2.5rem;
    font-weight: 700;
    color: #333;
    margin: 0;
}

.shop-content {
    padding: 60px 0;
    background: #fff;
}

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

.shop-controls {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 40px;
    padding: 20px 0;
    border-bottom: 1px solid #eee;
}

.woocommerce-result-count {
    margin: 0;
    color: #666;
    font-size: 14px;
}

.woocommerce-ordering {
    margin: 0;
}

.woocommerce-ordering select {
    padding: 10px 15px;
    border: 1px solid #ddd;
    border-radius: 4px;
    background: #fff;
    font-size: 14px;
    color: #333;
}

.products {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
    gap: 30px;
    list-style: none;
    margin: 0;
    padding: 0;
}

.product {
    background: #fff;
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 5px 20px rgba(0,0,0,0.1);
    transition: all 0.3s ease;
    text-align: center;
}

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

.product-thumbnail {
    position: relative;
    overflow: hidden;
    height: 250px;
}

.product-thumbnail img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s ease;
}

.product:hover .product-thumbnail img {
    transform: scale(1.1);
}

.product-summary {
    padding: 20px;
}

.product-category {
    display: block;
    font-size: 12px;
    color: #E78F3E;
    text-transform: uppercase;
    font-weight: 600;
    margin-bottom: 10px;
    letter-spacing: 1px;
}

.product-link {
    text-decoration: none;
    color: inherit;
}

.product-title {
    font-size: 1.2rem;
    font-weight: 700;
    color: #333;
    margin: 0 0 15px 0;
    line-height: 1.3;
}

.product-title:hover {
    color: #E78F3E;
}

.product-button {
    display: inline-block;
    background: #E78F3E;
    color: #fff;
    padding: 12px 25px;
    border-radius: 5px;
    text-decoration: none;
    font-weight: 600;
    text-transform: uppercase;
    font-size: 14px;
    transition: all 0.3s ease;
    border: none;
    cursor: pointer;
}

.product-button:hover {
    background: #CB5530;
    color: #fff;
    transform: translateY(-2px);
}

/* Pagination */
.woocommerce-pagination {
    margin-top: 60px;
    text-align: center;
}

.page-numbers {
    display: inline-flex;
    list-style: none;
    margin: 0;
    padding: 0;
    gap: 5px;
}

.page-numbers li {
    margin: 0;
}

.page-numbers a,
.page-numbers span {
    display: inline-block;
    padding: 10px 15px;
    border: 1px solid #ddd;
    border-radius: 4px;
    text-decoration: none;
    color: #333;
    font-weight: 600;
    transition: all 0.3s ease;
}

.page-numbers a:hover {
    background: #E78F3E;
    color: #fff;
    border-color: #E78F3E;
}

.page-numbers .current {
    background: #E78F3E;
    color: #fff;
    border-color: #E78F3E;
}

/* Responsive Styles for Shop Page */
@media (max-width: 768px) {
    .shop-header {
        padding: 30px 0;
    }
    
    .woocommerce-products-header__title {
        font-size: 2rem;
    }
    
    .shop-controls {
        flex-direction: column;
        gap: 15px;
        align-items: flex-start;
    }
    
    .products {
        grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
        gap: 20px;
    }
    
    .product-thumbnail {
        height: 200px;
    }
    
    .product-summary {
        padding: 15px;
    }
    
    .product-title {
        font-size: 1.1rem;
    }
    
    .product-button {
        padding: 10px 20px;
        font-size: 13px;
    }
}

@media (max-width: 480px) {
    .shop-header {
        padding: 20px 0;
    }
    
    .woocommerce-products-header__title {
        font-size: 1.8rem;
    }
    
    .shop-content {
        padding: 40px 0;
    }
    
    .products {
        grid-template-columns: 1fr;
        gap: 15px;
    }
    
    .product-thumbnail {
        height: 180px;
    }
    
    .product-summary {
        padding: 12px;
    }
    
    .product-title {
        font-size: 1rem;
    }
    
    .product-button {
        padding: 8px 16px;
        font-size: 12px;
    }
    
    .page-numbers a,
    .page-numbers span {
        padding: 8px 12px;
        font-size: 14px;
    }
}

/* News (Blog) page styles */
.unis-news-list {
  display: flex;
  flex-wrap: wrap;
  gap: 32px;
  margin: 40px 0;
  justify-content: center;
}
.unis-news-list .news-item {
  background: #fff;
  border-radius: 12px;
  box-shadow: 0 2px 16px rgba(0,0,0,0.08);
  overflow: hidden;
  max-width: 500px;
  width: 100%;
  display: flex;
  flex-direction: row;
  min-height: 220px;
}
.unis-news-list .news-thumb {
  flex: 0 0 180px;
  max-width: 180px;
  overflow: hidden;
  display: flex;
  align-items: center;
  background: #f7f7f7;
}
.unis-news-list .news-thumb img {
  width: 100%;
  height: auto;
  display: block;
}
.unis-news-list .news-content {
  padding: 24px 20px 20px 20px;
  display: flex;
  flex-direction: column;
  justify-content: center;
}
.unis-news-list .news-title {
  font-size: 1.2rem;
  margin: 0 0 10px 0;
  font-weight: 700;
  color: #1a1a1a;
}
.unis-news-list .news-title a {
  color: #1a1a1a;
  text-decoration: none;
  transition: color 0.2s;
}
.unis-news-list .news-title a:hover {
  color: #e60012;
}
.unis-news-list .news-meta {
  font-size: 0.95rem;
  color: #888;
  margin-bottom: 10px;
}
.unis-news-list .read-more .ast-button {
  display: inline-block;
  background: linear-gradient(90deg, #e60012 0%, #ff9900 100%);
  color: #fff;
  border-radius: 20px;
  padding: 6px 22px;
  font-size: 1rem;
  font-weight: 600;
  text-decoration: none;
  margin-top: 10px;
  transition: background 0.2s;
  border: none;
}
.unis-news-list .read-more .ast-button:hover {
  background: linear-gradient(90deg, #ff9900 0%, #e60012 100%);
  color: #fff;
}
@media (max-width: 700px) {
  .unis-news-list {
    flex-direction: column;
    gap: 20px;
  }
  .unis-news-list .news-item {
    flex-direction: column;
    max-width: 100%;
    min-height: unset;
  }
  .unis-news-list .news-thumb {
    max-width: 100%;
    width: 100%;
    justify-content: center;
  }
  .unis-news-list .news-content {
    padding: 18px 12px 16px 12px;
  }
}

/* Support page styles */
.unis-support-page {
  max-width: 1200px;
  margin: 0 auto;
  padding: 40px 20px;
}

.unis-support-page .support-header {
  text-align: center;
  margin-bottom: 50px;
}

.unis-support-page .support-header h1 {
  font-size: 2.5rem;
  color: #1a1a1a;
  margin: 0;
  font-weight: 700;
}

.unis-support-page .contact-info-section {
  margin-bottom: 60px;
}

.unis-support-page .contact-info-section h2 {
  text-align: center;
  font-size: 2rem;
  color: #1a1a1a;
  margin-bottom: 40px;
  font-weight: 600;
}

.unis-support-page .contact-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
  gap: 30px;
  margin-bottom: 40px;
}

.unis-support-page .contact-card {
  background: #fff;
  border-radius: 12px;
  padding: 30px;
  box-shadow: 0 4px 20px rgba(0,0,0,0.1);
  border-left: 4px solid #e60012;
}

.unis-support-page .contact-card h5 {
  font-size: 1.1rem;
  color: #1a1a1a;
  margin: 0 0 20px 0;
  font-weight: 600;
}

.unis-support-page .contact-list {
  list-style: none;
  padding: 0;
  margin: 0;
}

.unis-support-page .contact-list li {
  margin-bottom: 12px;
  display: flex;
  align-items: center;
  gap: 10px;
}

.unis-support-page .contact-list li i {
  color: #e60012;
  width: 20px;
  text-align: center;
}

.unis-support-page .contact-list li a {
  color: #1a1a1a;
  text-decoration: none;
  transition: color 0.2s;
}

.unis-support-page .contact-list li a:hover {
  color: #e60012;
}

.unis-support-page .contact-form-section {
  background: #f8f9fa;
  border-radius: 12px;
  padding: 40px;
}

.unis-support-page .contact-form-section h2 {
  text-align: center;
  font-size: 2rem;
  color: #1a1a1a;
  margin-bottom: 30px;
  font-weight: 600;
}

.unis-support-page .contact-form-wrapper {
  max-width: 800px;
  margin: 0 auto;
}

.unis-support-page .unis-contact-form {
  background: #fff;
  padding: 40px;
  border-radius: 12px;
  box-shadow: 0 4px 20px rgba(0,0,0,0.1);
}

.unis-support-page .form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
  margin-bottom: 20px;
}

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

.unis-support-page .form-group label {
  display: block;
  margin-bottom: 8px;
  font-weight: 600;
  color: #1a1a1a;
}

.unis-support-page .form-group input,
.unis-support-page .form-group select,
.unis-support-page .form-group textarea {
  width: 100%;
  padding: 12px 16px;
  border: 2px solid #e1e5e9;
  border-radius: 8px;
  font-size: 1rem;
  transition: border-color 0.2s;
  box-sizing: border-box;
}

.unis-support-page .form-group input:focus,
.unis-support-page .form-group select:focus,
.unis-support-page .form-group textarea:focus {
  outline: none;
  border-color: #e60012;
}

.unis-support-page .form-group textarea {
  resize: vertical;
  min-height: 120px;
}

.unis-support-page .form-submit {
  text-align: center;
  margin-top: 30px;
}

.unis-support-page .submit-btn {
  background: linear-gradient(90deg, #e60012 0%, #ff9900 100%);
  color: #fff;
  border: none;
  padding: 15px 40px;
  font-size: 1.1rem;
  font-weight: 600;
  border-radius: 25px;
  cursor: pointer;
  transition: background 0.2s;
}

.unis-support-page .submit-btn:hover {
  background: linear-gradient(90deg, #ff9900 0%, #e60012 100%);
}

@media (max-width: 768px) {
  .unis-support-page {
    padding: 20px 15px;
  }
  
  .unis-support-page .support-header h1 {
    font-size: 2rem;
  }
  
  .unis-support-page .contact-info-section h2,
  .unis-support-page .contact-form-section h2 {
    font-size: 1.5rem;
  }
  
  .unis-support-page .contact-grid {
    grid-template-columns: 1fr;
    gap: 20px;
  }
  
  .unis-support-page .contact-card {
    padding: 20px;
  }
  
  .unis-support-page .contact-form-section {
    padding: 20px;
  }
  
  .unis-support-page .unis-contact-form {
    padding: 20px;
  }
  
  .unis-support-page .form-row {
    grid-template-columns: 1fr;
    gap: 0;
  }
}

/* Product page styles */
.unis-product-page {
  max-width: 1200px;
  margin: 0 auto;
  padding: 40px 20px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 40px;
  margin-top: 80px; /* Additional margin for product pages */
}

.unis-product-page .product-gallery {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.unis-product-page .main-image {
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 4px 20px rgba(0,0,0,0.1);
}

.unis-product-page .main-image img {
  width: 100%;
  height: auto;
  display: block;
}

.unis-product-page .additional-images {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
  gap: 15px;
}

.unis-product-page .additional-images img {
  width: 100%;
  height: auto;
  border-radius: 8px;
  box-shadow: 0 2px 10px rgba(0,0,0,0.08);
  transition: transform 0.3s ease;
}

.unis-product-page .additional-images img:hover {
  transform: scale(1.05);
}

.unis-product-page .product-info {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.unis-product-page .breadcrumb {
  font-size: 14px;
  color: #666;
  margin-bottom: 10px;
}

.unis-product-page .breadcrumb a {
  color: #eeb647;
  text-decoration: none;
}

.unis-product-page .breadcrumb a:hover {
  text-decoration: underline;
}

.unis-product-page .product-title {
  font-size: 2.5rem;
  color: #1a1a1a;
  margin: 0;
  font-weight: 700;
}

.unis-product-page .product-description {
  line-height: 1.6;
}

.unis-product-page .product-video {
  margin: 20px 0;
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 4px 20px rgba(0,0,0,0.1);
}

.unis-product-page .product-meta {
  padding: 15px 0;
  border-top: 1px solid #eee;
  border-bottom: 1px solid #eee;
}

.unis-product-page .product-meta .category {
  font-size: 14px;
  color: #666;
}

.unis-product-page .product-meta .category a {
  color: #eeb647;
  text-decoration: none;
}

.unis-product-page .product-tabs {
  margin-top: 30px;
}

.unis-product-page .tabs-nav {
  display: flex;
  list-style: none;
  margin: 0;
  padding: 0;
  border-bottom: 2px solid #eee;
  gap: 0;
}

.unis-product-page .tabs-nav li {
  margin: 0;
}

.unis-product-page .tabs-nav a {
  display: block;
  padding: 15px 25px;
  text-decoration: none;
  color: #666;
  font-weight: 500;
  border-bottom: 2px solid transparent;
  transition: all 0.3s ease;
}

.unis-product-page .tabs-nav a:hover,
.unis-product-page .tabs-nav a.active {
  color: #eeb647;
  border-bottom-color: #eeb647;
}

.unis-product-page .tab-content {
  padding: 30px 0;
}

.unis-product-page .tab-panel {
  display: none;
  line-height: 1.6;
}

.unis-product-page .tab-panel.active {
  display: block;
}

.unis-product-page .tab-panel ul {
  margin: 15px 0;
  padding-left: 20px;
}

.unis-product-page .tab-panel li {
  margin-bottom: 8px;
}

.unis-product-page .ast-button {
  display: inline-block;
  background: linear-gradient(135deg, #eeb647 0%, #e78f3e 100%);
  color: #fff;
  padding: 12px 30px;
  border-radius: 25px;
  text-decoration: none;
  font-weight: 600;
  transition: all 0.3s ease;
  border: none;
  cursor: pointer;
}

.unis-product-page .ast-button:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 25px rgba(238, 182, 71, 0.3);
}

.related-products {
  max-width: 1200px;
  margin: 60px auto 0;
  padding: 0 20px;
}

.related-products h2 {
  text-align: center;
  font-size: 2rem;
  color: #1a1a1a;
  margin-bottom: 40px;
  font-weight: 600;
}

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

.related-products .product-card {
  background: #fff;
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 4px 20px rgba(0,0,0,0.08);
  transition: transform 0.3s ease;
}

.related-products .product-card:hover {
  transform: translateY(-5px);
}

.related-products .product-image {
  overflow: hidden;
}

.related-products .product-image img {
  width: 100%;
  height: 200px;
  object-fit: cover;
  transition: transform 0.3s ease;
}

.related-products .product-card:hover .product-image img {
  transform: scale(1.05);
}

.related-products .product-details {
  padding: 20px;
}

.related-products .product-details .category {
  font-size: 12px;
  color: #eeb647;
  text-transform: uppercase;
  font-weight: 600;
  letter-spacing: 0.5px;
}

.related-products .product-details h3 {
  margin: 8px 0 15px 0;
  font-size: 1.2rem;
  color: #1a1a1a;
}

.related-products .product-details h3 a {
  color: inherit;
  text-decoration: none;
}

.related-products .read-more-btn {
  display: inline-block;
  background: linear-gradient(135deg, #eeb647 0%, #e78f3e 100%);
  color: #fff;
  padding: 8px 20px;
  border-radius: 20px;
  text-decoration: none;
  font-size: 14px;
  font-weight: 500;
  transition: all 0.3s ease;
}

.related-products .read-more-btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(238, 182, 71, 0.3);
}

/* Responsive design for product pages */
@media (max-width: 768px) {
  .unis-product-page {
    grid-template-columns: 1fr;
    gap: 30px;
    padding: 20px;
  }
  
  .unis-product-page .product-title {
    font-size: 2rem;
  }
  
  .unis-product-page .tabs-nav {
    flex-wrap: wrap;
  }
  
  .unis-product-page .tabs-nav a {
    padding: 12px 15px;
    font-size: 14px;
  }
  
  .related-products .products-grid {
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 20px;
  }
}

@media (max-width: 480px) {
  .unis-product-page {
    padding: 15px;
  }
  
  .unis-product-page .product-title {
    font-size: 1.8rem;
  }
  
  .unis-product-page .additional-images {
    grid-template-columns: repeat(2, 1fr);
  }
  
  .related-products .products-grid {
    grid-template-columns: 1fr;
  }
} 