:root {
    --primary-blue: #305cde;
    --dark-blue: #2347b8;
    --light-gray: #f8f9fa;
    --dark-gray: #333;
}

body {
    font-family: 'Open Sans', sans-serif;
    margin: 0;
    padding: 0;
}

.audiowide {
    font-family: 'Audiowide', sans-serif;
}

/* Header Styles */
.main-header {
  background-color: var(--primary-blue);
  box-shadow: 0 2px 4px rgba(0,0,0,0.1);
  position: sticky;
  z-index: 99999;
  top: 0;
}

.navbar-brand {
    color: white !important;
    font-weight: bold;
    text-decoration: none;
}

.navbar-brand:hover {
    color: #e0e0e0 !important;
}

.navbar-nav .nav-link {
    color: white !important;
    font-family: 'Audiowide', sans-serif;
    font-size: 0.9rem;
    margin: 0 10px;
    transition: all 0.3s ease;
}

.navbar-nav .nav-link:hover {
    color: #e0e0e0 !important;
    transform: translateY(-1px);
}

.dropdown-menu {
    background-color: white;
    border: none;
    border-radius: 8px;
    box-shadow: 0 4px 12px rgba(0,0,0,0.15);
    margin-top: 5px;
}

.dropdown-item {
    font-family: 'Open Sans', sans-serif;
    color: var(--dark-gray);
    padding: 8px 20px;
    transition: background-color 0.3s ease;
}

.dropdown-item:hover {
    background-color: var(--light-gray);
    color: var(--primary-blue);
}

.search-container {
    position: relative;
}

.search-toggle {
    background: none;
    border: none;
    color: white;
    font-size: 1.2rem;
    cursor: pointer;
    transition: color 0.3s ease;
}

.search-toggle:hover {
    color: #e0e0e0;
}

.search-form {
    position: absolute;
    top: 100%;
    right: 0;
    background: white;
    border-radius: 8px;
    box-shadow: 0 4px 12px rgba(0,0,0,0.15);
    padding: 15px;
    min-width: 300px;
    display: none;
    z-index: 1000;
}

.search-form.show {
    display: block;
    animation: slideDown 0.3s ease;
}

@keyframes slideDown {
    from { opacity: 0; transform: translateY(-10px); }
    to { opacity: 1; transform: translateY(0); }
}

.search-input {
    border: 2px solid var(--light-gray);
    border-radius: 6px;
    padding: 10px 15px;
    font-size: 0.95rem;
    transition: border-color 0.3s ease;
}

.search-input:focus {
    border-color: var(--primary-blue);
    box-shadow: 0 0 0 0.2rem rgba(48, 92, 222, 0.25);
}

.search-btn {
    background-color: var(--primary-blue);
    border: none;
    color: white;
    border-radius: 6px;
    padding: 10px 20px;
    transition: background-color 0.3s ease;
}

.search-btn:hover {
    background-color: var(--dark-blue);
}

/* Main Content */
.main-content {
    min-height: 60vh;
    padding: 0;
}

/* Footer Styles */
.main-footer {
    background-color: white;
    color: var(--dark-gray);
    padding: 50px 0 20px;
    border-top: 1px solid #e0e0e0;
}

.footer-heading {
    font-family: 'Audiowide', sans-serif;
    font-size: 1.1rem;
    margin-bottom: 20px;
    color: var(--primary-blue);
}

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

.footer-links li {
    margin-bottom: 8px;
}

.footer-links a {
    color: var(--dark-gray);
    text-decoration: none;
    font-size: 0.9rem;
    transition: color 0.3s ease;
}

.footer-links a:hover {
    color: var(--primary-blue);
}

.footer-contact p {
    margin-bottom: 8px;
    font-size: 0.9rem;
}

.footer-contact a {
    color: var(--primary-blue);
    text-decoration: none;
    font-weight: 600;
}

.footer-contact a:hover {
    text-decoration: underline;
}

.social-links {
    display: flex;
    gap: 15px;
    margin-top: 20px;
}

.social-links a {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    background-color: var(--primary-blue);
    color: white;
    border-radius: 50%;
    text-decoration: none;
    transition: all 0.3s ease;
}

.social-links a:hover {
    background-color: var(--dark-blue);
    transform: translateY(-2px);
}

.footer-bottom {
    border-top: 1px solid #e0e0e0;
    padding: 20px 0;
    margin-top: 40px;
    font-size: 0.85rem;
    color: #666;
}

.footer-bottom a {
    color: var(--primary-blue);
    text-decoration: none;
}

.footer-bottom a:hover {
    text-decoration: underline;
}

/* Responsive adjustments */
@media (max-width: 992px) {
    .navbar-nav .nav-link {
        margin: 5px 0;
    }
    
    .search-form {
        position: fixed;
        top: 70px;
        left: 15px;
        right: 15px;
        min-width: auto;
    }
}
.navbar-brand img {
    width: 140px;
}

/* Homepage Hero Section */
.hero-section {
    position: relative;
    height: 80vh;
    min-height: 600px;
    overflow: hidden;
    display: flex;
    align-items: center;
    justify-content: center;
}

.hero-video {
    position: absolute;
    top: 50%;
    left: 50%;
    min-width: 100%;
    min-height: 100%;
    width: auto;
    height: auto;
    transform: translateX(-50%) translateY(-50%);
    z-index: 1;
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.5);
    z-index: 2;
}

.hero-content {
    position: relative;
    z-index: 3;
    text-align: center;
    color: white;
}

.hero-welcome {
    font-family: 'Open Sans', sans-serif;
    font-size: 1.2rem;
    font-weight: 300;
    margin-bottom: 10px;
    opacity: 0.9;
}

.hero-title {
    font-family: 'Audiowide', sans-serif;
    font-size: 4rem;
    font-weight: 400;
    margin-bottom: 15px;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.3);
}

.hero-subtitle {
    font-family: 'Audiowide', sans-serif;
    font-size: 2rem;
    font-weight: 400;
    margin-bottom: 30px;
    opacity: 0.95;
    text-shadow: 1px 1px 3px rgba(0, 0, 0, 0.3);
}

.hero-btn {
    background-color: var(--primary-blue);
    border: none;
    color: white;
    font-family: 'Audiowide', sans-serif;
    font-size: 1rem;
    padding: 15px 30px;
    border-radius: 6px;
    text-decoration: none;
    transition: all 0.3s ease;
    display: inline-block;
    letter-spacing: 0.5px;
}

.hero-btn:hover {
    background-color: var(--dark-blue);
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(48, 92, 222, 0.3);
    color: white;
}

/* Latest Treasures Section */
.treasures-section {
    background-color: white;
    padding: 80px 0;
}

.section-title {
    font-family: 'Audiowide', sans-serif;
    font-size: 2.5rem;
    color: var(--primary-blue);
    margin-bottom: 20px;
}

.section-subtitle {
    font-family: 'Audiowide', sans-serif;
    font-size: 1.8rem;
    color: var(--dark-gray);
    margin-bottom: 30px;
}

.section-text {
    font-family: 'Open Sans', sans-serif;
    font-size: 1.1rem;
    color: #666;
    line-height: 1.6;
    margin-bottom: 40px;
}

.section-btn {
    background-color: var(--primary-blue);
    border: none;
    color: white;
    font-family: 'Audiowide', sans-serif;
    font-size: 1rem;
    padding: 12px 25px;
    border-radius: 6px;
    text-decoration: none;
    transition: all 0.3s ease;
    display: inline-block;
}

.section-btn:hover {
    background-color: var(--dark-blue);
    transform: translateY(-1px);
    box-shadow: 0 3px 8px rgba(48, 92, 222, 0.2);
    color: white;
}

/* Product Categories Section */
.categories-section {
    background-color: #fafafa;
    padding: 80px 0;
}

.category-card {
    display: block;
    text-decoration: none;
    border-radius: 8px;
    overflow: hidden;
    transition: all 0.3s ease;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
}

.category-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.15);
    text-decoration: none;
}

.category-image {
    position: relative;
    height: 250px;
    background-size: cover;
    background-position: center;
    background-color: #f0f0f0;
    display: flex;
    align-items: center;
    justify-content: center;
}

.category-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(45deg, rgba(48, 92, 222, 0.8), rgba(35, 71, 184, 0.8));
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0.85;
    transition: opacity 0.3s ease;
}

.category-card:hover .category-overlay {
    opacity: 0.95;
}

.category-title {
    font-family: 'Audiowide', sans-serif;
    color: white;
    font-size: 1.3rem;
    text-align: center;
    margin: 0;
    text-shadow: 1px 1px 3px rgba(0, 0, 0, 0.3);
    padding: 1rem;
}

.hidden-category {
    opacity: 0;
    transition: opacity 0.3s ease;
}

/* Our Story Section */
.story-section {
    background-color: #1a1a1a;
    color: white;
    padding: 80px 0;
}

.story-title {
    font-family: 'Audiowide', sans-serif;
    font-size: 2.5rem;
    color: white;
    margin-bottom: 30px;
}

.story-text {
    font-family: 'Open Sans', sans-serif;
    font-size: 1.1rem;
    color: #e0e0e0;
    line-height: 1.7;
    margin-bottom: 40px;
}

.story-btn {
    background-color: var(--primary-blue);
    border: none;
    color: white;
    font-family: 'Audiowide', sans-serif;
    font-size: 1rem;
    padding: 12px 25px;
    border-radius: 6px;
    text-decoration: none;
    transition: all 0.3s ease;
    display: inline-block;
}

.story-btn:hover {
    background-color: var(--dark-blue);
    transform: translateY(-1px);
    box-shadow: 0 3px 8px rgba(48, 92, 222, 0.3);
    color: white;
}

.story-image {
    text-align: center;
}

.story-image img {
  border-radius: 8px;
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.3);
  max-width: 100%;
  height: auto;
  height: 30rem;
  width: 100%;
  object-fit: cover;
}

/* Responsive Design */
@media (max-width: 768px) {
    .hero-title {
        font-size: 2.5rem;
    }
    
    .hero-subtitle {
        font-size: 1.3rem;
    }
    
    .section-title {
        font-size: 2rem;
    }
    
    .section-subtitle {
        font-size: 1.4rem;
    }
    
    .story-title {
        font-size: 2rem;
    }
    
    .category-image {
        height: 200px;
    }
    
    .category-title {
        font-size: 1.1rem;
    }
}

@media (max-width: 480px) {
    .hero-title {
        font-size: 2rem;
    }
    
    .hero-subtitle {
        font-size: 1.1rem;
    }
    
    .treasures-section,
    .categories-section,
    .story-section {
        padding: 60px 0;
    }
}

/* About Page Hero Section */
.about-hero {
    position: relative;
    height: 60vh;
    min-height: 400px;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
}

.about-hero-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    z-index: 1;
}

.about-hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.5);
    z-index: 2;
}

.about-hero-content {
    position: relative;
    z-index: 3;
    text-align: center;
    color: white;
}

.about-hero-subtitle {
    font-family: 'Open Sans', sans-serif;
    font-size: 1.2rem;
    font-weight: 400;
    margin-bottom: 15px;
    opacity: 0.9;
}

.about-hero-title {
    font-family: 'Audiowide', sans-serif;
    font-size: 3rem;
    font-weight: 400;
    margin: 0;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.3);
}

/* About Content Sections */
.about-story-section,
.about-birth-section {
    background-color: white;
    padding: 80px 0;
}

.about-content-container {
    background-color: #f8f9fa;
    padding: 50px;
    border-radius: 10px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.05);
}

.about-section-title {
    font-family: 'Audiowide', sans-serif;
    font-size: 2.5rem;
    color: var(--primary-blue);
    margin-bottom: 30px;
}

.about-subsection-title {
    font-family: 'Audiowide', sans-serif;
    font-size: 1.8rem;
    color: var(--dark-gray);
    margin: 40px 0 20px 0;
}

.about-text {
    font-family: 'Open Sans', sans-serif;
    font-size: 1.1rem;
    color: #555;
    line-height: 1.7;
    margin-bottom: 25px;
}

.about-principles-list {
    list-style: none;
    padding: 0;
    margin: 30px 0;
}

.about-principles-list li {
    font-family: 'Open Sans', sans-serif;
    font-size: 1.1rem;
    color: #555;
    line-height: 1.7;
    margin-bottom: 20px;
    padding-left: 30px;
    position: relative;
}

.about-principles-list li::before {
    content: "●";
    color: var(--primary-blue);
    font-size: 1.5rem;
    position: absolute;
    left: 0;
    top: -2px;
}

.about-principles-list li strong {
    color: var(--primary-blue);
    font-weight: 600;
}

/* Image Carousel Section */
.about-carousel-section {
    background-color: white;
    padding: 60px 0;
    overflow: hidden;
}

.about-carousel-container {
    position: relative;
    width: 100%;
    max-width: 1400px;
    margin: 0 auto;
}

.about-carousel {
    overflow: hidden;
    width: 100%;
}

.carousel-track {
    display: flex;
    transition: transform 0.5s ease;
    width: 100%;
}

.carousel-slide {
    flex: 0 0 33.333%;
    padding: 0 15px;
}

.carousel-image {
    width: 100%;
    height: 300px;
    object-fit: cover;
    border-radius: 10px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease;
}

.carousel-image:hover {
    transform: scale(1.02);
}

.carousel-nav {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background-color: var(--primary-blue);
    color: white;
    border: none;
    width: 50px;
    height: 50px;
    border-radius: 50%;
    font-size: 1.2rem;
    cursor: pointer;
    transition: all 0.3s ease;
    z-index: 10;
}

.carousel-nav:hover {
    background-color: var(--dark-blue);
    transform: translateY(-50%) scale(1.1);
}

.carousel-prev {
    left: -25px;
}

.carousel-next {
    right: -25px;
}

/* Responsive Design */
@media (max-width: 992px) {
    .about-content-container {
        padding: 40px 30px;
    }
    
    .about-section-title {
        font-size: 2rem;
    }
    
    .about-subsection-title {
        font-size: 1.5rem;
    }
    
    .carousel-slide {
        flex: 0 0 50%;
    }
    
    .carousel-nav {
        width: 45px;
        height: 45px;
        font-size: 1rem;
    }
    
    .carousel-prev {
        left: 10px;
    }
    
    .carousel-next {
        right: 10px;
    }
}

@media (max-width: 768px) {
    .about-hero-title {
        font-size: 2.2rem;
    }
    
    .about-hero-subtitle {
        font-size: 1rem;
    }
    
    .about-story-section,
    .about-birth-section {
        padding: 60px 0;
    }
    
    .about-content-container {
        padding: 30px 20px;
    }
    
    .about-section-title {
        font-size: 1.8rem;
    }
    
    .about-text {
        font-size: 1rem;
    }
    
    .carousel-slide {
        flex: 0 0 100%;
        padding: 0 10px;
    }
    
    .carousel-image {
        height: 250px;
    }
    
    .carousel-nav {
        width: 40px;
        height: 40px;
        font-size: 0.9rem;
    }
}

@media (max-width: 480px) {
    .about-hero {
        height: 50vh;
        min-height: 350px;
    }
    
    .about-hero-title {
        font-size: 1.8rem;
    }
    
    .about-content-container {
        margin: 0 15px;
        padding: 25px 15px;
    }
    
    .about-principles-list li {
        padding-left: 25px;
        font-size: 1rem;
    }
}

/* Contact Page Hero Section */
.contact-hero {
    position: relative;
    height: 60vh;
    min-height: 400px;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
}

.contact-hero-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    z-index: 1;
}

.contact-hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.5);
    z-index: 2;
}

.contact-hero-content {
    position: relative;
    z-index: 3;
    text-align: center;
    color: white;
}

.contact-hero-subtitle {
    font-family: 'Open Sans', sans-serif;
    font-size: 1.2rem;
    font-weight: 400;
    margin-bottom: 15px;
    opacity: 0.9;
}

.contact-hero-title {
    font-family: 'Audiowide', sans-serif;
    font-size: 3rem;
    font-weight: 400;
    margin: 0;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.3);
}

/* Contact Introduction Section */
.contact-intro-section {
    background-color: white;
    padding: 80px 0;
}

.contact-intro-container {
    text-align: center;
}

.contact-intro-text {
    font-family: 'Open Sans', sans-serif;
    font-size: 1.2rem;
    color: #555;
    line-height: 1.7;
    margin-bottom: 30px;
}

/* Contact Information Pods */
.contact-info-section {
    background-color: #f8f9fa;
    padding: 80px 0;
}

.contact-pod {
    background-color: white;
    border-radius: 10px;
    padding: 40px 30px;
    text-align: center;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.08);
    transition: all 0.3s ease;
    height: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.contact-pod:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.12);
}

.contact-pod-icon {
    width: 80px;
    height: 80px;
    background-color: var(--primary-blue);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 25px;
    transition: all 0.3s ease;
}

.contact-pod:hover .contact-pod-icon {
    background-color: var(--dark-blue);
    transform: scale(1.1);
}

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

.contact-pod-title {
    font-family: 'Audiowide', sans-serif;
    font-size: 1.4rem;
    color: var(--primary-blue);
    margin-bottom: 20px;
}

.contact-pod-details {
    font-family: 'Open Sans', sans-serif;
    color: #555;
    line-height: 1.6;
}

.contact-pod-details p {
    margin-bottom: 15px;
}

.contact-pod-details strong {
    color: var(--dark-gray);
    font-weight: 600;
}

.contact-link {
    color: var(--primary-blue);
    text-decoration: none;
    font-weight: 600;
    transition: color 0.3s ease;
}

.contact-link:hover {
    color: var(--dark-blue);
    text-decoration: underline;
}

.contact-pod-note {
    font-size: 0.9rem;
    color: #888;
    font-style: italic;
    margin-top: 10px;
}

/* Contact Form Section */
.contact-form-section {
    background-color: white;
    padding: 80px 0;
}

.contact-form-container {
    background-color: #f8f9fa;
    border-radius: 15px;
    padding: 50px;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.08);
}

.contact-form-title {
    font-family: 'Audiowide', sans-serif;
    font-size: 2.2rem;
    color: var(--primary-blue);
    text-align: center;
    margin-bottom: 15px;
}

.contact-form-subtitle {
    font-family: 'Open Sans', sans-serif;
    font-size: 1.1rem;
    color: #666;
    text-align: center;
    margin-bottom: 40px;
}

.form-label {
    font-family: 'Open Sans', sans-serif;
    font-weight: 600;
    color: var(--dark-gray);
    margin-bottom: 8px;
}

.contact-input {
    border: 2px solid #e0e0e0;
    border-radius: 8px;
    padding: 12px 15px;
    font-family: 'Open Sans', sans-serif;
    font-size: 1rem;
    transition: all 0.3s ease;
}

.contact-input:focus {
    border-color: var(--primary-blue);
    box-shadow: 0 0 0 0.2rem rgba(48, 92, 222, 0.15);
    outline: none;
}

.contact-input.is-invalid {
    border-color: #dc3545;
    box-shadow: 0 0 0 0.2rem rgba(220, 53, 69, 0.15);
}

.form-select.contact-input {
    background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16'%3e%3cpath fill='none' stroke='%23343a40' stroke-linecap='round' stroke-linejoin='round' stroke-width='2' d='m1 6 7 7 7-7'/%3e%3c/svg%3e");
}

textarea.contact-input {
    resize: vertical;
    min-height: 120px;
}

.form-check-input {
    margin-top: 0.25rem;
}

.form-check-label {
    font-family: 'Open Sans', sans-serif;
    color: #555;
    font-size: 0.95rem;
}

.contact-submit-btn {
    background-color: var(--primary-blue);
    border: none;
    color: white;
    font-family: 'Audiowide', sans-serif;
    font-size: 1.1rem;
    padding: 15px 40px;
    border-radius: 8px;
    transition: all 0.3s ease;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.contact-submit-btn:hover:not(:disabled) {
    background-color: var(--dark-blue);
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(48, 92, 222, 0.3);
}

.contact-submit-btn:disabled {
    opacity: 0.7;
    cursor: not-allowed;
}

/* Form Animation Effects */
.focused .form-label {
    color: var(--primary-blue);
}

/* Responsive Design */
@media (max-width: 768px) {
    .contact-hero-title {
        font-size: 2.2rem;
    }
    
    .contact-hero-subtitle {
        font-size: 1rem;
    }
    
    .contact-intro-section,
    .contact-info-section,
    .contact-form-section {
        padding: 60px 0;
    }
    
    .contact-intro-text {
        font-size: 1.1rem;
    }
    
    .contact-pod {
        padding: 30px 20px;
        margin-bottom: 30px;
    }
    
    .contact-pod-icon {
        width: 70px;
        height: 70px;
    }
    
    .contact-pod-icon i {
        font-size: 1.8rem;
    }
    
    .contact-form-container {
        padding: 40px 30px;
        margin: 0 15px;
    }
    
    .contact-form-title {
        font-size: 1.8rem;
    }
    
    .contact-submit-btn {
        padding: 12px 30px;
        font-size: 1rem;
    }
}

@media (max-width: 480px) {
    .contact-hero {
        height: 50vh;
        min-height: 350px;
    }
    
    .contact-hero-title {
        font-size: 1.8rem;
    }
    
    .contact-form-container {
        padding: 30px 20px;
    }
    
    .contact-pod {
        padding: 25px 15px;
    }
    
    .contact-pod-title {
        font-size: 1.2rem;
    }
}

/* Products Listing Page Hero */
.products-hero {
    position: relative;
    height: 40vh;
    min-height: 300px;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
}

.products-hero-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    z-index: 1;
}

.products-hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.5);
    z-index: 2;
}

.products-hero-content {
    position: relative;
    z-index: 3;
    text-align: center;
    color: white;
    padding: 0 2rem;
}

.products-hero-subtitle {
    font-family: 'Open Sans', sans-serif;
    font-size: 1.1rem;
    font-weight: 400;
    margin-bottom: 10px;
    opacity: 0.9;
}

.products-hero-title {
    font-family: 'Audiowide', sans-serif;
    font-size: 2.5rem;
    font-weight: 400;
    margin: 0;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.3);
}

/* Products Info Section */
.products-info-section {
    background-color: #f8f9fa;
    padding: 20px 0;
    border-bottom: 1px solid #e0e0e0;
}

.products-info-bar {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
}

.products-count-text,
.products-page-text {
    font-family: 'Open Sans', sans-serif;
    font-size: 0.95rem;
    color: #666;
    margin: 0;
}

.products-count-text {
    font-weight: 600;
}

/* Products Grid */
.products-grid-section {
    background-color: white;
    padding: 40px 0 60px;
}

.products-grid {
    margin: 0 -15px;
}

.product-card {
    background-color: white;
    border-radius: 8px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08);
    overflow: hidden;
    transition: all 0.3s ease;
    height: 100%;
    display: flex;
    flex-direction: column;
}

.product-card:hover {
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.12);
}

.product-link {
    text-decoration: none;
    color: inherit;
    display: flex;
    flex-direction: column;
    height: 100%;
}

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

.product-image-container {
    position: relative;
    width: 100%;
    height: 250px;
    overflow: hidden;
    background-color: #f8f9fa;
    display: flex;
    align-items: center;
    justify-content: center;
}

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

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

.product-image-placeholder {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    height: 100%;
    color: #999;
    background-color: #f0f0f0;
}

.product-image-placeholder i {
    font-size: 3rem;
    margin-bottom: 10px;
    color: #ccc;
}

.product-image-placeholder span {
    font-family: 'Open Sans', sans-serif;
    font-size: 0.9rem;
    color: #999;
}

.product-info {
    padding: 20px;
    flex-grow: 1;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    flex-direction: column;
}

.product-name {
    font-family: 'Audiowide', sans-serif;
    font-size: 1.1rem;
    color: var(--dark-gray);
    margin: 0;
    line-height: 1.4;
    transition: color 0.3s ease;
}

.product-card:hover .product-name {
    color: var(--primary-blue);
}

/* No Products Message */
.no-products-message {
    text-align: center;
    padding: 80px 20px;
}

.no-products-icon {
    font-size: 4rem;
    color: #ccc;
    margin-bottom: 20px;
}

.no-products-title {
    font-family: 'Audiowide', sans-serif;
    font-size: 2rem;
    color: var(--dark-gray);
    margin-bottom: 15px;
}

.no-products-text {
    font-family: 'Open Sans', sans-serif;
    font-size: 1.1rem;
    color: #666;
    margin-bottom: 30px;
    max-width: 500px;
    margin-left: auto;
    margin-right: auto;
}

.no-products-btn {
    background-color: var(--primary-blue);
    border: none;
    color: white;
    font-family: 'Audiowide', sans-serif;
    font-size: 1rem;
    padding: 12px 25px;
    border-radius: 6px;
    text-decoration: none;
    transition: all 0.3s ease;
}

.no-products-btn:hover {
    background-color: var(--dark-blue);
    color: white;
    transform: translateY(-1px);
}

/* Pagination */
.pagination-section {
    background-color: #f8f9fa;
    padding: 40px 0;
    border-top: 1px solid #e0e0e0;
}

.pagination-nav .pagination {
    margin: 0;
}

.page-link {
    font-family: 'Open Sans', sans-serif;
    color: var(--primary-blue);
    border: 1px solid #e0e0e0;
    padding: 10px 15px;
    margin: 0 2px;
    border-radius: 6px;
    transition: all 0.3s ease;
}

.page-link:hover {
    background-color: var(--primary-blue);
    border-color: var(--primary-blue);
    color: white;
}

.page-item.active .page-link {
    background-color: var(--primary-blue);
    border-color: var(--primary-blue);
    color: white;
}

.page-item.disabled .page-link {
    color: #999;
    background-color: transparent;
    border-color: #e0e0e0;
}

.mobile-page-info {
    text-align: center;
    margin-top: 20px;
}

.mobile-page-text {
    font-family: 'Open Sans', sans-serif;
    color: #666;
    font-size: 0.9rem;
}

/* Back to Top Button */
.back-to-top-container {
    position: fixed;
    bottom: 30px;
    right: 30px;
    z-index: 1000;
}

.back-to-top-btn {
    display: none;
    width: 50px;
    height: 50px;
    background-color: var(--primary-blue);
    color: white;
    border: none;
    border-radius: 50%;
    font-size: 1.2rem;
    cursor: pointer;
    transition: all 0.3s ease;
    opacity: 0;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
}

.back-to-top-btn:hover {
    background-color: var(--dark-blue);
    transform: translateY(-2px);
}

/* Responsive Design */
@media (max-width: 992px) {
    .product-image-container {
        height: 400px;
    }
    
    .product-name {
        font-size: 1rem;
    }
    
    .products-grid {
        margin: 0 -10px;
    }
    
    .products-grid > div {
        padding: 0 10px;
    }
}

@media (max-width: 768px) {
    .products-hero-title {
        font-size: 2rem;
    }
    
    .products-info-bar {
        flex-direction: column;
        gap: 10px;
        text-align: center;
    }
    
    .products-grid-section {
        padding: 30px 0 40px;
    }

    
    .product-info {
        padding: 15px;
    }
    
    .page-link {
        padding: 8px 12px;
        font-size: 0.9rem;
    }
    
    .pagination-section {
        padding: 30px 0;
    }
    
    .back-to-top-btn {
        width: 45px;
        height: 45px;
        bottom: 20px;
        right: 20px;
        font-size: 1.1rem;
    }
}

@media (max-width: 576px) {
    .products-hero {
        height: 35vh;
        min-height: 250px;
    }
    
    .products-hero-title {
        font-size: 1.8rem;
    }
    
    .product-name {
        font-size: 0.95rem;
    }
    
    .no-products-title {
        font-size: 1.6rem;
    }
    
    .no-products-text {
        font-size: 1rem;
    }
}

/* Loading States */
.product-image.lazy {
    opacity: 0;
    transition: opacity 0.3s ease;
}

.product-image.lazy.loaded {
    opacity: 1;
}

/* Product Item Page Hero */
.product-hero {
    position: relative;
    height: 30vh;
    min-height: 200px;
    display: flex;
    align-items: center;
    justify-content: center;
    background-color: var(--primary-blue);
    overflow: hidden;
}

.product-hero-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, var(--primary-blue) 0%, var(--dark-blue) 100%);
    z-index: 1;
}

.product-hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.1);
    z-index: 2;
}

.product-hero-content {
    position: relative;
    z-index: 3;
    width: 100%;
}

.product-hero-title {
    font-family: 'Audiowide', sans-serif;
    font-size: 2.5rem;
    font-weight: 400;
    color: white;
    margin: 0;
    text-shadow: 1px 1px 3px rgba(0, 0, 0, 0.3);
}

/* Product Details Section */
.product-details-section {
    background-color: white;
    padding: 60px 0;
}

.product-image-section {
    position: sticky;
    top: 100px;
}

.product-main-image {
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.1);
    background-color: #f8f9fa;
    transition: transform 0.3s ease;
}

.product-main-image:hover {
    transform: scale(1.02);
}

.product-image-large {
    width: 100%;
    height: auto;
    cursor: zoom-in;
    transition: opacity 0.3s ease;
}

.product-image-large:hover {
    opacity: 0.95;
}

.product-image-placeholder-large {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    height: 400px;
    background-color: #f0f0f0;
    border-radius: 10px;
    color: #999;
    border: 2px dashed #ddd;
}

.product-image-placeholder-large i {
    font-size: 4rem;
    margin-bottom: 15px;
    color: #ccc;
}

.product-image-placeholder-large span {
    font-family: 'Open Sans', sans-serif;
    font-size: 1.1rem;
    color: #999;
}

/* Product Purchase Section */
.product-purchase-section {
    padding-left: 30px;
}

.purchase-title {
    font-family: 'Audiowide', sans-serif;
    font-size: 2rem;
    color: var(--primary-blue);
    margin-bottom: 20px;
}

.purchase-description {
    font-family: 'Open Sans', sans-serif;
    font-size: 1.1rem;
    color: #555;
    line-height: 1.6;
    margin-bottom: 20px;
}

.contact-details-box {
    background-color: #f8f9fa;
    padding: 25px;
    border-radius: 8px;
    margin: 30px 0;
    border-left: 4px solid var(--primary-blue);
}

.contact-title {
    font-family: 'Audiowide', sans-serif;
    font-size: 1.3rem;
    color: var(--primary-blue);
    margin-bottom: 15px;
}

.contact-detail {
    font-family: 'Open Sans', sans-serif;
    color: #555;
    margin-bottom: 8px;
    font-size: 1rem;
}

.contact-detail a {
    color: var(--primary-blue);
    text-decoration: none;
    font-weight: 600;
}

.contact-detail a:hover {
    text-decoration: underline;
}

.form-intro {
    font-family: 'Open Sans', sans-serif;
    font-size: 1.1rem;
    color: #555;
    margin: 30px 0 25px 0;
    font-weight: 600;
}

/* Product Inquiry Form */
.product-inquiry-form {
    background-color: #f8f9fa;
    padding: 30px;
    border-radius: 10px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.05);
}

.product-form-input {
    border: 2px solid #e0e0e0;
    border-radius: 6px;
    padding: 12px 15px;
    font-family: 'Open Sans', sans-serif;
    font-size: 1rem;
    transition: all 0.3s ease;
}

.product-form-input:focus {
    border-color: var(--primary-blue);
    box-shadow: 0 0 0 0.2rem rgba(48, 92, 222, 0.15);
    outline: none;
}

.product-form-input.is-invalid {
    border-color: #dc3545;
    box-shadow: 0 0 0 0.2rem rgba(220, 53, 69, 0.15);
}

.form-label {
    font-family: 'Open Sans', sans-serif;
    font-weight: 600;
    color: var(--dark-gray);
    margin-bottom: 8px;
}

.product-submit-btn {
    background-color: var(--primary-blue);
    border: none;
    color: white;
    font-family: 'Audiowide', sans-serif;
    font-size: 1rem;
    padding: 12px 30px;
    border-radius: 6px;
    transition: all 0.3s ease;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.product-submit-btn:hover:not(:disabled) {
    background-color: var(--dark-blue);
    transform: translateY(-1px);
    box-shadow: 0 4px 12px rgba(48, 92, 222, 0.3);
}

.product-submit-btn:disabled {
    opacity: 0.7;
    cursor: not-allowed;
}

/* Call to Action Sections */
.cta-explore-section {
    background-color: #f8f9fa;
    padding: 80px 0;
}

.cta-looking-section {
    background-color: #1a1a1a;
    color: white;
    padding: 80px 0;
}

.cta-content {
    max-width: 800px;
    margin: 0 auto;
}

.cta-title {
    font-family: 'Audiowide', sans-serif;
    font-size: 2.2rem;
    margin-bottom: 25px;
}

.cta-explore-section .cta-title {
    color: var(--primary-blue);
}

.cta-looking-section .cta-title {
    color: white;
}

.cta-description {
    font-family: 'Open Sans', sans-serif;
    font-size: 1.2rem;
    line-height: 1.6;
    margin-bottom: 35px;
}

.cta-explore-section .cta-description {
    color: #555;
}

.cta-looking-section .cta-description {
    color: #e0e0e0;
}

.cta-btn {
    background-color: var(--primary-blue);
    border: none;
    color: white;
    font-family: 'Audiowide', sans-serif;
    font-size: 1.1rem;
    padding: 15px 35px;
    border-radius: 8px;
    text-decoration: none;
    transition: all 0.3s ease;
    display: inline-block;
}

.cta-btn:hover {
    background-color: var(--dark-blue);
    color: white;
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(48, 92, 222, 0.3);
}

.cta-btn-alt {
    background-color: var(--primary-blue);
    border: none;
    color: white;
    font-family: 'Audiowide', sans-serif;
    font-size: 1.1rem;
    padding: 15px 35px;
    border-radius: 8px;
    text-decoration: none;
    transition: all 0.3s ease;
    display: inline-block;
}

.cta-btn-alt:hover {
    background-color: var(--dark-blue);
    color: white;
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(48, 92, 222, 0.4);
}

/* Image Modal */
.image-modal {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.9);
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 2000;
    animation: fadeIn 0.3s ease;
}

.image-modal-content {
    position: relative;
    max-width: 90%;
    max-height: 90%;
}

.image-modal-img {
    max-width: 100%;
    max-height: 100%;
    border-radius: 8px;
}

.image-modal-close {
    position: absolute;
    top: -40px;
    right: 0;
    color: white;
    font-size: 2rem;
    cursor: pointer;
    background: none;
    border: none;
    padding: 5px 10px;
}

.image-modal-close:hover {
    opacity: 0.7;
}

@keyframes fadeIn {
    from { opacity: 0; }
    to { opacity: 1; }
}

/* Responsive Design */
@media (max-width: 992px) {
    .product-purchase-section {
        padding-left: 0;
        margin-top: 30px;
    }
    
    .product-hero-title {
        font-size: 2rem;
    }
    
    .purchase-title {
        font-size: 1.8rem;
    }
    
    .cta-title {
        font-size: 2rem;
    }
    
    .product-image-section {
        position: static;
    }
}

@media (max-width: 768px) {
    .product-hero {
        height: 25vh;
        min-height: 180px;
    }
    
    .product-hero-title {
        font-size: 1.8rem;
    }
    
    .product-details-section {
        padding: 40px 0;
    }
    
    .contact-details-box {
        padding: 20px;
    }
    
    .product-inquiry-form {
        padding: 25px 20px;
    }
    
    .cta-explore-section,
    .cta-looking-section {
        padding: 60px 0;
    }
    
    .cta-title {
        font-size: 1.8rem;
    }
    
    .cta-description {
        font-size: 1.1rem;
    }
}

@media (max-width: 576px) {
    .product-hero-title {
        font-size: 1.5rem;
    }
    
    .purchase-title {
        font-size: 1.5rem;
    }
    
    .product-inquiry-form {
        padding: 20px 15px;
    }
    
    .contact-details-box {
        padding: 15px;
    }
    
    .cta-title {
        font-size: 1.6rem;
    }
    
    .cta-btn,
    .cta-btn-alt {
        padding: 12px 25px;
        font-size: 1rem;
    }
}

/* Related Categories Section */
.related-categories-section {
    background-color: #f8f9fa;
    padding: 60px 0;
    border-top: 1px solid #e0e0e0;
}

.related-content {
    max-width: 600px;
    margin: 0 auto;
}

.related-title {
    font-family: 'Audiowide', sans-serif;
    font-size: 2rem;
    color: var(--primary-blue);
    margin-bottom: 20px;
}

.related-description {
    font-family: 'Open Sans', sans-serif;
    font-size: 1.1rem;
    color: #666;
    line-height: 1.6;
    margin-bottom: 30px;
}

.related-btn {
    background-color: var(--primary-blue);
    border: none;
    color: white;
    font-family: 'Audiowide', sans-serif;
    font-size: 1rem;
    padding: 12px 25px;
    border-radius: 6px;
    text-decoration: none;
    transition: all 0.3s ease;
    display: inline-block;
}

.related-btn:hover {
    background-color: var(--dark-blue);
    color: white;
    transform: translateY(-1px);
    box-shadow: 0 3px 8px rgba(48, 92, 222, 0.2);
}

/* Responsive adjustments for category pages */
@media (max-width: 768px) {
    .related-categories-section {
        padding: 40px 0;
    }
    
    .related-title {
        font-size: 1.8rem;
    }
    
    .related-description {
        font-size: 1rem;
    }
}

/* Product Categories in Hero */
.product-hero-title {
    margin: 0 0 15px 0;
}

.product-categories {
    margin-top: 10px;
}

.category-link {
    font-family: 'Open Sans', sans-serif;
    font-size: 1rem;
    color: rgba(255, 255, 255, 0.9);
    text-decoration: none;
    transition: color 0.3s ease;
    font-weight: 500;
}

.category-link:hover {
    color: white;
    text-decoration: underline;
}

.category-separator {
    color: rgba(255, 255, 255, 0.7);
    font-family: 'Open Sans', sans-serif;
    font-weight: 300;
}

/* Product Categories in Listing */
.product-categories-list {
    margin-top: 8px;
}

.product-category {
    font-family: 'Open Sans', sans-serif;
    font-size: 0.85rem;
    color: #777;
    font-weight: 400;
}

.product-category-separator {
    color: #999;
    font-family: 'Open Sans', sans-serif;
    font-weight: 300;
}

.product-card:hover .product-category {
    color: #555;
}

.top-text {
    background: white;
  text-align: center;
  padding: 5px;
  color: red;
}