/* Import Google Fonts */
@import url('https://fonts.googleapis.com/css2?family=Poppins:wght@300;400;500;600;700&display=swap');

/* Root Variables */
:root {
    --primary-color: #0A2463;
    --secondary-color:#3E92CC;
    --accent-color: #ff6b6b;
    --light-color: #f8f9fa;
    --dark-color: #343a40;
    --text-color: #333;
    --light-text: #6c757d;
    --border-color: #6c757d;
    --shadow: rgba(10, 36, 99, 0.1);
    --transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    --border-radius: 10px;
    --glass-bg: rgba(255, 255, 255, 0.1);
    --glass-border: rgba(255, 255, 255, 0.2);
}

/* Global Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Poppins', sans-serif;
    font-size: 16px;
    line-height: 1.6;
    color: var(--text-color);
    background-color: #f5f7fa;
    overflow-x: hidden;
    position: relative;
}

.container {
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

a {
    text-decoration: none;
    color: var(--primary-color);
    transition: var(--transition);
}

a:hover {
    color: var(--secondary-color);
}

ul {
    list-style: none;
}

img {
    max-width: 100%;
    height: auto;
}

h1, h2, h3, h4, h5, h6 {
    margin-bottom: 15px;
    font-weight: 600;
    line-height: 1.2;
    color: var(--dark-color);
}

h1 {
    font-size: 2.5rem;
}

h2 {
    font-size: 2rem;
}

h3 {
    font-size: 1.5rem;
}

p {
    margin-bottom: 15px;
    color: var(--text-color);
}

.section-title {
    text-align: center;
    margin-bottom: 40px;
    position: relative;
    padding-bottom: 15px;
}

.section-title:after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 80px;
    height: 3px;
    background: linear-gradient(to right, var(--primary-color), var(--secondary-color));
    border-radius: 3px;
}

.btn {
    display: inline-block;
    padding: 12px 24px;
    border: none;
    border-radius: var(--border-radius);
    font-size: 16px;
    font-weight: 500;
    text-align: center;
    cursor: pointer;
    transition: var(--transition);
    outline: none;
}

.primary-btn {
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
    color: white;
}

.primary-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(0, 119, 190, 0.3);
}

.secondary-btn {
    background-color: transparent;
    color: var(--primary-color);
    border: 2px solid var(--primary-color);
}

.secondary-btn:hover {
    background-color: var(--primary-color);
    color: white;
}

.text-center {
    text-align: center;
}

/* Underwater Background */
.underwater-bg {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: -1;
    background: linear-gradient(to bottom, #0077be, #00a8cc, #00d4aa);
    opacity: 0.1;
}

.bubbles {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
    overflow: hidden;
}

.bubbles:before,
.bubbles:after,
.bubbles span:before,
.bubbles span:after {
    content: '';
    position: absolute;
    bottom: -100px;
    width: 40px;
    height: 40px;
    background-color: rgba(255, 255, 255, 0.15);
    border-radius: 50%;
    opacity: 0.6;
    animation: bubble 15s infinite ease-in-out;
}

.bubbles:before {
    left: 10%;
    width: 60px;
    height: 60px;
    animation-delay: 0s;
}

.bubbles:after {
    left: 20%;
    width: 20px;
    height: 20px;
    animation-delay: 1s;
    animation-duration: 12s;
}

.bubbles span:before {
    left: 35%;
    width: 50px;
    height: 50px;
    animation-delay: 2s;
    animation-duration: 16s;
}

.bubbles span:after {
    left: 50%;
    width: 30px;
    height: 30px;
    animation-delay: 0s;
    animation-duration: 18s;
}

@keyframes bubble {
    0% {
        transform: translateY(0) rotate(0deg);
        opacity: 0;
    }
    10% {
        opacity: 0.6;
    }
    100% {
        transform: translateY(-100vh) rotate(360deg);
        opacity: 0;
    }
}

/* Glassmorphism */
.glass-card {
    background: var(--glass-bg);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    border: 1px solid var(--glass-border);
    border-radius: var(--border-radius);
    padding: 25px;
    box-shadow: var(--shadow);
}

/* Navigation (original glass nav – kept if used elsewhere) */
.glass-nav {
    position: sticky;
    top: 0;
    z-index: 1000;
    background: var(--glass-bg);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    border-bottom: 1px solid var(--glass-border);
    box-shadow: var(--shadow);
}

.nav-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 15px 0;
}

.logo {
    display: flex;
    align-items: center;
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--primary-color);
}

.logo img {
    height: 40px;
    margin-right: 10px;
}

.main-nav ul {
    display: flex;
}

.main-nav ul li {
    margin-left: 30px;
}

.main-nav ul li a {
    font-weight: 500;
    color: var(--dark-color);
    position: relative;
}

.main-nav ul li a.active,
.main-nav ul li a:hover {
    color: var(--primary-color);
}

.main-nav ul li a.active:after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 100%;
    height: 2px;
    background-color: var(--primary-color);
}

.nav-icons {
    display: flex;
    align-items: center;
}

.nav-icons a {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    margin-left: 15px;
    border-radius: 50%;
    background-color: rgba(255, 255, 255, 0.2);
    color: var(--dark-color);
    position: relative;
}

.nav-icons a:hover {
    background-color: var(--primary-color);
    color: white;
}

.cart-count {
    position: absolute;
    top: -5px;
    right: -5px;
    width: 20px;
    height: 20px;
    border-radius: 50%;
    background-color: var(--accent-color);
    color: white;
    font-size: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.mobile-menu-btn {
    display: none;
    background: none;
    border: none;
    color: var(--dark-color);
    font-size: 1.2rem;
    cursor: pointer;
}

/* Hero Section */
.hero {
    padding: 100px 0;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.hero-content {
    max-width: 800px;
    margin: 0 auto;
}

.hero h1 {
    font-size: 3rem;
    margin-bottom: 20px;
    color: var(--dark-color);
}

.hero p {
    font-size: 1.2rem;
    margin-bottom: 30px;
    color: var(--light-text);
}

.hero-buttons {
    display: flex;
    justify-content: center;
    gap: 20px;
}

/* Featured Products */
.featured-products {
    padding: 80px 0;
}

.products-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
    gap: 30px;
    margin-bottom: 40px;
}

.product-card {
    overflow: hidden;
    transition: var(--transition);
}

.product-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.1);
}

.product-image {
    position: relative;
    height: 250px;
    overflow: hidden;
    border-radius: var(--border-radius) var(--border-radius) 0 0;
}

.product-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: var(--transition);
}

.product-card:hover .product-image img {
    transform: scale(1.05);
}

.product-actions {
    position: absolute;
    bottom: 20px;
    right: 20px;
    display: flex;
    gap: 10px;
    opacity: 0;
    transition: var(--transition);
}

.product-card:hover .product-actions {
    opacity: 1;
}

.action-btn {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background-color: white;
    color: var(--dark-color);
    border: none;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: var(--transition);
    box-shadow: var(--shadow);
}

.action-btn:hover {
    background-color: var(--primary-color);
    color: white;
}

.product-info {
    padding: 20px;
}

.product-info h3 {
    font-size: 1.1rem;
    margin-bottom: 10px;
}

.product-price {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 10px;
}

.current-price {
    font-size: 1.2rem;
    font-weight: 600;
    color: var(--primary-color);
}

.original-price {
    font-size: 1rem;
    color: var(--light-text);
    text-decoration: line-through;
}

.product-rating {
    display: flex;
    align-items: center;
    gap: 5px;
    margin-bottom: 15px;
}

.product-rating i {
    color: #ffc107;
}

.product-rating span {
    color: var(--light-text);
    font-size: 0.9rem;
}

.view-product {
    display: inline-block;
    font-weight: 500;
    color: var(--primary-color);
    position: relative;
}

.view-product:after {
    content: '';
    position: absolute;
    bottom: -2px;
    left: 0;
    width: 0;
    height: 2px;
    background-color: var(--primary-color);
    transition: var(--transition);
}

.view-product:hover:after {
    width: 100%;
}

/* Newsletter */
.newsletter {
    padding: 60px 0;
}

.newsletter-content {
    max-width: 600px;
    margin: 0 auto;
    text-align: center;
    padding: 30px;
}

.newsletter-content h2 {
    margin-bottom: 15px;
}

.newsletter-form {
    display: flex;
    margin-top: 20px;
}

.newsletter-form input {
    flex: 1;
    padding: 12px 20px;
    border: 1px solid var(--border-color);
    border-radius: var(--border-radius) 0 0 var(--border-radius);
    font-size: 16px;
    outline: none;
}

.newsletter-form button {
    border-radius: 0 var(--border-radius) var(--border-radius) 0;
}

/* Footer */
.footer {
    background-color: var(--dark-color);
    color: white;
    padding: 70px 0 20px;
}

.footer-content {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
    margin-bottom: 40px;
}

.footer-logo {
    display: flex;
    align-items: center;
    margin-bottom: 15px;
}

.footer-logo img {
    height: 40px;
    margin-right: 10px;
}

.footer-logo span {
    font-size: 1.5rem;
    font-weight: 700;
    color: white;
}

.footer-column h3 {
    color: rgb(255, 255, 255);
    margin-bottom: 20px;
    position: relative;
    padding-bottom: 10px;
}

.footer-column h3:after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 40px;
    height: 2px;
    background-color: var(--primary-color);
}

.footer-column ul li {
    margin-bottom: 10px;
}

.footer-column ul li a {
    color: #afadbd;
    transition: var(--transition);
}

.footer-column ul li a:hover {
    color: white;
    padding-left: 5px;
}

.social-links {
    display: flex;
    gap: 15px;
    margin-top: 20px;
}

.social-links a {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background-color: rgba(255, 0, 0, 0.1);
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    transition: var(--transition);
}

.social-links a:hover {
    background-color: var(--primary-color);
    transform: translateY(-3px);
}

.contact-info li {
    display: flex;
    margin-bottom: 15px;
    color: #adb5bd;
}

.contact-info li i {
    margin-right: 10px;
    color: var(--primary-color);
}

.copyright {
    text-align: center;
    padding-top: 20px;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    color: #adb5bd;
}

/* Floating Buttons */
.floating-buttons {
    position: fixed;
    bottom: 30px;
    right: 30px;
    z-index: 999;
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.whatsapp-btn {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    background-color: #25d366;
    color: white;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.2);
    transition: var(--transition);
}

.whatsapp-btn:hover {
    transform: scale(1.1);
}

.back-to-top {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    background-color: var(--primary-color);
    color: white;
    border: none;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.2rem;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.2);
    cursor: pointer;
    transition: var(--transition);
    opacity: 0;
    visibility: hidden;
}

.back-to-top.visible {
    opacity: 1;
    visibility: visible;
}

.back-to-top:hover {
    transform: translateY(-5px);
}

/* Page Header */
.page-header {
    padding: 40px 0;
    background-color: rgba(0, 119, 190, 0.1);
    border-bottom: 1px solid var(--border-color);
}

.breadcrumb {
    display: flex;
    align-items: center;
    gap: 10px;
    color: var(--light-text);
    font-size: 0.9rem;
}

.breadcrumb a {
    color: var(--light-text);
}

.breadcrumb span {
    color: var(--primary-color);
}

/* Products Page */
.products-section {
    padding: 60px 0;
}

.products-layout {
    display: grid;
    grid-template-columns: 300px 1fr;
    gap: 30px;
}

.sidebar {
    height: fit-content;
    position: sticky;
    top: 100px;
}

.filter-group {
    margin-bottom: 25px;
}

.filter-group h3 {
    font-size: 1.1rem;
    margin-bottom: 15px;
    padding-bottom: 10px;
    border-bottom: 1px solid var(--border-color);
}

.filter-list li {
    margin-bottom: 10px;
}

.filter-list label {
    display: flex;
    align-items: center;
    cursor: pointer;
}

.filter-list input {
    margin-right: 10px;
}

.search-box {
    display: flex;
    align-items: center;
    border: 1px solid var(--border-color);
    border-radius: var(--border-radius);
    overflow: hidden;
}

.search-box input {
    flex: 1;
    padding: 10px 15px;
    border: none;
    outline: none;
}

.search-box button {
    padding: 10px 15px;
    background-color: var(--primary-color);
    color: white;
    border: none;
    cursor: pointer;
}

.price-range {
    padding: 10px 0;
}

.price-slider {
    width: 100%;
    margin-bottom: 10px;
}

.price-values {
    display: flex;
    justify-content: space-between;
    font-size: 0.9rem;
    color: var(--light-text);
}

.color-filters {
    display: flex;
    gap: 10px;
}

.color-btn {
    width: 30px;
    height: 30px;
    border-radius: 50%;
    border: 2px solid transparent;
    cursor: pointer;
    transition: var(--transition);
}

.color-btn:hover,
.color-btn.active {
    border-color: var(--dark-color);
    transform: scale(1.1);
}

.products-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 30px;
}

.results-count p {
    margin: 0;
    color: var(--light-text);
}

.sort-dropdown select {
    padding: 8px 15px;
    border: 1px solid var(--border-color);
    border-radius: var(--border-radius);
    background-color: white;
    outline: none;
    cursor: pointer;
}

.pagination {
    display: flex;
    justify-content: center;
    gap: 10px;
    margin-top: 40px;
}

.page-btn {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    border: 1px solid var(--border-color);
    background-color: white;
    color: var(--dark-color);
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: var(--transition);
}

.page-btn:hover,
.page-btn.active {
    background-color: var(--primary-color);
    color: white;
    border-color: var(--primary-color);
}

/* Product Detail Page */
.product-detail {
    padding: 60px 0;
}

.product-detail-container {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
    margin-bottom: 60px;
}

.product-gallery {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.main-image {
    height: 400px;
    border-radius: var(--border-radius);
    overflow: hidden;
}

.main-image img {
    width: 100%;
    height: 100%;
    object-fit: contain;
}

.thumbnail-images {
    display: flex;
    gap: 10px;
    overflow-x: auto;
    padding-bottom: 10px;
}

.thumb {
    width: 80px;
    height: 80px;
    border-radius: var(--border-radius);
    overflow: hidden;
    border: 2px solid transparent;
    cursor: pointer;
    flex-shrink: 0;
}

.thumb.active {
    border-color: var(--primary-color);
}

.thumb img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.product-info h2 {
    font-size: 1.8rem;
    margin-bottom: 10px;
}

.product-rating {
    display: flex;
    align-items: center;
    gap: 5px;
    margin-bottom: 15px;
}

.product-rating i {
    color: #ffc107;
}

.product-rating span {
    color: var(--light-text);
}

.product-price {
    display: flex;
    align-items: center;
    gap: 15px;
    margin-bottom: 20px;
}

.current-price {
    font-size: 1.8rem;
    font-weight: 600;
    color: var(--primary-color);
}

.original-price {
    font-size: 1.2rem;
    color: var(--light-text);
    text-decoration: line-through;
}

.product-description {
    margin-bottom: 25px;
    color: var(--text-color);
}

.product-variants {
    margin-bottom: 30px;
}

.variant-group {
    margin-bottom: 20px;
}

.variant-group h3 {
    font-size: 1rem;
    margin-bottom: 10px;
}

.variant-options {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
}

.variant-btn {
    padding: 8px 16px;
    border: 1px solid var(--border-color);
    background-color: white;
    border-radius: var(--border-radius);
    cursor: pointer;
    transition: var(--transition);
}

.variant-btn:hover,
.variant-btn.active {
    border-color: var(--primary-color);
    color: var(--primary-color);
}

.product-actions {
    display: flex;
    align-items: center;
    gap: 15px;
    margin-bottom: 30px;
}

.quantity-selector {
    display: flex;
    align-items: center;
    border: 1px solid var(--border-color);
    border-radius: var(--border-radius);
    overflow: hidden;
}

.qty-btn {
    width: 40px;
    height: 40px;
    border: none;
    background-color: var(--light-color);
    color: var(--dark-color);
    cursor: pointer;
    transition: var(--transition);
}

.qty-btn:hover {
    background-color: var(--primary-color);
    color: white;
}

.qty-input {
    width: 50px;
    height: 40px;
    border: none;
    border-left: 1px solid var(--border-color);
    border-right: 1px solid var(--border-color);
    text-align: center;
    outline: none;
}

.add-to-cart-btn,
.add-to-wishlist-btn {
    display: flex;
    align-items: center;
    gap: 8px;
}

.product-meta {
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.meta-item {
    display: flex;
    align-items: center;
    gap: 10px;
    color: var(--light-text);
}

.meta-item i {
    color: var(--primary-color);
}

.product-tabs {
    margin-bottom: 60px;
}

.tabs-header {
    display: flex;
    border-bottom: 1px solid var(--border-color);
    margin-bottom: 25px;
}

.tab-btn {
    padding: 12px 25px;
    background: none;
    border: none;
    font-size: 1rem;
    font-weight: 500;
    color: var(--light-text);
    cursor: pointer;
    position: relative;
    transition: var(--transition);
}

.tab-btn.active {
    color: var(--primary-color);
}

.tab-btn.active:after {
    content: '';
    position: absolute;
    bottom: -1px;
    left: 0;
    width: 100%;
    height: 2px;
    background-color: var(--primary-color);
}

.tab-pane {
    display: none;
}

.tab-pane.active {
    display: block;
}

.specs-table {
    width: 100%;
    border-collapse: collapse;
}

.specs-table tr {
    border-bottom: 1px solid var(--border-color);
}

.specs-table td {
    padding: 12px 0;
}

.specs-table td:first-child {
    font-weight: 500;
    width: 40%;
}

.reviews-summary {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 30px;
    padding-bottom: 20px;
    border-bottom: 1px solid var(--border-color);
}

.average-rating {
    display: flex;
    flex-direction: column;
    align-items: center;
}

.rating-number {
    font-size: 3rem;
    font-weight: 700;
    color: var(--primary-color);
}

.rating-stars {
    margin: 10px 0;
}

.rating-stars i {
    color: #ffc107;
}

.rating-count {
    color: var(--light-text);
}

.reviews-list {
    display: flex;
    flex-direction: column;
    gap: 25px;
}

.review-item {
    padding-bottom: 25px;
    border-bottom: 1px solid var(--border-color);
}

.review-header {
    display: flex;
    justify-content: space-between;
    margin-bottom: 15px;
}

.reviewer-info {
    display: flex;
    flex-direction: column;
}

.reviewer-name {
    font-weight: 600;
}

.review-date {
    font-size: 0.9rem;
    color: var(--light-text);
}

.review-rating i {
    color: #ffc107;
}

.review-content p {
    margin: 0;
    line-height: 1.7;
}

/* Contact Page */
.contact-section {
    padding: 60px 0;
}

.contact-container {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
    margin-bottom: 60px;
}

.info-item {
    display: flex;
    gap: 15px;
    margin-bottom: 25px;
}

.info-icon {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    background-color: rgba(0, 119, 190, 0.1);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--primary-color);
    flex-shrink: 0;
}

.info-content h3 {
    font-size: 1.1rem;
    margin-bottom: 5px;
}

.form-group {
    margin-bottom: 20px;
}

.form-group label {
    display: block;
    margin-bottom: 8px;
    font-weight: 500;
}

.form-group input,
.form-group textarea {
    width: 100%;
    padding: 12px 15px;
    border: 1px solid var(--border-color);
    border-radius: var(--border-radius);
    font-family: 'Poppins', sans-serif;
    font-size: 16px;
    outline: none;
    transition: var(--transition);
}

.form-group input:focus,
.form-group textarea:focus {
    border-color: var(--primary-color);
}

.form-message {
    margin-top: 15px;
    padding: 10px 15px;
    border-radius: var(--border-radius);
    text-align: center;
    display: none;
}

.form-message.success {
    background-color: rgba(40, 167, 69, 0.1);
    color: #28a745;
    border: 1px solid rgba(40, 167, 69, 0.2);
}

.form-message.error {
    background-color: rgba(220, 53, 69, 0.1);
    color: #dc3545;
    border: 1px solid rgba(220, 53, 69, 0.2);
}

.map-section {
    margin-bottom: 60px;
}

.map-section h2 {
    margin-bottom: 20px;
}

.map-container {
    height: 400px;
    border-radius: var(--border-radius);
    overflow: hidden;
}

.map-placeholder {
    width: 100%;
    height: 100%;
    background-color: rgba(0, 119, 190, 0.1);
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    color: var(--primary-color);
}

.map-placeholder i {
    font-size: 3rem;
    margin-bottom: 15px;
}

/* Order Page */
.order-section {
    padding: 60px 0;
}

.order-container {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
    margin-bottom: 60px;
}

.order-steps {
    display: flex;
    flex-direction: column;
    gap: 25px;
    margin-bottom: 30px;
}

.step {
    display: flex;
    gap: 15px;
}

.step-number {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background-color: var(--primary-color);
    color: white;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 600;
    flex-shrink: 0;
}

.step-content h3 {
    font-size: 1.1rem;
    margin-bottom: 5px;
}

.order-note {
    display: flex;
    align-items: flex-start;
    gap: 10px;
    padding: 15px;
    background-color: rgba(0, 119, 190, 0.1);
    border-radius: var(--border-radius);
    margin-bottom: 25px;
}

.order-note i {
    color: var(--primary-color);
    margin-top: 3px;
}

.payment-methods {
    margin-top: 30px;
}

.payment-methods h3 {
    font-size: 1.1rem;
    margin-bottom: 15px;
}

.payment-icons {
    display: flex;
    gap: 15px;
    font-size: 1.8rem;
    color: var(--light-text);
}

/* Shopping Cart Page */
.cart-section {
    padding: 60px 0;
}

.cart-container {
    display: grid;
    grid-template-columns: 2fr 1fr;
    gap: 40px;
    margin-bottom: 60px;
}

.cart-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 25px;
    padding-bottom: 15px;
    border-bottom: 1px solid var(--border-color);
}

.cart-count-text {
    color: var(--light-text);
}

.cart-empty {
    text-align: center;
    padding: 60px 20px;
}

.cart-empty i {
    font-size: 4rem;
    color: var(--light-text);
    margin-bottom: 20px;
}

.cart-empty h3 {
    margin-bottom: 10px;
}

.cart-item {
    display: grid;
    grid-template-columns: 100px 1fr auto;
    gap: 20px;
    padding: 20px 0;
    border-bottom: 1px solid var(--border-color);
}

.cart-item-image {
    width: 100px;
    height: 100px;
    border-radius: var(--border-radius);
    overflow: hidden;
}

.cart-item-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.cart-item-info h3 {
    font-size: 1.1rem;
    margin-bottom: 5px;
}

.cart-item-price {
    font-weight: 600;
    color: var(--primary-color);
}

.cart-item-actions {
    display: flex;
    flex-direction: column;
    align-items: flex-end;
    gap: 10px;
}

.cart-item-quantity {
    display: flex;
    align-items: center;
    border: 1px solid var(--border-color);
    border-radius: var(--border-radius);
    overflow: hidden;
}

.cart-item-quantity button {
    width: 30px;
    height: 30px;
    border: none;
    background-color: var(--light-color);
    cursor: pointer;
    transition: var(--transition);
}

.cart-item-quantity button:hover {
    background-color: var(--primary-color);
    color: white;
}

.cart-item-quantity input {
    width: 40px;
    height: 30px;
    border: none;
    border-left: 1px solid var(--border-color);
    border-right: 1px solid var(--border-color);
    text-align: center;
    outline: none;
}

.remove-item {
    background: none;
    border: none;
    color: var(--accent-color);
    cursor: pointer;
    transition: var(--transition);
}

.remove-item:hover {
    text-decoration: underline;
}

.summary-row {
    display: flex;
    justify-content: space-between;
    margin-bottom: 15px;
}

.discount-row {
    color: var(--accent-color);
}

.total-row {
    font-size: 1.2rem;
    font-weight: 600;
    padding-top: 15px;
    border-top: 1px solid var(--border-color);
}

.promo-code {
    display: flex;
    margin: 20px 0;
}

.promo-code input {
    flex: 1;
    padding: 10px 15px;
    border: 1px solid var(--border-color);
    border-radius: var(--border-radius) 0 0 var(--border-radius);
    outline: none;
}

.promo-code button {
    border-radius: 0 var(--border-radius) var(--border-radius) 0;
}

.cart-actions {
    display: flex;
    flex-direction: column;
    gap: 15px;
    margin-top: 20px;
}

.shipping-info,
.security-info {
    margin-top: 20px;
    padding: 15px;
}

.shipping-info h3,
.security-info h3 {
    font-size: 1rem;
    margin-bottom: 10px;
}

.shipping-info p {
    margin-bottom: 5px;
    font-size: 0.9rem;
}

.security-icons {
    display: flex;
    gap: 15px;
    margin-top: 10px;
    font-size: 1.5rem;
    color: var(--primary-color);
}

/* Responsive Styles */
@media (max-width: 992px) {
    .product-detail-container,
    .contact-container,
    .order-container,
    .cart-container {
        grid-template-columns: 1fr;
    }
    
    .products-layout {
        grid-template-columns: 1fr;
    }
    
    .sidebar {
        position: static;
        margin-bottom: 30px;
    }
}

@media (max-width: 768px) {
    .main-nav {
        position: fixed;
        top: 0;
        right: -300px;
        width: 300px;
        height: 100vh;
        background-color: white;
        box-shadow: -5px 0 15px rgba(0, 0, 0, 0.1);
        padding: 80px 20px 20px;
        transition: var(--transition);
        z-index: 999;
    }
    
    .main-nav.active {
        right: 0;
    }
    
    .main-nav ul {
        flex-direction: column;
    }
    
    .main-nav ul li {
        margin: 0 0 20px 0;
    }
    
    .mobile-menu-btn {
        display: block;
        z-index: 1001;
    }
    
    .hero h1 {
        font-size: 2rem;
    }
    
    .hero-buttons {
        flex-direction: column;
        gap: 15px;
    }
    
    .products-grid {
        grid-template-columns: repeat(auto-fill, minmax(200px, 1fr));
    }
    
    .product-gallery {
        flex-direction: row;
    }
    
    .main-image {
        height: 300px;
    }
    
    .thumbnail-images {
        flex-direction: column;
        width: 80px;
    }
    
    .thumb {
        width: 100%;
        height: 80px;
    }
    
    .reviews-summary {
        flex-direction: column;
        align-items: flex-start;
        gap: 20px;
    }
    
    .floating-buttons {
        bottom: 20px;
        right: 20px;
    }
}

@media (max-width: 576px) {
    .container {
        padding: 0 15px;
    }
    
    h1 {
        font-size: 1.8rem;
    }
    
    h2 {
        font-size: 1.5rem;
    }
    
    .hero {
        padding: 60px 0;
    }
    
    .featured-products,
    .product-detail,
    .contact-section,
    .order-section,
    .cart-section {
        padding: 40px 0;
    }
    
    .products-grid {
        grid-template-columns: 1fr;
    }
    
    .product-actions {
        opacity: 1;
        bottom: 10px;
        right: 10px;
    }
    
    .cart-item {
        grid-template-columns: 80px 1fr;
    }
    
    .cart-item-actions {
        grid-column: 1 / -1;
        flex-direction: row;
        justify-content: space-between;
        align-items: center;
    }
}

/* ===== Oclaria brand header colors ===== */
:root{
  /* pulled from your logo */
  --ocl-deep-blue:#0D1C84;
  --ocl-neon-green:#3BE68C;
  --ocl-purple:#B138A4;
  --ocl-hot-pink:#F73CA2;
}

/* Header band with subtle glass + gradient */
.brand-header{
  position: sticky; top:0; z-index:1000;
  background: linear-gradient(90deg, var(--ocl-deep-blue) 0%, var(--ocl-purple) 55%, var(--ocl-hot-pink) 100%);
  /* softer, more practical option (uncomment to use): 
  background: linear-gradient(90deg, var(--ocl-deep-blue) 0%, #1930a8 50%, #2f58c1 100%);
  */
  box-shadow: 0 6px 20px rgba(6,12,60,.35);
  border-bottom: 1px solid rgba(255,255,255,.08);
  backdrop-filter: saturate(120%) blur(6px);
}

/* Ensure readable nav links on vibrant band */
.brand-header .main-nav a,
.brand-header .logo span{
  color:#fff;
  text-shadow: 0 1px 8px rgba(0,0,0,.25);
}

/* Logo blending so it feels integrated */
.logo-img{
  height:56px; width:auto;
  display:block;
  filter: drop-shadow(0 4px 12px rgba(0,0,0,.35));
  mix-blend-mode: screen;       /* key for the “faded into band” look */
  opacity:.95;
}

/* Fallback for browsers that ignore mix-blend-mode */
@supports not (mix-blend-mode: screen){
  .logo-img{ opacity: .9; }
}

/* Keep header content aligned nicely on small screens */
.brand-header .nav-container{
  display:flex; align-items:center; justify-content:space-between; gap:14px;
  padding:12px 0;
}

/* Active link underline/indicator in this bright header */
.brand-header .main-nav a.active{
  border-bottom:2px solid var(--ocl-neon-green);
}
.brand-header .main-nav a:hover{
  color:#e9fef3;
}

/* Give the hero slight top offset so it doesn't hide under sticky header */
.hero{ padding-top: 12px; }

/* ==== Upgrades (pop, readability, cards) ==== */

/* Layout polish */
.container{max-width:1140px;}
.section-title{margin:8px 0 20px;font-weight:700;letter-spacing:.3px}

/* Buttons pop (brand neon for primary) */
.btn{border-radius:12px;padding:12px 18px;font-weight:600}
.primary-btn{
  background: linear-gradient(90deg, var(--ocl-neon-green), #9cf1c4);
  color:#0c122e;
}
.primary-btn:hover{transform:translateY(-1px);box-shadow:0 10px 24px rgba(59,230,140,.25)}
.secondary-btn{background:#ffffff1a;border:1px solid #ffffff33;color:#0A2463}

/* Header nav hover underline (neon) */
.brand-header .main-nav a{position:relative;padding-bottom:6px}
.brand-header .main-nav a::after{
  content:"";position:absolute;left:0;bottom:-2px;height:2px;width:0;
  background:var(--ocl-neon-green);transition:width .2s ease
}
.brand-header .main-nav a:hover::after,
.brand-header .main-nav a.active::after{width:100%}

/* Hero readability overlay */
.hero{position:relative}
.hero::before{
  content:"";position:absolute;inset:0;pointer-events:none;
  background:linear-gradient(180deg, rgba(0,8,40,.55), rgba(0,8,40,.25));
}
.hero h1,.hero p{color:#fff}

/* Product cards — stronger glass/hover */
.products-grid{gap:18px}
.product-card.glass-card{
  border-radius:16px;overflow:hidden;background:rgba(255,255,255,.06);
  border:1px solid rgba(255,255,255,.12);
  box-shadow:0 10px 30px rgba(7,15,60,.18);
  transition:transform .15s ease, box-shadow .15s ease
}
.product-card:hover{transform:translateY(-4px);box-shadow:0 16px 40px rgba(7,15,60,.28)}
.product-image img{display:block;width:100%;aspect-ratio:1/1;object-fit:cover}
.product-info{padding:12px}
.product-info h3{font-size:15px;line-height:1.25;margin:4px 0 8px}
.product-price{gap:8px;margin-bottom:6px}
.current-price{color:#0A2463;font-weight:700}
.original-price{color:#ff0000;text-decoration:line-through}
.view-product{
  display:inline-block;margin-top:8px;padding:8px 12px;border-radius:10px;
  background:linear-gradient(90deg,var(--ocl-neon-green),#9cf1c4);
  color:#0c122e;font-weight:700
}
.view-product:hover{filter:brightness(.95)}

/* Discount badge */
.product-image{position:relative}
.badge{
  position:absolute;top:10px;left:10px;background:var(--ocl-hot-pink);
  color:#fff;padding:6px 10px;border-radius:999px;font-weight:700;font-size:12px
}

/* Newsletter stronger card */
.newsletter .glass-card{
  border-radius:18px;background:rgba(255,255,255,.08);
  border:1px solid rgba(255,255,255,.15);
  box-shadow:0 18px 50px rgba(6,12,60,.25)
}
.newsletter-form input{
  background:rgba(255,255,255,.9);border:0;border-radius:12px;padding:12px 14px
}

/* Footer contrast */
.footer{background:linear-gradient(180deg,#0b154f,#070c2e);color:#eef1ff}
.footer a{color:#dfe7ff}
.footer a:hover{color:#ffffff}
.footer .footer-logo span{color:#fff;font-weight:700}

/* Mobile menu icon visibility on gradient */
.mobile-menu-btn{color:#fff;background:transparent;border:0;font-size:22px}
.filter-actions { margin-top: 10px; }
.tertiary-btn{
  background: #ffffff;
  color: #0A2463;
  border: 1px solid rgba(10,36,99,.15);
}
.tertiary-btn:hover{
  background: #f6f8ff;
  border-color: rgba(10,36,99,.3);
}
/* --- Image fit fixes (fill the frame) --- */
.product-detail .main-image img {
  object-fit: cover;       /* was contain */
  background: #fff;        /* keeps white behind transparent PNGs */
}

.related-image img,
.product-image img,
.thumb img {
  object-fit: cover;       /* ensure thumbnails & cards also fill */
  width: 100%;
  height: 100%;
}

/* --- Buttons: match homepage neon/mint pill --- */
/* remove old underline variant if it exists */
.view-product::after,
.view-related::after { content: none !important; }

/* unify styles for both product cards and related blocks */
.view-product,
.view-related {
  display: inline-block;
  margin-top: 8px;
  padding: 8px 12px;
  border-radius: 10px;
  background: linear-gradient(90deg, var(--ocl-neon-green), #9cf1c4);
  color: #0c122e;            /* readable on mint */
  font-weight: 700;
  box-shadow: 0 6px 16px rgba(59, 230, 140, .18);
  transition: transform .15s ease, filter .15s ease, box-shadow .15s ease;
}

.view-product:hover,
.view-related:hover {
  filter: brightness(.95);
  transform: translateY(-1px);
  box-shadow: 0 10px 24px rgba(59, 230, 140, .25);
}

/* optional: keep visited color consistent */
.view-product:visited,
.view-related:visited { color: #0c122e; }
