/* Base Variables & Reset */
@import url('https://fonts.googleapis.com/css2?family=Montserrat:wght@300;400;500;600;700;800&family=Inter:wght@300;400;500;600&display=swap');

:root {
    --primary-color: #ff9ece; /* Light pink */
    --primary-hover: #ff7cbd;
    --text-dark: #333333;
    --text-light: #777777;
    --bg-light: #ffffff;
    --bg-pink-light: #fff0f6;
    --bg-pink-medium: #ffdced;
    --footer-bg: #404348;
    
    --font-heading: 'Montserrat', sans-serif;
    --font-body: 'Inter', sans-serif;
    
    --container-width: 1200px;
    --transition: all 0.3s ease;
}

/* Layout Fixes */
html, body {
    min-height: 100%;
}
body {
    display: flex;
    flex-direction: column;
    min-height: 100vh;
}

/* Titles and Underlines */
.page-title {
    text-align: center;
    padding: 50px 0 20px 0;
}
.page-title h1 {
    font-size: 2.5em;
    font-family: var(--font-heading);
    margin-bottom: 15px;
}
.title-underline {
    height: 4px;
    width: 60px;
    background: var(--primary-color);
    margin: 0 auto;
    border-radius: 2px;
}

/* Modern Forms */
.form-control {
    width: 100%;
    padding: 15px;
    border: 1px solid #e1e1e1;
    border-radius: 8px;
    outline: none;
    transition: all 0.3s ease;
}
.form-control:focus {
    border-color: #d63384;
    box-shadow: 0 0 0 3px rgba(214, 51, 132, 0.1);
}
.btn {
    transition: all 0.3s ease;
    border-radius: 8px;
}
.btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: var(--font-body);
    color: var(--text-dark);
    line-height: 1.6;
    background-color: var(--bg-light);
    overflow-x: hidden;
}

a {
    text-decoration: none;
    color: inherit;
    transition: var(--transition);
}

ul {
    list-style: none;
}

img {
    max-width: 100%;
    height: auto;
    display: block;
}

.container {
    max-width: var(--container-width);
    margin: 0 auto;
    padding: 0 20px;
}

.text-pink {
    color: var(--primary-color) !important;
}

.text-center {
    text-align: center;
}
.text-center h2 { text-align: center; }

/* Typography */
h1, h2, h3, h4, h5, h6 {
    font-family: var(--font-heading);
    font-weight: 600;
    color: var(--text-dark);
    line-height: 1.2;
}

.section-title {
    font-size: 24px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 10px;
}

.section-subtitle {
    font-size: 11px;
    text-transform: uppercase;
    color: var(--text-dark);
    letter-spacing: 1px;
    margin-bottom: 30px;
}

/* Buttons */
.btn {
    display: inline-block;
    padding: 12px 30px;
    font-family: var(--font-heading);
    font-weight: 600;
    text-transform: uppercase;
    font-size: 13px;
    border: none;
    cursor: pointer;
    transition: var(--transition);
    text-align: center;
}

.btn-primary {
    background-color: var(--primary-color);
    color: #fff;
}

.btn-primary:hover {
    background-color: var(--primary-hover);
}

.btn-pink-light {
    background-color: var(--primary-color);
    color: #fff;
    padding: 10px 25px;
    border-radius: 3px;
    opacity: 0.8;
}

.btn-pink-light:hover {
    opacity: 1;
}

.btn-sm {
    padding: 8px 20px;
    font-size: 12px;
}

.btn-block {
    display: block;
    width: 100%;
}

/* Header */
.main-header {
    background-color: rgba(255, 255, 255, 0.6);
    position: sticky;
    top: 0;
    z-index: 1000;
    backdrop-filter: blur(8px);
    -webkit-backdrop-filter: blur(8px);
    border-bottom: none;
    box-shadow: 0 4px 30px rgba(0, 0, 0, 0.03);
}

.main-header .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    height: 90px;
}

.logo img {
    height: 140px;
    transform: translateY(15px);
    transition: all 0.3s ease;
}

.main-nav ul {
    display: flex;
    gap: 35px;
    height: 90px;
}

.main-nav a {
    font-family: var(--font-heading);
    font-size: 13px;
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 1px;
    color: var(--text-dark);
    position: relative;
    display: flex;
    align-items: center;
    height: 100%;
}

.main-nav a::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 3px;
    background-color: var(--primary-color);
    opacity: 0;
    transition: opacity 0.3s ease;
}

.main-nav a:hover, .main-nav a.active {
    color: var(--primary-color);
}

.main-nav a:hover::after, .main-nav a.active::after {
    opacity: 1;
}

.header-icons {
    display: flex;
    gap: 20px;
    align-items: center;
}

.search-form {
    display: flex;
    align-items: center;
}

.search-input {
    width: 0;
    padding: 0;
    border: none;
    outline: none;
    transition: width 0.3s ease, padding 0.3s ease;
    background: transparent;
    border-bottom: 1px solid var(--text-dark);
    font-size: 13px;
    opacity: 0;
}

.search-input.active {
    width: 150px;
    padding: 5px;
    opacity: 1;
}

.icon-btn {
    background: none;
    border: none;
    font-size: 16px;
    color: var(--text-dark);
    cursor: pointer;
    transition: color 0.3s ease;
}

.icon-btn:hover {
    color: var(--primary-color);
}

.mobile-menu-btn {
    display: none;
    background: none;
    border: none;
    font-size: 20px;
    color: var(--text-dark);
    cursor: pointer;
}

/* Hero Section */
.hero-section {
    position: relative;
    height: 700px;
    margin-top: -90px; /* Pull under the header */
}

.hero-slide-flex {
    display: flex;
    height: 700px;
}

.hero-content-left {
    flex: 1;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    padding: 50px;
    padding-top: 140px; /* Offset for the header */
    position: relative;
    background: #fff; /* Ensure it's solid white behind the header */
}

.hero-text-box {
    max-width: 450px;
    width: 100%;
}

.hero-subtitle {
    font-size: 11px;
    color: var(--text-light);
    margin-bottom: 20px;
    text-transform: uppercase;
    letter-spacing: 2px;
    text-align: center;
}

.hero-title {
    font-size: 42px;
    font-weight: 700;
    line-height: 1.1;
    margin-bottom: 40px;
    text-align: left;
    letter-spacing: 1px;
}

.hero-divider {
    height: 2px;
    width: 60%;
    margin-left: -70px;
    margin-bottom: 40px;
    margin-top: 20px;
}

.booking-section {
    border-top: 1px solid #eee;
    padding-top: 20px;
}

.hero-booking-text {
    font-size: 11px;
    color: var(--text-light);
    margin-bottom: 15px;
    text-transform: uppercase;
    letter-spacing: 1px;
    text-align: center;
}

.hero-booking-form {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 15px;
}

.form-row {
    display: flex;
    gap: 10px;
    width: 100%;
}

.form-row input, .form-row select {
    flex: 1;
    padding: 10px 15px;
    border: 1px solid #ddd;
    border-radius: 3px;
    font-size: 12px;
    font-family: var(--font-body);
    outline: none;
}

.form-row input::placeholder {
    color: #999;
}

.hero-arrows {
    position: absolute;
    bottom: 40px;
    right: 0;
    display: flex;
}

.arrow-btn {
    width: 40px;
    height: 40px;
    border: none;
    background-color: var(--bg-pink-light);
    color: var(--primary-color);
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: var(--transition);
}

.arrow-btn:hover {
    background-color: var(--primary-color);
    color: #fff;
}

.hero-image-right {
    flex: 1;
    min-width: 0;
    height: 100%;
}

.hero-image-right .swiper-slide {
    height: 100%;
}

.hero-image-right img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-bottom-left-radius: 0;
    filter: blur(4px) brightness(0.85);
    transition: filter 0.4s ease;
}

.hero-image-right:hover img {
    filter: blur(0) brightness(1);
}

.hero-custom-arrows {
    position: absolute;
    bottom: 50px;
    right: -40px; /* pull out of left box to overlap image */
    display: flex;
    z-index: 10;
}

@media (max-width: 992px) {
    .hero-image-right img {
        border-bottom-left-radius: 0;
    }
    .hero-custom-arrows {
        right: 0;
        bottom: 0;
        transform: translateY(50%);
    }
}

/* Services Section */
.services-section {
    padding: 80px 0;
}

.services-wrapper {
    position: relative;
    max-width: 100%;
    overflow: hidden;
}

/* PROCEDURES SWIPER */
.procedures-swiper-wrap {
    position: relative;
    padding: 0;
    max-width: 100%;
    margin: 0 auto;
}
.procedures-swiper {
    padding-bottom: 20px;
}
.procedure-card {
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    height: 500px;
    border-radius: 16px;
    overflow: hidden;
    position: relative;
    text-decoration: none;
    background-size: cover;
    background-position: center;
    padding: 30px 25px;
    color: #fff;
    transition: transform 0.3s ease;
}
.procedure-card::before {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(to top, rgba(0,0,0,0.85) 0%, rgba(0,0,0,0.4) 40%, rgba(0,0,0,0) 80%);
    z-index: 1;
}
.procedure-card:hover {
    transform: translateY(-5px);
}
.card-content {
    position: relative;
    z-index: 2;
    padding-right: 40px; /* space for arrow */
}
.card-title {
    font-size: 22px;
    font-weight: 700;
    margin-bottom: 10px;
    line-height: 1.2;
    color: #fff;
}
.card-desc {
    font-size: 13px;
    color: #ddd;
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease;
}
.card-desc p {
    margin: 0 0 5px 0;
}
.procedure-card:hover .card-desc {
    max-height: 150px;
}
.card-arrow {
    position: absolute;
    bottom: 30px;
    right: 20px;
    z-index: 2;
    background: #5b79e0;
    border: none;
    width: 35px;
    height: 35px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    cursor: pointer;
    transition: background 0.3s ease;
}
.procedure-card:hover .card-arrow {
    background: #4a63b8;
}
.scroll-arrow.procedures-swiper-prev,
.scroll-arrow.procedures-swiper-next {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    z-index: 10;
    background: #fff;
    color: #333;
    border: none;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    box-shadow: 0 5px 15px rgba(0,0,0,0.15);
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
}
.scroll-arrow.procedures-swiper-prev {
    left: 20px;
}
.scroll-arrow.procedures-swiper-next {
    right: 20px;
}
@media (max-width: 768px) {
    .procedure-card {
        height: 350px;
        padding: 20px 15px;
    }
    .card-title {
        font-size: 18px;
    }
    .card-content {
        padding-right: 0;
        margin-bottom: 30px;
    }
    .card-desc {
        display: none;
    }
    .card-arrow {
        bottom: 20px;
        right: 15px;
    }
}

.products-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
}

/* List View Styles */
.products-grid.list-view {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.products-grid.list-view .product-card {
    display: flex;
    flex-direction: row;
    align-items: center;
}

.products-grid.list-view .product-image {
    width: 250px;
    height: 250px;
    flex-shrink: 0;
}

.products-grid.list-view .product-info {
    flex: 1;
    display: flex;
    flex-direction: column;
    justify-content: center;
    padding-left: 30px;
}

.products-grid.list-view .product-info > div {
    justify-content: flex-start;
}

.product-card {
    position: relative;
    overflow: hidden;
    height: 350px;
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 0;
}

.service-card {
    position: relative;
    overflow: hidden;
    height: 350px;
}

.service-card img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease, filter 0.5s ease;
    filter: brightness(0.6);
}

.service-card:hover img {
    transform: scale(1.05);
    filter: brightness(1);
}

.service-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    padding: 30px 20px;
    background: linear-gradient(to top, rgba(0,0,0,0.8), transparent);
    z-index: 10;
}

.service-title {
    color: #fff;
    font-size: 16px;
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.slider-arrow {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 40px;
    height: 40px;
    background: #fff;
    border: none;
    box-shadow: 0 0 10px rgba(0,0,0,0.1);
    cursor: pointer;
    z-index: 20;
    display: flex;
    align-items: center;
    justify-content: center;
}

.slider-arrow:hover {
    background: var(--primary-color);
    color: #fff;
}

.slider-arrow.left-abs {
    left: 0;
}

.slider-arrow.right-abs {
    right: 0;
}

/* About Section */
.about-section {
    position: relative;
    padding: 100px 0; /* plenty of space for the big circle */
}

.about-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    height: 100%;
    width: 28%; /* Match exactly the pink block width in picture */
    background: #ffb6db; /* Pink color */
    z-index: 0;
}

.about-content-wrapper {
    position: relative;
    z-index: 1;
    display: flex;
    gap: 60px;
    align-items: center;
}

.about-image-container {
    flex: 1;
    display: flex;
    justify-content: flex-end; 
}

.about-main-img {
    width: 500px;
    height: 500px;
    object-fit: cover;
    border-radius: 50%;
    border: none; /* NO WHITE BORDER */
    box-shadow: 0 15px 40px rgba(0,0,0,0.1); /* subtle shadow */
}

.pink-circle-bg {
    display: none; 
}

.about-text {
    flex: 1;
    padding-left: 20px;
}

.about-text .section-title {
    font-weight: 300;
    letter-spacing: 1px;
    margin-bottom: 25px;
}

.about-text p {
    margin-bottom: 20px;
    font-size: 14px;
    color: #555;
    line-height: 1.8;
}

/* Stats Section */
.stats-section {
    background: url('../img/471855626_575632055187008_4042453227957581304_n.jpg') center/cover no-repeat;
    padding: 100px 0 160px 0; /* More padding top, and large padding bottom to let equipment overlap */
    color: var(--text-dark);
    position: relative;
}

.stats-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(255, 182, 219, 0.2); /* very light overlay just in case */
    z-index: 0;
}

.stats-section .container {
    position: relative;
    z-index: 1;
}

.stats-grid {
    display: flex;
    justify-content: center;
    gap: 120px;
}

.stat-item {
    display: flex;
    align-items: center; /* side by side icon and text */
    text-align: left;
    gap: 20px;
}

.stat-icon {
    font-size: 50px;
    color: var(--text-dark);
}

.stat-content h3 {
    font-size: 45px;
    font-weight: 800;
    margin-bottom: 0;
    line-height: 1;
}

.stat-content p {
    font-size: 15px;
    font-weight: 500;
    color: #444;
    margin: 5px 0 0 0;
}

/* Equipment Section */
.equipment-section {
    position: relative;
    z-index: 10;
    margin-top: -120px; /* Pull it up more to strongly overlap the stats section background */
    padding-bottom: 80px;
}

.equipment-card {
    background: #fff;
    display: flex;
    border-radius: 6px;
    box-shadow: 0 15px 50px rgba(0,0,0,0.1); /* exactly like picture 1 */
    max-width: 1000px;
    margin: 0 auto;
    overflow: hidden; /* Ensure image is clipped to border radius */
}

.equipment-image-col {
    flex: 1;
    position: relative;
}

.equipment-image-col img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.equipment-btn {
    position: absolute;
    bottom: 30px;
    left: 30px;
    padding: 12px 30px;
    font-weight: 600;
    text-transform: uppercase;
    box-shadow: 0 5px 15px rgba(255, 158, 206, 0.4);
}

.equipment-text-col {
    flex: 1;
    padding: 60px 50px;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.equipment-text-col .section-title {
    font-weight: 300;
    font-size: 28px;
    margin-bottom: 25px;
    line-height: 1.3;
}

.stat-content h3 {
    font-size: 36px;
    font-weight: 700;
    line-height: 1;
}

.stat-content p {
    font-size: 12px;
    text-transform: uppercase;
    font-weight: 500;
}

/* Equipment Section */
.equipment-section {
    padding: 80px 0;
    background-color: var(--bg-pink-light);
    position: relative;
}

.equipment-wrapper {
    display: flex;
    align-items: center;
    gap: 40px;
    background: #fff;
    padding: 40px;
    border-radius: 5px;
    box-shadow: 0 5px 20px rgba(0,0,0,0.05);
}

.equipment-image-box {
    flex: 1;
    position: relative;
}

.equipment-image-box img {
    width: 100%;
}

.btn-abs {
    position: absolute;
    bottom: -20px;
    left: 20px;
}

.equipment-text-box {
    flex: 1;
}

.equipment-list {
    list-style: none;
    font-size: 14px;
}

.equipment-list li {
    position: relative;
    padding-left: 15px;
}

.equipment-list li::before {
    content: "■";
    color: var(--primary-color);
    position: absolute;
    left: 0;
    top: 2px;
    font-size: 10px;
}

/* Shop Teaser Section */
.shop-teaser {
    padding: 60px 0;
    border-bottom: 1px solid #eee;
}

.shop-teaser-flex {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 40px;
}

.shop-teaser-title {
    flex: 0 0 200px;
}

.shop-teaser-text {
    flex: 1;
    font-size: 13px;
    color: var(--text-light);
}

.shop-teaser-btn {
    flex: 0 0 150px;
    text-align: right;
}

/* Team Section */
.team-section {
    padding: 80px 0;
    background-color: #fafafa;
}

.team-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 30px;
    margin-top: 40px;
}

.team-card {
    position: relative;
    overflow: hidden;
    background-color: #fff;
    border-radius: 0;
    height: auto;
    box-shadow: none;
    transition: transform 0.4s cubic-bezier(0.25, 0.8, 0.25, 1), box-shadow 0.4s cubic-bezier(0.25, 0.8, 0.25, 1);
    z-index: 1;
}

.team-card:hover {
    transform: translateY(-12px) scale(1.04);
    box-shadow: 0 25px 50px rgba(0,0,0,0.15);
    z-index: 10;
}

.team-img-container {
    position: absolute;
    top: -15px;
    left: 15px;
    right: 15px;
    height: 363px;
    border-radius: 0;
    overflow: hidden;
    background-color: #e5e7eb;
    z-index: 1;
    transition: all 0.4s cubic-bezier(0.25, 0.8, 0.25, 1);
}

.team-card img {
    width: 100%;
    height: 100%;
    min-height: 480px;
    object-fit: cover;
    object-position: top center;
}

.team-card:hover .team-img-container {
    top: 0;
    left: 0;
    right: 0;
    height: 100%;
}

.team-card:hover img {
    /* No transform scale to prevent cropping */
}

.team-info {
    position: relative;
    margin-top: 310px;
    z-index: 2;
    background: linear-gradient(to top, rgba(255,255,255,0.98) 0%, rgba(255,255,255,0.95) 50%, rgba(255,255,255,0.8) 75%, rgba(255,255,255,0) 100%);
    padding: 20px 15px 25px 15px;
    text-align: left;
}

.team-info h3.text-pink {
    color: #c53c7b !important;
}

.team-info h3, .team-info h4 {
    font-family: var(--font-heading);
    font-weight: 700;
    font-size: 18px;
    margin-bottom: 12px;
    line-height: 1.3;
    letter-spacing: 0.3px;
}

.team-roles {
    list-style: none !important;
    padding: 0 !important;
    margin: 0 !important;
    font-family: var(--font-body);
    font-size: 12px;
    color: #444;
}

.team-roles li {
    position: relative;
    padding-left: 15px;
    margin-bottom: 6px;
    line-height: 1.4;
    font-weight: 500;
}

.team-roles li::before {
    content: ">";
    position: absolute;
    left: 0;
    color: #444;
    font-weight: 500;
}

/* Footer */
.main-footer {
    background-color: var(--footer-bg);
    color: #fff;
    padding: 60px 0 30px;
    font-size: 13px;
}

.footer-content {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 40px;
    margin-bottom: 30px;
}

.footer-column h4 {
    color: #fff;
    font-size: 13px;
    text-transform: uppercase;
    margin-bottom: 20px;
    letter-spacing: 1px;
}

.footer-column p {
    color: #ccc;
    margin-bottom: 20px;
}

.btn-footer-map {
    background-color: #fff;
    color: var(--text-dark);
    font-weight: 500;
    padding: 8px 15px;
    font-size: 12px;
}

.btn-footer-map i {
    color: var(--primary-color);
    margin-left: 5px;
}

.footer-column ul {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.footer-column ul a {
    color: #ccc;
    text-transform: uppercase;
    font-size: 12px;
}

.footer-column ul a:hover {
    color: var(--primary-color);
}

.social-links {
    display: flex;
    gap: 15px;
    margin-bottom: 30px;
}

.social-links a {
    color: #ccc;
    font-size: 16px;
}

.social-links a:hover {
    color: var(--primary-color);
}

.footer-phone {
    font-size: 24px;
    font-weight: 700;
    font-family: var(--font-heading);
    color: var(--primary-color);
}

/* -------------------- SHOP PAGE -------------------- */
.page-title {
    padding: 40px 0 20px;
}

.page-title h1 {
    font-size: 32px;
    letter-spacing: 2px;
}

.title-underline {
    width: 60px;
    height: 2px;
    background-color: var(--text-dark);
    margin: 15px auto 0;
}

.shop-section {
    padding: 40px 0 80px;
}

.shop-layout {
    display: flex;
    gap: 40px;
}

.shop-sidebar {
    flex: 0 0 250px;
}

.widget-title {
    font-size: 16px;
    margin-bottom: 20px;
    border-bottom: 1px solid #eee;
    padding-bottom: 10px;
    color: var(--text-dark);
}

.category-list {
    margin-bottom: 40px;
}

.category-list li {
    margin-bottom: 12px;
}

.category-list a {
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-size: 13px;
    color: var(--text-light);
    text-transform: uppercase;
}

.category-list li.active a, .category-list a:hover {
    color: var(--text-dark);
    font-weight: 500;
}

.category-list i {
    font-size: 10px;
    color: var(--primary-color);
}

.price-slider-container {
    padding: 10px 0;
}

.price-slider {
    position: relative;
    height: 4px;
    background: #eee;
    margin-bottom: 20px;
    border-radius: 2px;
}

.slider-track {
    position: absolute;
    height: 100%;
    background: var(--primary-color);
    left: 10%;
    right: 30%;
}

.slider-thumb {
    position: absolute;
    top: 50%;
    width: 14px;
    height: 14px;
    background: var(--primary-color);
    border-radius: 50%;
    transform: translate(-50%, -50%);
    cursor: pointer;
}

.slider-thumb.min {
    left: 10%;
}

.slider-thumb.max {
    left: 70%;
}

.price-values {
    display: flex;
    justify-content: space-between;
    font-size: 13px;
    margin-bottom: 20px;
    color: var(--text-dark);
}

.shop-content {
    flex: 1;
}

.shop-banner {
    position: relative;
    margin-bottom: 30px;
}

.shop-banner img {
    width: 100%;
    height: 200px;
    object-fit: cover;
}

.banner-title {
    position: absolute;
    top: 50%;
    left: 40px;
    transform: translateY(-50%);
    color: #fff;
    font-size: 28px;
    letter-spacing: 1px;
}

.shop-toolbar {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 15px 0;
    border-bottom: 1px solid #eee;
    margin-bottom: 30px;
    font-size: 13px;
}

.sort-by select {
    border: 1px solid #ddd;
    padding: 5px 10px;
    border-radius: 3px;
    outline: none;
    color: var(--text-light);
}

.view-options {
    display: flex;
    align-items: center;
    gap: 10px;
}

.view-btn {
    border: none;
    background: none;
    color: var(--text-light);
    cursor: pointer;
    font-size: 16px;
}

.view-btn.active, .view-btn:hover {
    color: var(--primary-color);
}

.products-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
    margin-bottom: 40px;
}

.product-card {
    text-align: left;
}

.product-image {
    background: #f9f9f9;
    padding: 20px;
    margin-bottom: 15px;
    display: flex;
    justify-content: center;
    align-items: center;
    height: 250px;
}

.product-image img {
    max-height: 100%;
}

.product-name {
    font-size: 13px;
    font-weight: 500;
    margin-bottom: 10px;
    color: var(--text-dark);
}

.product-price-row {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.product-price-row .price {
    font-weight: 700;
    font-size: 16px;
}

.add-to-cart {
    background: none;
    border: none;
    font-size: 18px;
    color: var(--text-dark);
    cursor: pointer;
    transition: var(--transition);
}

.add-to-cart:hover {
    color: var(--primary-color);
}

.pagination-area {
    display: flex;
    justify-content: space-between;
    align-items: center;
    border-top: 1px solid #eee;
    padding-top: 20px;
    font-size: 12px;
    color: var(--text-light);
}

.pagination {
    display: flex;
    gap: 10px;
    align-items: center;
}

.pagination a {
    color: var(--text-light);
}

.pagination a.active {
    color: var(--text-dark);
    font-weight: 600;
    border-bottom: 1px solid var(--text-dark);
}

/* Responsive adjustments */
@media (max-width: 992px) {
    .hero-divider {
        margin: 20px auto 40px auto;
    }
    .main-nav {
        display: none;
        position: absolute;
        top: 90px;
        left: 0;
        width: 100%;
        background: #fff;
        padding: 20px;
        box-shadow: 0 5px 10px rgba(0,0,0,0.05);
        flex-direction: column;
    }
    
    .main-nav.active {
        display: flex;
    }
    
    .main-nav ul {
        flex-direction: column;
        gap: 15px;
        height: auto;
    }

    .main-nav a {
        height: auto;
        padding: 10px 0;
    }

    .main-nav a::after {
        display: none;
    }

    .mobile-menu-btn {
        display: block;
    }
    
    .hero-section {
        height: auto;
        margin-top: -90px;
    }
    .hero-slide-flex {
        flex-direction: column;
        height: auto;
        min-height: 600px;
        position: relative;
    }
    .hero-image-right {
        display: none !important;
    }
    .hero-content-left {
        z-index: 2;
        background: #fff;
        width: 85%;
        margin: 120px auto 50px auto;
        height: auto;
        min-height: auto;
        padding: 40px 20px 80px 20px;
        border-radius: 4px;
        box-shadow: 0 15px 40px rgba(0,0,0,0.15);
    }
    .hero-custom-arrows {
        display: none !important;
    }
    .about-content-wrapper {
        flex-direction: column;
        gap: 30px;
    }
    .about-section::before {
        width: 50%; /* Just a smaller block on mobile or 100% width top block */
    }
    .about-main-img {
        width: 300px;
        height: 300px;
        border-width: 10px;
    }
    .about-image-container {
        justify-content: center;
    }
    .stats-section {
        padding-bottom: 80px;
    }
    .stats-grid {
        flex-direction: column;
        align-items: center;
        gap: 40px;
    }
    .equipment-section {
        margin-top: -40px;
    }
    .equipment-card {
        flex-direction: column;
    }
    .shop-teaser-flex {
        flex-direction: column;
        text-align: center;
        gap: 20px;
    }
    .shop-teaser-title, .shop-teaser-text, .shop-teaser-btn {
        flex: none;
        width: 100%;
        text-align: center;
    }
    .team-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    .shop-layout {
        flex-direction: column;
    }
}
@media (max-width: 576px) {
    .team-grid {
        grid-template-columns: 1fr;
    }
    .products-grid {
        grid-template-columns: repeat(2, 1fr) !important;
        gap: 12px !important;
    }
    .hero-title {
        font-size: 32px;
    }
    .form-row {
        flex-direction: column;
    }
    .pink-circle-bg {
        width: 250px;
        height: 250px;
    }
    .about-main-img {
        width: 250px;
        height: 250px;
    }
    .header-icons {
        gap: 12px;
    }
    .search-form {
        position: relative;
    }
    .search-input.active {
        position: absolute;
        right: 0;
        top: 150%;
        width: 200px;
        background: #fff;
        padding: 10px 15px;
        border: 1px solid #eee;
        border-radius: 8px;
        box-shadow: 0 10px 25px rgba(0,0,0,0.1);
        z-index: 100;
    }
    .logo img {
        height: 100px;
        transform: translateY(5px);
    }
}
