/* RESET AND BASE STYLES */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Poppins', sans-serif;
    background: #f6fbfe;
    color: #153e54;
    line-height: 1.5;
    overflow-x: hidden;
}

/* HEADER */
header {
    background: rgba(7, 48, 68, 0.95);
    backdrop-filter: blur(12px);
    box-shadow: 0 15px 35px -10px rgba(0,70,100,0.3);
    padding: 12px 0;
    position: sticky;
    top: 0;
    z-index: 100;
}

.header-inner {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 30px;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.logo h1, .logo a {
    font-family: 'Playfair Display', serif;
    font-weight: 700;
    font-size: 1.9rem;
    background: linear-gradient(130deg, #e2f0fc, #ffffff);
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
    text-decoration: none;
}

.logo a span {
    font-size: 0.9rem;
    color: #b8def5;
    display: block;
    margin-top: 2px;
}

/* MAIN NAVIGATION */
.main-nav ul {
    display: flex;
    list-style: none;
    gap: 30px;
}

.main-nav a {
    color: #e0f0fa;
    text-decoration: none;
    font-weight: 500;
    padding: 8px 0;
    position: relative;
    transition: 0.2s;
}

.main-nav a:hover, .main-nav a.active {
    color: white;
}

.main-nav a.active:after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 2px;
    background: #2b7fa3;
}

/* NAV BUTTONS */
.nav-buttons {
    display: flex;
    align-items: center;
    gap: 15px;
}

.admin-btn-nav {
    background: rgba(255,255,255,0.1);
    color: white;
    padding: 8px 16px;
    border-radius: 30px;
    text-decoration: none;
    font-size: 0.9rem;
    transition: 0.2s;
    border: 1px solid rgba(255,255,255,0.2);
}

.admin-btn-nav:hover {
    background: rgba(255,255,255,0.2);
    transform: translateY(-2px);
}

.mobile-menu-btn {
    display: none;
    background: none;
    border: none;
    color: white;
    font-size: 1.5rem;
    cursor: pointer;
}

/* MOBILE MENU */
.mobile-menu {
    display: none;
    background: #082a38;
    padding: 20px;
    position: absolute;
    top: 70px;
    left: 0;
    width: 100%;
    z-index: 99;
    border-bottom: 3px solid #2b7fa3;
}

.mobile-menu.active {
    display: block;
}

.mobile-menu ul {
    list-style: none;
}

.mobile-menu a {
    display: block;
    padding: 12px 20px;
    color: #e0f0fa;
    text-decoration: none;
    font-weight: 500;
    border-bottom: 1px solid #1f4d66;
}

.mobile-menu a:last-child {
    border-bottom: none;
}

.mobile-menu a:hover {
    background: #1f6f94;
    color: white;
}



/* MAIN LAYOUT */
.container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 30px;
}

.main-layout {
    display: flex;
    max-width: 1400px;
    margin: 0 auto;
    padding: 20px 30px;
    gap: 30px;
}

/* SIDEBAR */
.classic-sidebar {
    flex: 0 0 280px;
    background: linear-gradient(145deg, #ffffff, #f0f7fc);
    border-radius: 20px;
    padding: 20px 15px;
    height: fit-content;
    position: sticky;
    top: 100px;
    box-shadow: 0 10px 30px -10px rgba(0,40,60,0.2);
    border: 1px solid #d0e4f2;
}

.sidebar-header {
    font-family: 'Playfair Display', serif;
    font-size: 1.3rem;
    color: #0a2e40;
    padding: 0 5px 12px 5px;
    border-bottom: 2px solid #d0e4f2;
    display: flex;
    align-items: center;
    gap: 8px;
    margin-bottom: 8px;
}

.classic-category-menu {
    list-style: none;
    padding: 0;
}

.classic-category-link {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 10px 12px;
    color: #1f6f94;
    text-decoration: none;
    font-weight: 500;
    border-radius: 10px;
    transition: all 0.2s ease;
    border-left: 3px solid transparent;
    cursor: pointer;
    width: 100%;
    background: transparent;
    border: none;
    font-size: 0.95rem;
    text-align: left;
}

.classic-category-link:hover {
    background: #e1f0fa;
    border-left-color: #1f6f94;
    transform: translateX(3px);
}

.classic-category-link.active {
    background: #1f6f94;
    color: white;
    border-left-color: white;
}

.classic-category-link i {
    font-size: 1.1rem;
    width: 22px;
    text-align: center;
}

.product-count {
    background: rgba(31,111,148,0.1);
    color: #1f6f94;
    padding: 2px 6px;
    border-radius: 20px;
    font-size: 0.7rem;
    font-weight: 600;
    margin-left: auto;
}

.active .product-count {
    background: rgba(255,255,255,0.2);
    color: white;
}

/* MAIN CONTENT */
.main-content-area {
    flex: 1;
}

/* HERO SECTION */
.hero {
    padding: 20px 0 10px;
    text-align: center;
}

.hero h2 {
    font-size: 2.4rem;
    font-weight: 600;
    background: linear-gradient(145deg, #0f475e, #1f7f9f);
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
    font-family: 'Playfair Display', serif;
}

.hero p {
    max-width: 700px;
    margin: 8px auto 0;
    background: rgba(255,255,255,0.7);
    backdrop-filter: blur(4px);
    padding: 8px 20px;
    border-radius: 50px;
    font-size: 1rem;
    box-shadow: 0 8px 18px -8px rgba(0,100,130,0.2);
    color: #1c5d79;
}

/* CATEGORIES HEADING */
.categories-head {
    margin: 25px 0 15px;
    font-size: 1.8rem;
    font-weight: 600;
    border-left: 6px solid #227092;
    padding-left: 18px;
    color: #073d52;
    font-family: 'Playfair Display', serif;
}

/* CATEGORY CARDS */
.category-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
    gap: 15px;
    margin: 15px 0 30px;
}

.category-card {
    background: rgba(255,255,255,0.7);
    backdrop-filter: blur(12px);
    border: 1px solid rgba(255,255,255,0.6);
    border-radius: 30px 30px 30px 12px;
    box-shadow: 0 15px 25px -15px #106380;
    padding: 15px 12px 12px;
    text-align: center;
    transition: 0.25s;
    cursor: pointer;
}

.category-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 20px 30px -18px #06506b;
}

.cat-icon {
    font-size: 2.2rem;
    color: #136f94;
    margin-bottom: 5px;
}

.category-card h3 {
    font-size: 1.2rem;
    font-family: 'Playfair Display', serif;
    color: #0a4359;
    border-bottom: 2px dashed #9dd0f0;
    padding-bottom: 6px;
    margin-bottom: 6px;
}

.category-card p {
    font-size: 0.85rem;
    color: #1c5d79;
    line-height: 1.3;
}

/* PRODUCT SECTIONS */
.product-section {
    margin: 30px 0 20px;
    scroll-margin-top: 120px;
}

.section-title {
    font-size: 1.8rem;
    font-family: 'Playfair Display', serif;
    background: linear-gradient(130deg, #185974, #2588af);
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
    margin-bottom: 15px;
    display: flex;
    align-items: center;
    gap: 8px;
    border-bottom: 2px solid rgba(20,130,170,0.3);
    padding-bottom: 8px;
}

.product-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(180px, 1fr));
    gap: 1px;
}

.product-card {
    background: rgba(255,255,255,0.7);
    backdrop-filter: blur(12px);
    border-radius: 20px 20px 18px 18px;
    box-shadow: 0 10px 20px -10px #0d5775, 0 2px 0 0 #d9efff inset;
    overflow: hidden;
    border: 1px solid rgba(255,255,255,0.8);
    transition: 0.2s;
    display: flex;
    flex-direction: column;
    cursor: pointer;
    text-decoration: none;
    color: inherit;
}

.product-card:hover {
    box-shadow: 0 15px 25px -12px #074b67;
    transform: translateY(-3px);
}

.product-image {
    width: 100%;
    aspect-ratio: 1/1;
    background: linear-gradient(145deg, #aad0e6, #3883a8);
    background-size: cover;
    background-position: center;
    border-radius: 18px 18px 8px 8px;
    margin-bottom: 4px;
    border: 2px solid white;
    box-shadow: 0 4px 8px -4px #0a2e40;
    transition: 0.3s;
}

.product-card:hover .product-image {
    transform: scale(1.01);
    border-color: #8ecff0;
}

.product-info {
    padding: 8px 10px 12px;
    background: rgba(255,255,255,0.5);
    backdrop-filter: blur(4px);
}

.product-name {
    font-size: 1.1rem;
    font-weight: 700;
    font-family: 'Playfair Display', serif;
    color: #003853;
    line-height: 1.2;
    text-align: center;
}

.product-price {
    font-size: 0.9rem;
    color: #1f6f94;
    text-align: center;
    margin-top: 4px;
    font-weight: 600;
}

/* CONTACT PAGE */
.contact-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
    margin: 20px 0;
}



.contact-info-card .contact-text p {
    margin-bottom: 0;     /* Remove bottom margin */
    font-size: 0.9rem;    /* Slightly smaller */
}



.contact-info-card {
    background: white;
    border-radius: 20px;
    padding: 30px;
    box-shadow: 0 10px 30px -10px rgba(0,40,60,0.1);
}

.contact-info-item {
    display: flex;
    gap: 15px;
    margin-bottom: 25px;
    align-items: flex-start;
}

.contact-icon {
    width: 50px;
    height: 50px;
    background: #e1f0fa;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #1f6f94;
    font-size: 1.2rem;
}

.contact-text h3 {
    font-size: 1.1rem;
    color: #0a2e40;
    margin-bottom: 5px;
}

.contact-text p {
    color: #1c5d79;
}

.contact-form-card {
    background: white;
    border-radius: 20px;
    padding: 30px;
    box-shadow: 0 10px 30px -10px rgba(0,40,60,0.1);
}

.map-container {
    margin: 30px 0;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 10px 30px -10px rgba(0,40,60,0.1);
}

/* APPOINTMENT PAGE */
.appointment-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 30px;
    margin: 30px 0;
}

.appointment-form-card {
    background: white;
    border-radius: 20px;
    padding: 30px;
    box-shadow: 0 10px 30px -10px rgba(0,40,60,0.1);
}

.appointment-info-card {
    background: white;
    border-radius: 20px;
    padding: 30px;
    box-shadow: 0 10px 30px -10px rgba(0,40,60,0.1);
}

.appointment-type {
    padding: 20px;
    background: #f6fbfe;
    border-radius: 15px;
    margin-bottom: 20px;
    border-left: 4px solid #1f6f94;
}

.appointment-type h3 {
    color: #1f6f94;
    margin-bottom: 10px;
}

/* FOOTER */
footer {
    background: #082a38;
    color: #e0f0fa;
    padding: 40px 0 20px;
    margin-top: 60px;
    border-top: 5px solid #2b7fa3;
}

.footer-container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 30px;
}

.footer-main {
    display: grid;
    grid-template-columns: 2fr 1.5fr 1fr;
    gap: 40px;
    margin-bottom: 30px;
}

.footer-section-title {
    font-family: 'Playfair Display', serif;
    font-size: 1.2rem;
    color: white;
    margin-bottom: 15px;
    padding-bottom: 8px;
    border-bottom: 2px solid #2b7fa3;
    display: flex;
    align-items: center;
    gap: 8px;
}

.footer-about {
    color: #b7d9ec;
    line-height: 1.7;
    font-size: 0.9rem;
}

.footer-links {
    list-style: none;
}

.footer-links li {
    margin-bottom: 10px;
}

.footer-links a {
    color: #b7d9ec;
    text-decoration: none;
    transition: 0.2s;
}

.footer-links a:hover {
    color: white;
    padding-left: 5px;
}

.business-info-footer {
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.business-item {
    display: flex;
    gap: 12px;
    align-items: flex-start;
}

.business-icon {
    width: 35px;
    height: 35px;
    background: rgba(43, 127, 163, 0.2);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #5fa3c7;
    font-size: 1rem;
    flex-shrink: 0;
}

.business-details {
    flex: 1;
}

.business-label {
    font-size: 0.8rem;
    color: #8bb5d0;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    margin-bottom: 3px;
}

.business-value {
    color: white;
    font-weight: 500;
    line-height: 1.5;
    font-size: 0.9rem;
}

.hours-grid-footer {
    display: grid;
    grid-template-columns: auto 1fr;
    gap: 5px 12px;
    font-size: 0.9rem;
}

.hours-day-footer {
    color: #5fa3c7;
    font-weight: 500;
}

.hours-time-footer {
    color: white;
}

.footer-bottom {
    border-top: 1px solid #1f4d66;
    padding-top: 20px;
    margin-top: 20px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 15px;
}

.copyright {
    color: #8bb5d0;
    font-size: 0.85rem;
}

.socials-footer a {
    color: #b7d9ec;
    margin-left: 15px;
    font-size: 1.2rem;
    transition: 0.2s;
    text-decoration: none;
}

.socials-footer a:hover {
    color: white;
    transform: translateY(-2px);
}

.footer-logo {
    font-family: 'Playfair Display', serif;
    font-size: 1.6rem;
    color: white;
    margin-bottom: 12px;
}

.footer-logo span {
    font-size: 0.85rem;
    color: #8bb5d0;
    display: block;
    margin-top: 4px;
}

/* SCROLL TO TOP BUTTON */
.scroll-top-btn {
    position: fixed;
    bottom: 25px;
    right: 25px;
    background: #1f6f94;
    color: white;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    border: none;
    box-shadow: 0 8px 15px -5px #0a2e40;
    transition: 0.2s;
    z-index: 99;
    display: none;
}

.scroll-top-btn:hover {
    background: #2a8ab8;
    transform: translateY(-3px);
}

/* PRODUCT DETAIL MODAL */
.product-detail-modal {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.7);
    backdrop-filter: blur(8px);
    z-index: 2000;
    justify-content: center;
    align-items: center;
}

.product-detail-modal.active {
    display: flex;
}

.fancy-product-box {
    background: white;
    border-radius: 30px;
    width: 90%;
    max-width: 580px;
    max-height: 80vh;
    overflow-y: auto;
    box-shadow: 0 40px 80px -20px #0a2e40, 0 0 0 1px rgba(255,255,255,0.3) inset;
    position: relative;
    animation: modalPopIn 0.4s ease forwards;
}

@keyframes modalPopIn {
    0% { transform: scale(0.9); opacity: 0; }
    100% { transform: scale(1); opacity: 1; }
}

.product-detail-header {
    background: linear-gradient(135deg, #0a2e40, #1a5f7a);
    color: white;
    padding: 16px 24px;
    border-radius: 30px 30px 0 0;
    position: relative;
}

.product-detail-header h2 {
    font-family: 'Playfair Display', serif;
    font-size: 1.7rem;
    font-weight: 700;
    margin-bottom: 4px;
}

.product-detail-category {
    display: inline-block;
    background: rgba(255,255,255,0.2);
    backdrop-filter: blur(5px);
    padding: 4px 14px;
    border-radius: 40px;
    font-size: 0.8rem;
    font-weight: 500;
    border: 1px solid rgba(255,255,255,0.3);
}

.close-detail-btn {
    position: absolute;
    top: 16px;
    right: 16px;
    background: rgba(255,255,255,0.2);
    border: none;
    color: white;
    width: 34px;
    height: 34px;
    border-radius: 50%;
    font-size: 1.2rem;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: 0.2s;
    backdrop-filter: blur(5px);
    border: 1px solid rgba(255,255,255,0.3);
}

.close-detail-btn:hover {
    background: rgba(255,255,255,0.3);
    transform: rotate(90deg);
}

.product-detail-content {
    display: grid;
    grid-template-columns: 1fr;
    gap: 18px;
    padding: 22px;
}

/* Product Images */
.product-detail-images {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.detail-main-image {
    width: 50%;
    aspect-ratio: 1/1;
    border-radius: 20px;
    background-size: cover;
    background-position: center;
    box-shadow: 0 12px 20px -8px #0a2e40;
    border: 2px solid white;
    transition: 0.3s;
}

.detail-thumbnails {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    gap: 5px;
}

.detail-thumb {
    aspect-ratio: 1/1;
    border-radius: 10px;
    background-size: cover;
    background-position: center;
    cursor: pointer;
    transition: 0.2s;
    border: 2px solid transparent;
    box-shadow: 0 3px 5px -2px #0a2e40;
}

.detail-thumb:hover {
    transform: scale(1.03);
    border-color: #1f6f94;
}

.detail-thumb.active {
    border-color: #27ae60;
    box-shadow: 0 0 0 2px rgba(39,174,96,0.3);
}

/* Product Info */
.product-detail-info {
    display: flex;
    flex-direction: column;
    gap: 14px;
}

.detail-description {
    background: #f8fcff;
    padding: 16px;
    border-radius: 20px;
    border: 1px solid #d0e4f2;
}

.detail-description h3 {
    color: #1f6f94;
    font-size: 1.1rem;
    margin-bottom: 8px;
    display: flex;
    align-items: center;
    gap: 6px;
}

.detail-price-box {
    background: linear-gradient(135deg, #0a2e40, #1f6f94);
    color: white;
    padding: 16px;
    border-radius: 20px;
    box-shadow: 0 12px 20px -8px #0a2e40;
}

.detail-price-label {
    font-size: 0.85rem;
    opacity: 0.9;
    margin-bottom: 2px;
    display: flex;
    align-items: center;
    gap: 5px;
}

.detail-price-value {
    display: flex;
    align-items: baseline;
    gap: 8px;
    flex-wrap: wrap;
}

.detail-price-amount {
    font-size: 2.2rem;
    font-weight: 700;
    font-family: 'Playfair Display', serif;
    line-height: 1;
}

.detail-price-suffix {
    font-size: 0.9rem;
    opacity: 0.9;
    background: rgba(255,255,255,0.2);
    padding: 3px 10px;
    border-radius: 40px;
}

.detail-actions {
    display: flex;
    gap: 10px;
    margin-top: 2px;
}

.detail-action-btn {
    flex: 1;
    padding: 10px;
    border: none;
    border-radius: 30px;
    font-weight: 600;
    font-size: 0.9rem;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 6px;
    transition: 0.2s;
    text-decoration: none;
}

.detail-action-btn.primary {
    background: #1f6f94;
    color: white;
}

.detail-action-btn.primary:hover {
    background: #2a8ab8;
    transform: translateY(-2px);
}

.detail-action-btn.secondary {
    background: #e1e8ed;
    color: #4a5a67;
}

.detail-action-btn.secondary:hover {
    background: #d1dce6;
    transform: translateY(-2px);
}

/* UTILITY CLASSES */
.last-updated {
    text-align: right;
    margin: 15px 0;
    color: #5f8da5;
    font-size: 0.8rem;
}

.breadcrumb {
    padding: 15px 0;
    color: #5f8da5;
}

.breadcrumb a {
    color: #1f6f94;
    text-decoration: none;
}

.breadcrumb a:hover {
    text-decoration: underline;
}

.loading-spinner {
    text-align: center;
    padding: 40px;
    color: #1f6f94;
}

.loading-spinner i {
    font-size: 2rem;
    animation: spin 1s linear infinite;
}

@keyframes spin {
    0% { transform: rotate(0deg); }
    100% { transform: rotate(360deg); }
}

.no-products-message {
    text-align: center;
    padding: 40px;
    color: #5f8da5;
    font-size: 1.1rem;
}