/* Equipment Products Page Styles */

/* Main Container */
.equipment-container {
    min-height: 100vh;
    position: relative;
    z-index: 1;
}

/* Equipment Header */
.equipment-header {
    background: linear-gradient(135deg, rgba(255, 107, 53, 0.1) 0%, rgba(247, 147, 30, 0.1) 100%);
    padding: 80px 0 60px;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.equipment-header::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('./assets/heroBackGround.JPG') center/cover;
    opacity: 0.1;
    z-index: -1;
}

/* Unused header content and intro classes removed - dead code cleanup */

.intro-text {
    font-size: 1.2rem;
    line-height: 1.8;
    color: #4a4a4a;
    margin-bottom: 20px;
}

.quote-guidance {
    margin-bottom: 30px;
}

.guidance-text {
    font-size: 1rem;
    line-height: 1.6;
    color: #666;
    background: rgba(255, 107, 53, 0.1);
    padding: 15px 20px;
    border-radius: 10px;
    border-left: 4px solid #FF6B35;
    display: flex;
    align-items: center;
    gap: 10px;
}

.guidance-text i {
    color: #FF6B35;
    font-size: 1.2rem;
}

.intro-actions {
    display: flex;
    justify-content: center;
    gap: 20px;
    margin-top: 30px;
}

.quote-button {
    background: linear-gradient(135deg, #FF6B35, #F7931E);
    color: white;
    border: none;
    padding: 15px 30px;
    border-radius: 50px;
    font-size: 1.1rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(255, 107, 53, 0.3);
    display: flex;
    align-items: center;
    gap: 10px;
}

.quote-button:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(255, 107, 53, 0.4);
}

/* Products Grid */
.products-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(400px, 1fr));
    gap: 40px;
    max-width: 1400px;
    margin: 60px auto;
    padding: 0 20px;
}

/* Product Cards */
.product-card {
    background: white;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
    position: relative;
}

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

.product-image {
    position: relative;
    height: 300px;
    overflow: hidden;
    background: linear-gradient(135deg, #f8f9fa, #e9ecef);
}

/* Carousel Styles */
.product-carousel {
    width: 100%;
    height: 100%;
    position: relative;
}

/* Override unified carousel-container for slide-specific functionality */
.carousel-container {
    height: 100%; /* Override for slide layout */
    overflow: hidden; /* Required for slide transitions */
}

.carousel-slide {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    opacity: 0;
    transition: opacity 0.5s ease;
    display: flex;
    align-items: center;
    justify-content: center;
}

.carousel-slide.active {
    opacity: 1;
}

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

.carousel-slide:hover img {
    transform: scale(1.05);
}

/* Main page product carousel specific styles */
.product-image .product-carousel {
    position: relative;
    width: 100%;
    height: 100%;
}

.carousel-placeholder {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, #FF6B35, #F7931E);
    color: white;
    font-size: 3rem;
}

.carousel-auto-scroll-indicator {
    position: absolute;
    top: 15px;
    right: 15px;
    background: rgba(0, 0, 0, 0.7);
    color: white;
    padding: 5px 10px;
    border-radius: 15px;
    font-size: 0.8rem;
    display: flex;
    align-items: center;
    gap: 5px;
}

/* Product Content */
.product-content {
    padding: 30px;
}

.product-content h3 {
    font-size: 1.8rem;
    font-weight: 700;
    color: #1a1a1a;
    margin-bottom: 15px;
}

.product-description {
    font-size: 1rem;
    line-height: 1.6;
    color: #666;
    margin-bottom: 20px;
}

.product-features {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    margin-bottom: 20px;
}

.feature-tag {
    background: linear-gradient(135deg, #FF6B35, #F7931E);
    color: white;
    padding: 5px 12px;
    border-radius: 15px;
    font-size: 0.8rem;
    font-weight: 500;
}

.product-price {
    margin-bottom: 20px;
}

.price-range {
    font-size: 1.2rem;
    font-weight: 600;
    color: #FF6B35;
}

.product-learn-more {
    background: linear-gradient(135deg, #FF6B35, #F7931E);
    color: white;
    border: none;
    padding: 12px 25px;
    border-radius: 25px;
    font-size: 1rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    gap: 8px;
    width: 100%;
    justify-content: center;
}

.product-learn-more:hover {
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(255, 107, 53, 0.3);
}

/* Quote System Styles */
.quote-button {
    background: linear-gradient(135deg, #FF6B35, #F7931E);
    color: white;
    border: none;
    padding: 15px 30px;
    border-radius: 50px;
    font-size: 1.1rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(255, 107, 53, 0.3);
    display: flex;
    align-items: center;
    gap: 10px;
}

.quote-button:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(255, 107, 53, 0.4);
}

/* Modal Styles */
.modal-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.8);
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 1000;
    backdrop-filter: blur(5px);
}

.modal-content {
    background: white;
    border-radius: 20px;
    max-width: 90vw;
    max-height: 90vh;
    overflow-y: auto;
    position: relative;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.3);
}

.modal-header {
    padding: 30px;
    border-bottom: 1px solid #eee;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.modal-header h2 {
    font-size: 2rem;
    font-weight: 700;
    color: #1a1a1a;
    margin: 0;
}

.modal-close {
    background: none;
    border: none;
    font-size: 1.5rem;
    color: #666;
    cursor: pointer;
    padding: 10px;
    border-radius: 50%;
    transition: all 0.3s ease;
}

.modal-close:hover {
    background: #f5f5f5;
    color: #333;
}

.modal-body {
    padding: 30px;
}

/* Quote Review Modal Specific Styles */
.quote-review-content {
    max-width: 1200px;
    width: 90vw;
}

.quote-review-header {
    background: linear-gradient(135deg, #FF6B35, #F7931E);
    color: white;
    border-radius: 20px 20px 0 0;
}

.quote-review-header h2 {
    color: white;
}

.quote-review-close-btn {
    color: white;
}

.quote-review-layout {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
    min-height: 600px;
}

.quote-summary-column {
    background: #f8f9fa;
    padding: 30px;
    border-radius: 15px;
}

.quote-summary-header {
    text-align: center;
    margin-bottom: 30px;
}

.review-icon {
    font-size: 3rem;
    color: #FF6B35;
    margin-bottom: 15px;
}

.review-title {
    font-size: 1.8rem;
    font-weight: 700;
    color: #1a1a1a;
    margin-bottom: 5px;
}

.review-subtitle {
    color: #666;
    font-size: 1rem;
}

.quote-items-section {
    margin-bottom: 30px;
}

.quote-items-section h4 {
    font-size: 1.2rem;
    font-weight: 600;
    color: #1a1a1a;
    margin-bottom: 15px;
}

.quote-items {
    max-height: 300px;
    overflow-y: auto;
}

.quote-item {
    background: white;
    padding: 15px;
    border-radius: 10px;
    margin-bottom: 10px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
}

.quote-item-info h5 {
    font-size: 1rem;
    font-weight: 600;
    color: #1a1a1a;
    margin-bottom: 5px;
}

.quote-item-info p {
    font-size: 0.9rem;
    color: #666;
    margin: 0;
}

.quote-item-price {
    font-weight: 600;
    color: #FF6B35;
}

.quote-total-section {
    text-align: center;
    padding-top: 20px;
    border-top: 2px solid #eee;
}

.quote-total-section h4 {
    font-size: 1.2rem;
    font-weight: 600;
    color: #1a1a1a;
    margin-bottom: 10px;
}

.quote-total {
    font-size: 2rem;
    font-weight: 700;
    color: #FF6B35;
}

/* Quote Form Styles */
.quote-form-column {
    padding: 0;
}

.quote-form-header {
    text-align: center;
    margin-bottom: 30px;
}

.quote-form-header h3 {
    font-size: 1.8rem;
    font-weight: 700;
    color: #1a1a1a;
    margin-bottom: 10px;
}

.submission-note {
    color: #666;
    font-size: 1rem;
}

.quote-submission-form {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
}

.form-group {
    display: flex;
    flex-direction: column;
}

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

.form-group input,
.form-group select,
.form-group textarea {
    padding: 12px 15px;
    border: 2px solid #e9ecef;
    border-radius: 10px;
    font-size: 1rem;
    transition: border-color 0.3s ease;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    border-color: #FF6B35;
}

.checkbox-label {
    display: flex;
    align-items: center;
    gap: 10px;
    cursor: pointer;
    font-size: 0.9rem;
    color: #666;
}

.checkbox-label input[type="checkbox"] {
    width: 18px;
    height: 18px;
    accent-color: #FF6B35;
}

.form-actions {
    display: flex;
    gap: 15px;
    margin-top: 20px;
}

/* Button styles now handled by unified-components.css */

/* All button styling now unified in unified-components.css */

/* All button styling now unified in unified-components.css */

.error-message {
    background: #fee;
    color: #c33;
    padding: 15px;
    border-radius: 10px;
    border: 1px solid #fcc;
    margin-top: 15px;
}

/* Quote Success Modal Styles */
.quote-success-content {
    max-width: 600px;
    text-align: center;
}

.quote-success-header {
    background: linear-gradient(135deg, #4CAF50, #45A049);
    color: white;
    border-radius: 20px 20px 0 0;
}

.success-icon {
    font-size: 4rem;
    color: #4CAF50;
    margin-bottom: 20px;
}

.success-title {
    font-size: 2rem;
    font-weight: 700;
    color: #1a1a1a;
    margin-bottom: 15px;
}

.success-description {
    font-size: 1.1rem;
    line-height: 1.6;
    color: #666;
    margin-bottom: 30px;
}

.success-details {
    background: #f8f9fa;
    padding: 20px;
    border-radius: 15px;
    margin-bottom: 30px;
}

.detail-item {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 10px;
    color: #666;
}

.detail-item:last-child {
    margin-bottom: 0;
}

.detail-item i {
    color: #FF6B35;
    width: 20px;
}

.success-actions {
    display: flex;
    gap: 15px;
    justify-content: center;
    margin-bottom: 30px;
}

.success-footer {
    padding-top: 20px;
    border-top: 1px solid #eee;
    color: #666;
}

.success-footer strong {
    color: #FF6B35;
}

/* Responsive Design */
@media (max-width: 768px) {
    .equipment-header h1 {
        font-size: 2.5rem;
    }
    
    .products-grid {
        grid-template-columns: 1fr;
        gap: 30px;
        padding: 0 15px;
    }
    
    .quote-review-layout {
        grid-template-columns: 1fr;
        gap: 20px;
    }
    
    .form-row {
        grid-template-columns: 1fr;
    }
    
    .form-actions {
        flex-direction: column;
    }
    
    .success-actions {
        flex-direction: column;
    }
}

@media (max-width: 480px) {
    .equipment-header {
        padding: 60px 0 40px;
    }
    
    .equipment-header h1 {
        font-size: 2rem;
    }
    
    .intro-text {
        font-size: 1rem;
    }
    
    .product-content {
        padding: 20px;
    }
    
    .product-content h3 {
        font-size: 1.5rem;
    }
}

/* Loading Screen */
.loading {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(255, 255, 255, 0.95);
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 9999;
    backdrop-filter: blur(5px);
}

.loading.hidden {
    display: none !important;
}

.loading-content {
    text-align: center;
}

.loading-spinner {
    width: 50px;
    height: 50px;
    border: 4px solid #f3f3f3;
    border-top: 4px solid #FF6B35;
    border-radius: 50%;
    animation: spin 1s linear infinite;
    margin: 0 auto 20px;
}

@keyframes spin {
    0% { transform: rotate(0deg); }
    100% { transform: rotate(360deg); }
}

/* Product Details Modal Styles */
.product-details-modal-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.8);
    display: none;
    align-items: center;
    justify-content: center;
    z-index: 1000;
    backdrop-filter: blur(5px);
}

.product-details-modal-content {
    background: white;
    border-radius: 20px;
    max-width: 90vw;
    max-height: 90vh;
    overflow-y: auto;
    position: relative;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.3);
    width: 1200px;
}

.product-details-modal-header {
    padding: 30px;
    border-bottom: 1px solid #eee;
    display: flex;
    justify-content: space-between;
    align-items: center;
    background: linear-gradient(135deg, #FF6B35, #F7931E);
    color: white;
    border-radius: 20px 20px 0 0;
}

.product-details-back-button {
    background: rgba(255, 255, 255, 0.2);
    color: white;
    border: none;
    padding: 10px 20px;
    border-radius: 25px;
    font-size: 1rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    gap: 8px;
}

.product-details-back-button:hover {
    background: rgba(255, 255, 255, 0.3);
}

.product-details-modal-header h2 {
    font-size: 2rem;
    font-weight: 700;
    color: white;
    margin: 0;
}

.product-details-modal-close {
    background: rgba(255, 255, 255, 0.2);
    color: white;
    border: none;
    font-size: 1.5rem;
    cursor: pointer;
    padding: 10px;
    border-radius: 50%;
    transition: all 0.3s ease;
}

.product-details-modal-close:hover {
    background: rgba(255, 255, 255, 0.3);
}



.product-details-modal-body {
    padding: 40px;
}

/* ROV Tab System Styles */
.rov-tab-system {
    display: flex;
    flex-direction: column;
    height: 100%;
}

.rov-tab-headers {
    display: flex;
    gap: 10px;
    margin-bottom: 30px;
    border-bottom: 2px solid #eee;
    padding-bottom: 10px;
}

.rov-tab-header {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 15px 25px;
    border-radius: 25px;
    cursor: pointer;
    transition: all 0.3s ease;
    background: #f8f9fa;
    color: #666;
    font-weight: 600;
    font-size: 1.1rem;
    border: 2px solid transparent;
}

.rov-tab-header.active {
    background: linear-gradient(135deg, #FF6B35, #F7931E);
    color: white;
}

.rov-tab-header:hover {
    background: linear-gradient(135deg, #FF6B35, #F7931E);
    color: white;
}

.rov-tab-content {
    flex: 1;
}

.rov-tab-panel {
    display: none;
}

.rov-tab-panel.active {
    display: block;
}

/* Detail Content Styles */
.rov-detail-content,
.crawler-detail-content,
.diving-detail-content,
.filters-detail-content,
.software-detail-content,
.handtools-detail-content {
    display: flex;
    flex-direction: column;
    gap: 30px;
}

.rov-hero-section,
.crawler-hero-section,
.diving-hero-section,
.filters-hero-section,
.software-hero-section,
.handtools-hero-section {
    position: relative;
    height: 400px;
    border-radius: 15px;
    overflow: hidden;
    background: linear-gradient(135deg, #f8f9fa, #e9ecef);
}

.rov-carousel,
.crawler-carousel,
.diving-carousel,
.filters-carousel,
.software-carousel,
.handtools-carousel {
    width: 100%;
    height: 100%;
    position: relative;
}

/* Product carousel containers now handled by unified-components.css */

.carousel-container {
    width: 100%;
    height: 100%;
    position: relative;
    overflow: hidden;
}

.carousel-slide {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    opacity: 0;
    transition: opacity 0.5s ease;
    display: flex;
    align-items: center;
    justify-content: center;
}

.carousel-slide.active {
    opacity: 1;
}

.carousel-slide img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    background: #f8f9fa;
}

.carousel-dots {
    position: absolute;
    bottom: 30px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    gap: 12px;
    background: rgba(0, 0, 0, 0.3);
    padding: 10px 15px;
    border-radius: 20px;
}

/* Arrow controls for carousels */
.carousel-arrow {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background: rgba(0, 0, 0, 0.45);
    color: white;
    border: none;
    width: 44px;
    height: 44px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: background 0.2s ease;
    z-index: 2;
}

.carousel-arrow:hover {
    background: rgba(0, 0, 0, 0.6);
}

.carousel-arrow.prev { left: 10px; }
.carousel-arrow.next { right: 10px; }

.carousel-dot {
    width: 16px;
    height: 16px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.5);
    cursor: pointer;
    transition: all 0.3s ease;
    border: 2px solid rgba(255, 255, 255, 0.3);
}

.carousel-dot.active {
    background: #FF6B35;
}

/* Sections Styles */
.rov-sections,
.crawler-sections,
.diving-sections,
.filters-sections,
.software-sections,
.handtools-sections {
    display: flex;
    flex-direction: column;
    gap: 50px;
}

.rov-section,
.crawler-section,
.diving-section,
.filters-section,
.software-section,
.handtools-section {
    background: #f8f9fa;
    padding: 30px;
    border-radius: 15px;
}

.rov-section h4,
.crawler-section h4,
.diving-section h4,
.filters-section h4,
.software-section h4,
.handtools-section h4 {
    font-size: 1.8rem;
    font-weight: 700;
    color: #1a1a1a;
    margin-bottom: 25px;
    border-bottom: 2px solid #FF6B35;
    padding-bottom: 10px;
}

/* Technical Specs Styles */
.technical-specs {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 25px;
}

.spec-item {
    display: flex;
    align-items: center;
    gap: 15px;
    padding: 20px;
    background: white;
    border-radius: 10px;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
}

.spec-icon {
    width: 50px;
    height: 50px;
    background: linear-gradient(135deg, #FF6B35, #F7931E);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 1.2rem;
}

.spec-content h5 {
    font-size: 1rem;
    font-weight: 600;
    color: #1a1a1a;
    margin-bottom: 5px;
}

.spec-content p {
    font-size: 0.9rem;
    color: #666;
    margin: 0;
}

/* Features List Styles */
.features-list {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.feature-item {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 12px 0;
}

.feature-item i {
    color: #4CAF50;
    font-size: 1.1rem;
}

.feature-item span {
    font-size: 1rem;
    color: #333;
}

/* Actions Styles */
.rov-actions,
.crawler-actions,
.diving-actions,
.filters-actions,
.software-actions,
.handtools-actions {
    display: flex;
    justify-content: center;
    gap: 15px;
    flex-wrap: wrap;
}

.add-to-quote-btn {
    background: linear-gradient(135deg, #FF6B35, #F7931E);
    color: white;
    border: none;
    padding: 15px 30px;
    border-radius: 25px;
    font-size: 1.1rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    gap: 10px;
    box-shadow: 0 4px 15px rgba(255, 107, 53, 0.3);
}

.add-to-quote-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(255, 107, 53, 0.4);
}

.quote-info {
    margin-top: 15px;
    padding: 10px 15px;
    background: rgba(255, 107, 53, 0.05);
    border-radius: 8px;
    border-left: 3px solid #FF6B35;
}

.quote-info p {
    font-size: 0.9rem;
    color: #666;
    margin: 0;
    display: flex;
    align-items: center;
    gap: 8px;
}

.quote-info i {
    color: #FF6B35;
    font-size: 1rem;
}

/* Diving Models Styles */
.diving-models {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 15px;
}

.model-item {
    background: white;
    padding: 15px;
    border-radius: 10px;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
}

.model-item h5 {
    font-size: 1rem;
    font-weight: 600;
    color: #1a1a1a;
    margin-bottom: 5px;
}

.model-item p {
    font-size: 0.9rem;
    color: #666;
    margin: 0;
}

/* Tools List Styles */
.tools-list {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 15px;
}

.tool-item {
    background: white;
    padding: 15px;
    border-radius: 10px;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
}

.tool-item h5 {
    font-size: 1rem;
    font-weight: 600;
    color: #1a1a1a;
    margin-bottom: 5px;
}

.tool-item p {
    font-size: 0.9rem;
    color: #666;
    margin: 0;
}

/* ROV Price Display Styles */
.rov-price-display {
    text-align: center;
    margin-bottom: 20px;
    padding: 15px;
    background: rgba(255, 107, 53, 0.1);
    border-radius: 10px;
    border: 2px solid #FF6B35;
}

.rov-price {
    font-size: 1.5rem;
    font-weight: 700;
    color: #FF6B35;
    margin: 0;
    text-shadow: 0 1px 2px rgba(0, 0, 0, 0.1);
}

/* Responsive Design for Modal */
@media (max-width: 768px) {
    .product-details-modal-content {
        width: 95vw;
        max-height: 90vh;
    }
    
    .rov-hero-section,
    .crawler-hero-section,
    .diving-hero-section,
    .filters-hero-section,
    .software-hero-section,
    .handtools-hero-section {
        height: 300px;
    }
    
    .rov-tab-headers {
        flex-wrap: wrap;
    }
    
    .rov-tab-header {
        flex: 1;
        min-width: 120px;
    }
    
    .rov-price-display {
        margin-bottom: 15px;
        padding: 10px;
    }
    
    .rov-price {
        font-size: 1.2rem;
    }
    
    .technical-specs {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .diving-models,
    .tools-list {
        grid-template-columns: 1fr;
    }
}

/* Ocean Background */
.ocean-bg {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: -1;
    overflow: hidden;
}

.wave {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 100px;
    background: linear-gradient(135deg, rgba(255, 107, 53, 0.1), rgba(247, 147, 30, 0.1));
    animation: wave 10s ease-in-out infinite;
}

@keyframes wave {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-20px); }
} 