/*
 Theme Name:   OceanWP Child
 Template:     oceanwp
 Description:  Customization
 Author:       Jean Bermudez
 Version:      1.0.0
*/

/* GENERAL RULES */
/* General: Custom Titles */
h1, h2, h3 {
    letter-spacing: -0.5px;
    transition: color 0.3s ease;
}

/* General: Site Width */
#content-wrap.container {
    max-width: 100%;
}
/* General: Responsive Padding */
@media (max-width: 1200px) {
	body:not(.single-post) #content-wrap {
		padding-left: 10px;
    padding-right: 10px;
    box-sizing: border-box;
	}
}

/* General: Desktop Paragraphs */
@media (min-width: 960px) {
	p {
		font-size: 16px; 
		line-height: 1.6; 
	}
}

/* BREADCRUMBS */
.oceanwp-breadcrumb .site-breadcrumbs {
	padding-left: 2em;
	background: #e1e5e8;
	height: auto;
	min-height: 30px;
	line-height: 30px;
}

body.single-post .oceanwp-breadcrumb .site-breadcrumbs {
	top: -50px;
}

.site-breadcrumbs ol li {
	display: inline;
	white-space: normal;
	word-wrap: break-word;
}

:is(.trail-begin, .trail-item) a, .breadcrumb-sep {
	color: #027361;
}

.trail-end a {
	color: #222;
	font-weight: bold;
}

/* Breadcrumbs Responsive */
@media (max-width: 768px) {
    body.single-post .oceanwp-breadcrumb .site-breadcrumbs {
        top: -20px;
    }
}

@media (max-width: 480px) {
    body.single-post .oceanwp-breadcrumb .site-breadcrumbs {
        top: -10px;
    }
    .trail-end a {
        font-weight: 500;
    }
}

/* VIDEO HOME HEADER */
.home-video-container {
    position: relative;
    width: 100%;
    height: 30vh;
    overflow: hidden;
    display: flex;
    align-items: center;
    justify-content: center;
}

.home-video-element {
    position: absolute; /* Send to back */
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    z-index: 1; /* back layer */
}

.video-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(12 89 71 / 70%);
    z-index: 2; /* mid layer */
}

.home-video-content {
    position: relative;
    z-index: 3; /* top layer */
    text-align: center;
    padding: 0 20px;
}

.home-video-title {
    color: #ffffff;
    font-size: clamp(1.5rem, 5vw, 4rem);
    font-weight: 500;
    letter-spacing: 2px;
    text-transform: none;
    max-width: 80%;
    margin: 0 auto;
    line-height: 1.3;
}

/* Video Home Responsive */
@media (max-width: 768px) {
    .home-video-title {
        font-size: 2.2rem;
    }
}


/* CATEGORIES SLIDER */
.custom-category-section {
    display: block; /* Cambiado de flex para simplificar el contenedor */
    max-width: 1200px;
    margin: 0 auto;
    box-sizing: border-box;
    position: relative;
}

body.home .custom-category-section {
    padding: 40px 0 20px;
}

body.single-product .custom-category-section {
    padding: 40px 0;
}

/* Slider Container */
.category-slider-container {
    position: relative;
    display: flex;
    align-items: center;
    width: 100%;
}

/* Swiper Wrapper & Navigation Space */
.custom-category-section .myCategorySwiper {
    width: 100%;
    margin: 0 45px; 
    overflow: hidden;
}

/* Slider Cards */
.category-card {
    display: block;
    text-decoration: none;
    transition: all 0.3s ease;
}

.category-image-wrapper {
    border: 1px solid #222; 
    border-radius: 18px;    
    overflow: hidden;
    line-height: 0;
    background-color: #f9f9f9;
}

.category-image-wrapper img {
    width: 100%;
    aspect-ratio: 1 / 1;
    object-fit: cover;
    display: block;
    transition: transform 0.5s cubic-bezier(0.25, 1, 0.5, 1);
}

.category-card:hover img {
    transform: scale(1.08);
}

/* Slider Titles */
.category-title {
    margin-top: 15px;
    font-family: inherit;
    font-weight: 600;
    font-size: 15px;
    color: #111;
    text-align: center;
    text-transform: capitalize;
}

/* Slider Navigation Arrows */
.custom-category-section .swiper-button-next, 
.custom-category-section .swiper-button-prev {
    color: #000 !important;
    position: absolute !important;
    top: 50% !important; 
    transform: translateY(-110%) !important; 
    width: 30px !important;
    height: 30px !important;
    z-index: 50 !important;
    margin: 0 !important;
    display: flex !important;
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.3s ease;
}

.custom-category-section .swiper-button-prev { left: 0 !important; }
.custom-category-section .swiper-button-next { right: 0 !important; }

.custom-category-section .swiper-button-next::after, 
.custom-category-section .swiper-button-prev::after {
    font-size: 22px !important;
    font-weight: 900 !important;
    font-family: swiper-icons !important;
}

/* CLS Prevention: File before JS */
.myCategorySwiper:not(.swiper-initialized) .swiper-wrapper {
    display: flex !important;
    flex-direction: row !important;
    gap: 20px; 
    overflow: hidden;
}

.myCategorySwiper:not(.swiper-initialized) .swiper-slide {
    width: calc((100% - 60px) / 4) !important; 
    flex-shrink: 0;
}

/* Fix for initialized state */
.myCategorySwiper.swiper-initialized .swiper-wrapper {
    gap: 0 !important; 
}

/* Display Arrows when ready */
.custom-category-section:has(.swiper-initialized) .swiper-button-next, 
.custom-category-section:has(.swiper-initialized) .swiper-button-prev {
    opacity: 1;
    visibility: visible;
    pointer-events: auto;
}

/* RESPONSIVE */
@media (max-width: 1024px) {
    .myCategorySwiper:not(.swiper-initialized) .swiper-slide {
        width: calc((100% - 20px) / 2) !important;
    }
}

@media (max-width: 768px) {
    .custom-category-section {
        padding: 30px 0;
    }

    .category-slider-container {
        width: 85%; 
        margin: 0 auto; 
    }

    .custom-category-section .myCategorySwiper {
        margin: 0; 
    }

    .custom-category-section .swiper-button-prev { left: -35px !important; }
    .custom-category-section .swiper-button-next { right: -35px !important; }

    .myCategorySwiper:not(.swiper-initialized) .swiper-slide {
        width: 100% !important;
    }
}

@media (max-width: 319px) {
    .swiper-wrapper .swiper-slide {
        width: 100% !important;
    }
}

/* FEATURED PRODUCTS HOME */
/* Featured: Cards */
.featured-slider .swiper-wrapper .swiper-slide {
	display: flex;
	height: auto !important;
}

.product-card-body {
	display: flex;
  flex-grow: 1;
	flex-direction: column;
	align-items: stretch;
	justify-content: flex-start;
	background: #EDF0F2;
	padding: 0.5em;
	border: 1px solid #222;
	box-shadow: 1px 1px 10px rgb(0 0 0 / 18%);
	border-radius: 16px;
	overflow: hidden;
}
.product-card-body a {
	text-decoration: none !important;
}

.product-card-body a.woocommerce-LoopProduct-link {
	display: flex;
	flex-direction: column;
	flex-grow: 1;
	margin-bottom: 15px;
}

/* Featured: Cards Price */
.product-card-body a span.price {
	margin-top: auto;
	display: block;
	font-size: 22px;
  font-weight: 700;
}


/* Featured: Cards Image */
.product-card-body a .attachment-woocommerce_thumbnail {
	width: 100%;
	border-radius: 16px 16px 0 0;
	aspect-ratio: 1 / 1;
	overflow: hidden;
	object-fit: cover;
}

/* Featured: Cards Title*/
.product-card-body a h3 {
	padding: 1.5em 0.35em 3.5em;
  margin-bottom: 0;
}

/* Featured: Cards Button */
.add-to-cart-container {
	margin-top: 0;
	position: absolute;
	bottom: 1.5em;
	right: 0.5em;
}

/* Featured and Contact Form Button Style */
.add-to-cart-container a, button.button-form-dav {
	margin-left: auto;
	border-radius: 8px;
	padding: 16px 16px;
	font-size: 14px !important;
	white-space: nowrap !important;
}

/* Featured: Grid */
@media (min-width: 601px) {
/* Featured: Base Container */
.featured-slider {
	width: 80%;
}
/*Featured: Flex Wraper*/
.featured-slider .swiper-wrapper {
	display: flex;
	flex-wrap: wrap;
	gap: 20px;
	transform: none;
	width: 100%;
	justify-content: center;
 }

/* Featured: 2 COLUMNS */
.featured-slider .swiper-wrapper .swiper-slide {
	flex: 0 0 calc(50% - 10px) !important; 
	width: auto !important;
	margin-right: 0 !important;
	}
    
/* Featured: Hide Pagination */
.featured-slider .swiper-pagination {
	display: none;
	}
}

/* Featured: 3 COLUMNS */
@media (min-width: 1024px) {
.featured-slider .swiper-wrapper .swiper-slide {
	flex: 0 0 calc(33.33% - 13.34px) !important;
	width: auto !important;
	margin-right: 0 !important;
	}
}

/* Featured Mobile */
@media (max-width: 600px) {
.featured-slider {
	width: 90%;
	padding-bottom: 40px;
	position: relative;
    }

.featured-slider .swiper-pagination {
	bottom: 0 !important;
	position: absolute;
    }
}

/* PAGES CONTENT RULES */
.special-page-wrapper {
	max-width: 85%;
	margin: 0 auto;
	margin-bottom: 40px;
}

.page-canvas-wrapper {
	margin-bottom: 40px;
}

.simple-contact-button {
	white-space: nowrap;
}

@media (max-width: 476px) {
.contact-button-section {
	flex-direction: column;
	}
.contact-button-section > p {
		text-align: center;
	}
}

/* MAGAZINE RULES */
/* Spacial Magazine & Page */
:is(.special-point-content, .special-page-content) :is(p, h2) {
	font-size: clamp(17px,0.5rem + 1vw,20px)!important;
	color: #027361;
}

:is(.special-point-content, .special-page-content) p {
	font-weight: 300;
}

:is(.magazine-body-content .group-content-section .wp-block-group__inner-container, .special-point-content) > * {
  max-width: 100% !important;
}

/* Magazine h&p Rules */
.group-content-section .wp-block-group__inner-container h3, .combo-text-image figure {
	margin: 0 !important;
}
:is(.group-content-section, .combo-text-image) .wp-block-group__inner-container :is(ul, h3 + p) {
    margin-top: 0 !important;
}

:is(.group-content-section, .combo-text-image) .wp-block-group__inner-container h2:has(+ :is(p, h3)) {
    margin-bottom: 15px !important;
}

:is(.group-content-section, .combo-text-image) .wp-block-group__inner-container h2 + p {
    margin-top: 15px !important;
}

:is(.group-content-section, .combo-text-image) .wp-block-group__inner-container p:has(+ ul) {
    margin-bottom: 0 !important;
}

/* Magazine Group Margin Bottom */
:is(.magazine-body-content, .page-canvas-content) > :is(.group-content-section, .combo-text-image, .group-page-section):not(:last-of-type) {
	margin-bottom: 60px;
}

/* Magazine Combo Text-Image*/
div.combo-text-image {
	margin: 0 auto;
	align-items: stretch;
}

div.combo-text-image .group-content-section {
	flex: 1;
}
.combo-text-image .wp-block-image {
	flex: 1;
	margin: 0;
	position: relative;
}

.combo-text-image .wp-block-image img {
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	object-fit: cover;
}

/* Magazine Combo Text-Image RESPONSIVE*/
@media (max-width: 767px){
div.combo-text-image {
	flex-direction: column;
	align-items: flex-start; 
	}

div.combo-text-image .group-content-section, .combo-text-image .wp-block-image {
	flex: none;
	width: 100%;
	}

.combo-text-image .wp-block-image {
	position: static; 
	height: auto; 
	}

.combo-text-image .wp-block-image img {
	position: static;
	height: auto;
	object-fit: cover;
	}
}

/* Magazine Conclusion Section */
.entry-content > .special-point-wrapper:last-of-type {
    margin-bottom: 60px;
}

/* Magazine Mobile Content Width */
@media (max-width: 959px){
:is(.single-post.content-max-width, .page) .wp-block-columns:is(.special-point-wrapper, .magazine-body-wrapper) {
	max-width: 90%;
	}
}

/* Magazine Desktop Content Width */
@media (min-width: 960px){
/* Page List Content */
.group-page-section .wp-block-group__inner-container ul {
	font-size: 16px;
	line-height: 1.6;
	padding-left: 1em !important;
}
/* Magazine Wrappers */
:is(.single-post.content-max-width, .page) .wp-block-columns:is(.special-point-wrapper, .magazine-body-wrapper) {
	max-width: 60%;
	justify-content: center;
}

:is(.single-post.content-max-width, .page) .wp-block-columns.magazine-body-wrapper {
	max-width: 1200px;
}

.group-content-section .wp-block-group__inner-container ul {
	font-size: 16px;
	line-height: 1.6;
	padding-left: 4em !important;
}
}

/* Magazine Bottom */
.post-bottom-section {
	background: #e1e5e8;
	padding: 20px;
}

.post-bottom-section #comments {
	border-top: 1px solid gray;
}

/* Magazine Bottom: Comments */
.post-bottom-section .comment-textarea textarea {
	background: #f6f6f6;
}

.post-bottom-section .comment-textarea textarea::placeholder {
	color: gainsboro;
}


/* CONTACT PAGE */
/* Contact Page: Hide Form */
.form-contact-wrapper {
	display: none;
	opacity: 0;
	transition: opacity 0.5s ease;
}

/* Contact Page: Display Form */
.form-contact-wrapper.is-visible {
	display: block;
	opacity: 1;
}

/* Contact Page: Hide Text */
.info-contact-wrapper.is-hidden {
	display: none;
}
.wp-block-columns.contact-columns-wrapper {
  gap: 4em; 
	margin-bottom: 50px;
}

/* Contact Page: Schedule */
.schedule-opening {
	margin-bottom: 20px;
}
.wp-block-table.schedule-table {
	margin: 10px 0 1em;
}

/* Contact Page: Schedule Responsive Table */
.schedule-table table {
	display: inline-table;
	width: auto !important;
	border-collapse: collapse;
	margin-left: 0;
}

/* Contact Page: Schedule Rows and Cells */
.schedule-table table tbody {
 	display: table-row-group;
}
.schedule-table table tr {
	display: table-row;
}
.schedule-table table td {
	display: table-cell;
	padding: 5px 20px;
	white-space: nowrap;
	vertical-align: middle;
}

/* Contact Page: Schedule Vertical Line */
.schedule-table td:first-child {
    border-right: 1px solid silver;
}

/* Contact Page: Schedule Remove Table Borders */
.schedule-table th, 
.schedule-table td {
	border: none;
	border-width: 0;
}

.schedule-table tr {
	border: none;
	box-shadow: none;
}

/* Contact Page: Image */
.contact-image-dav {
	display: flex;
	flex-direction: column;
}
.contact-image-dav figure.image-contact {
    height: 100%;
    margin: 0;
		display: flex;
}
.contact-image-dav figure.image-contact img {
	height: 100%;
	width: 100%;
	object-fit: cover; 
	display: block;
}
.trigger-contact-form div.wp-block-button a {
	border-radius: 8px;
}

/* Contact Page: Contact Responsive */
@media (max-width: 781px) {
.info-contact-wrapper div.wp-block-group__inner-container.is-layout-constrained.wp-block-group-is-layout-constrained {
	text-align: center;
}
	.trigger-contact-form {
		justify-content: center;
	}
.contact-image-dav {
	display: none !important;
    }
}

/* COLOR SECTION */
.franja-full-width {
	width: 100vw;
	position: relative;
	left: 50%;
	right: 50%;
	margin-left: -50vw;
	margin-right: -50vw;
	padding: 60px 0;
	background-color: #e1e5e8;
	margin-top: 40px;
}

/* Color Section: Center Content */
.franja-full-width .contenido-centrado {
	max-width: 1200px; 
	margin: 0 auto;
	padding: 0 20px;
	display: flex;
	align-items: flex-start;
	gap: 50px;
}

/* Color Section: Image */
.image_color_section {
	min-width: 0;
	flex: 1.5 1 0%;
	max-width: 100%;
	height: auto;
}

/* Color Section: Text */
.text_color_section {
    min-width: 0;
    flex: 2 1 0%;
}
.text_color_section h2 {
	color: #222;
	text-align: left;
	font-size: var(--wp--preset--font-size--large);
	padding-left: 1em;
}
.text_color_section p {
	font-size: clamp(18px,0.5rem + 1vw,20px) !important;
	padding: 0 1em;
}
/* Color Section: Responsive */
@media (max-width: 980px) {
.text_color_section p {
	font-size: clamp(10px,0.5rem + 1vw,18px) !important;
	}
}

@media (max-width: 768px) {
.franja-full-width .contenido-centrado {
	flex-direction: column;
		gap: 0;
	text-align: center;
	}
.text_color_section p {
	font-size: clamp(18px,0.5rem + 1vw,20px) !important;
	text-align: justify;
	line-height: 1.5;
	}
.text_color_section h2 {
	text-align: center;
	padding-left: 0;
	}
.image_color_section, .text_color_section {
	width: 100%; 
	flex: none;
	}
.image_color_section {
	order: 2;
	margin-top: 20px
	}
    
.text_color_section {
	order: 1;
	}
}




/*CONTACT FORM*/
.form-box-wrapper {
	margin: 50px 0 100px;
}

.contact-form-dav {
	display: flex;
  margin: 0 auto;
}

.form-context-home .contact-form-dav {
	max-width: 60%;
}

.form-contact-wrapper .contact-form-dav {
  max-width: 100%;
}

.form-contact-wrapper div.wpforms-container-full {
	margin: 0 auto 24px auto;
}

.contact-form-dav form {
	flex: 1;
}

.contact-form-dav form .wpforms-field input, .contact-form-dav form .wpforms-field textarea, .contact-form-dav form .wpforms-field select {
    width: 100% !important;
    max-width: 100% !important;
    box-sizing: border-box;
	border-radius: 8px;
	background: #f6f6f6;
	border: 1px solid silver;
}

.contact-form-dav form .wpforms-field textarea::placeholder, .contact-form-dav form .wpforms-field input::placeholder {
	color: gainsboro;
}

/* Contact Form: Remove Margins */
.contact-form-dav .wpforms-field {
    clear: both;
}
.wpforms-submit-container {
	text-align: center;
}
.button-form-dav {
	min-width: 150px;
	border: none !important;
}


/* Contact Form: Responsive */
@media (max-width: 768px) {
.form-context-home .contact-form-dav {
  max-width: 100%;
	padding: 0 20px !important;
}
}

/* VISIT STORE BUTTON */
/* Visit Store: Wrapper */
.dav-button-store-wrapper {
	margin: 80px 0;
	text-align: center;
}
/* Visit Store: Button */
.dav-button-store {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	width: calc(60% - var(--wp--style--block-gap, .5em)*.5);
	gap: 10px;
	padding: 10px 20px;
	color: #edf0f2;
	background: #222;
	border-radius: 8px;
	box-shadow: 1px 1px 10px rgb(0 0 0 / 18%);
	font-size: var(--wp--preset--font-size--large)!important;
	text-decoration: none !important;
	white-space: nowrap;
}

/* Visit Store: SVG */
.dav-icon-svg {
	width: 1.2em;
	height: auto;
	display: block;
}

/* Visit Store: HOVER */
.dav-button-store:hover {
	color: #edf0f2;
	background: #027361;
}

/* Visit Store: Mobile Width */
@media (max-width: 600px) {
	.dav-button-store {
		width: 90%;
	}
}

/* STORE/SHOP */
/* Store/Shop: Hide Corner (12/24/All) */
.oceanwp-toolbar .result-count {
	display: none;
}
.woocommerce ul.products {
	margin-bottom: 50px !important;
}
/* Store/Shop: Hide Grid/List Mode */
.oceanwp-grid-list {
	display: none;
}
/* Store/Shop: Padding Toolbar */
.woocommerce .oceanwp-toolbar {
	padding: 0;
	}

/* Store/Shop: Grid Container */
ul.products.oceanwp-row {
	display: grid;
	grid-template-columns: repeat(3, 1fr);
	gap: 25px;
	width: 100%;
	margin: 30px auto;
	padding: 0;
}

/* Store/Shop: (LI) Cards Rules */
ul.products li.entry.product {
	margin: 0;
	background: #EDF0F2;
	border: 1px solid #222;
	border-radius: 16px;
	padding: .5em;
	box-shadow: 1px 1px 10px rgb(0 0 0 / 18%);
}

/* Store/Shop: Inner Container */
.product-inner, .woo-entry-inner {
	display: flex;
	flex-wrap: wrap;
	align-items: flex-start;
	justify-content: space-between;
	margin: 0;
	padding: 0 0 0.5em 0;
	list-style: none;
	height: 100%;
}

/* Store/Shop: Product Image */
.woo-entry-inner li.image-wrap {
	flex: 0 0 100%;
	width: 100%;
	margin-bottom: 10px;
}
.woo-entry-inner li.image-wrap img {
	border-radius: 16px 16px 0 0;
	width: 100%;
	display: block;
	aspect-ratio: 1/1;
	object-fit: cover;
}

/* Store/Shop: Product Title */
.woo-entry-inner li.title {
	flex: 0 0 100%;
	flex-grow: 1;
	padding: 0 15px; 
	margin-bottom: 1.1em !important;
}
.woo-entry-inner li.title h2 {
	font-size: .85em !important;
	font-weight: 700;
	text-align: left;
}

/* Store/Shop: Price Rules */
.woo-entry-inner li.price-wrap {
	flex: 0 0 40%;
	max-width: 40%;
	padding-left: 15px;
	margin-top: auto !important;
	display: flex;
	align-items: center;
}
.woo-entry-inner .price .woocommerce-Price-amount {
font-size: 22px;
font-weight: 700;
}
.woo-entry-inner li.btn-wrap {
	flex: 0 0 60%;
	max-width: 60%;
	padding-right: 15px;
	margin-top: auto;
	display: flex !important;
	justify-content: flex-end;
	white-space: nowrap;
}

/* Store/Shop: Button Rules */
.woo-entry-inner li.btn-wrap a.button {
	width: auto;
	min-width: 110px;
	color: #fff !important;
	border-radius: 8px !important;
	padding: 8px 16px !important;
	font-size: 14px !important;
	font-weight: 600;
	border: none !important;
}

.woo-entry-inner li.btn-wrap a.button:hover {
color: #222 !important;
}

/* Store/Shop: Responsive */
/* Store/Shop: Sidebar & 2 columns */
@media (max-width: 1160px) and (min-width: 961px) {
ul.products.oceanwp-row {
	grid-template-columns: repeat(2, 1fr);
	gap: 20px;
    }
}

/* Store/Shop: Hide Sidebar & 3 columns */
@media (max-width: 960px) and (min-width: 769px) {
ul.products.oceanwp-row {
	grid-template-columns: repeat(3, 1fr);
	gap: 20px;
    }
}

/* Store/Shop: Transition */
@media (max-width: 768px) and (min-width: 701px) {
ul.products.oceanwp-row {
	grid-template-columns: repeat(2, 1fr);
	gap: 15px;
    }
}

/* Store/Shop: 2 Columns + Images Solution */
@media (max-width: 700px) and (min-width: 481px) {
ul.products.oceanwp-row {
	grid-template-columns: repeat(2, 1fr);
	gap: 15px;
    }

/* Store/Shop: Display Main Image */
.product-inner .woo-entry-image {
	width: 100%;
	display: block !important;
	visibility: visible;
opacity: 1;
	}
	
.woo-entry-image img {
	border-radius: 16px 16px 0 0;
	width: 100%;
	display: block;
	aspect-ratio: 1/1;
	object-fit: cover;		
	}

 /* Store/Shop: Colapsar la imagen DUPLICADA */
.woo-entry-inner li.image-wrap {
	display: none; 
	}

.woo-entry-inner {
	width: 100%;
	display: flex;
	flex-direction: column; 
	align-items: center; 
	padding: 10px 0 !important;
	height: auto;
	}

.woo-entry-inner li.title, .woo-entry-inner li.price-wrap, .woo-entry-inner li.btn-wrap {
	flex: 0 0 auto;
	width: 100%;
	max-width: 100%;
	justify-content: center; 
	text-align: center; 
	padding: 0 10px;
	margin-top: 5px;
	}

.woo-entry-inner li.title h2 {
	text-align: center;
	font-size: 0.85em !important;
	line-height: 1.2 !important;
	}

.woo-entry-inner li.btn-wrap a.button {
	width: 100%; 
	max-width: 150px; 
	margin: 5px auto ;
	}
}

/* Store/Shop: Mobile Center */
@media (max-width: 480px) {
	/* Hide Grid/List Mode */
.oceanwp-grid-list {
	display: none !important;
}
	
ul.products.oceanwp-row {
display: block !important;
width: 100% !important;
padding: 0 10px !important;
margin: 0 auto !important;
    }

ul.products.oceanwp-row li.entry {
	width: 100%;
	max-width: 100%;
	margin-left: 0;
	margin-bottom: 30px;
	display: block;
	background: #EDF0F2; 
	border-radius: 8px; 
	}

/* Store/Shop: Image Full Width */
.product-inner .woo-entry-image {
	display: block !important;
	width: 100%;
	margin: 0;
	}
.product-inner .woo-entry-image img {
	width: 100%;
	height: auto;
	display: block;
	border-radius: 8px 8px 0 0;
	aspect-ratio: 1/1;
	object-fit: cover;	
	}

/* Store/Shop: Hide Duplicated */
.woo-entry-inner li.image-wrap {
display: none;
	}

/* Store/Shop: Adjust texts & buttons */
.woo-entry-inner {
	padding: 15px !important;
	display: flex;
	flex-direction: row;
	flex-wrap: wrap;
	justify-content: space-between;
	align-items: center;
	}

/* Store/Shop: Title 100% */
.woo-entry-inner li.title {
	flex: 0 0 100%;
	text-align: left;
	margin-bottom: 15px !important;
	}
.woo-entry-inner li.title a {
	font-size: 1.45em !important;
	margin: 25px 0 15px 0;
	}

/* Store/Shop: Categorie */
.woo-entry-inner li.category a {
font-size: 1.25em !important;
    }

}

/* Store/Shop: Final Cleaning */
ul.products.oceanwp-row li.entry.col {
width: 100% !important;
float: none;
}
.products.oceanwp-row li.entry.first, 
.products.oceanwp-row li.entry.last {
clear: none;
margin-right: 0;
}

/*HEADER PAGE IMAGE*/
.page-image-container {
	position: relative;
	width: 100%;
	height: clamp(10vh, 15vw, 20vh);
	overflow: hidden;
	display: flex;
	align-items: center;
	justify-content: center;
	background-color: #333;
}

.page-image-element {
position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	object-fit: cover;
	z-index: 1;
}

.dav-image-overlay {
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	background: rgba(2, 115, 97, 0.3);
	z-index: 2;
}

.page-header-content {
	z-index: 3;
	text-align: center;
	color: #ffffff;
	padding: 0 40px 0 0;
	margin-left: auto;
	margin-top: auto;
}

.page-image-title {
	font-size: clamp(2.5rem, 6vw, 4rem);
	text-transform: uppercase;
}

:is(.page-id-11, .page-id-2746, .page-id-19) h1.page-image-title {
    color: #edf0f2;
}

@media (max-width: 480px) {
 .page-header-content {
	color: #ffffff;
	padding: 20px;
	margin: auto;
}
}

/* SINGLE POST */
.post-container {
	width: 95%;
	margin: 0 auto;
}

header.entry-header > h2 {
	color: #027361;
}

ul.meta li, ul.meta li a {
	color: #acb2b6;
}

.single .entry-share {
   border-top: 1px solid #acb2b6;
}

.entry-share.side ul {
	float: none;
	display: flex;
	padding: 0;
	margin: 0;
}

.entry-share.side {
	display: flex;
	align-items: center;
	gap: 15px;           
}

.entry-share.side .social-share-title {
	margin: 0;
	display: inline-block;
}
	
/* ABOUT US PAGE */
.about-box-dav {
	gap: clamp(4em, 10vw + 1rem, 6em);
}

.about-box-column ul {
	margin-top: 0;
}

.about-box-column ul li {
	color: #027361;
}

@media (max-width: 781px) {
.about-box-dav {
	flex-direction: column-reverse; 
	gap: clamp(0.5em, 1em , 4em);
	margin-top: 25px;
  }
}
	
/*FOOTER*/
div.footer-box {
	margin: 0 auto !important;
}
.footer-estilos {
	padding: 20px 0;
}
.footer-estilos p {
	font-size: clamp(18px,0.5rem + 1vw,20px);
	font-weight: 300;
	margin: 0px;
}
.footer-estilos p > img {
	height: clamp(18px, 0.5rem + 1vw, 20px);
}

/* CHECKOUT PAGE RULES */
/* Checkout Page: Contact Info*/
.wc-blocks-components-select .wc-blocks-components-select__label, .wc-block-components-form .wc-block-components-text-input label, .wc-block-components-text-input label {
	color: silver;
}
.wc-blocks-components-select .wc-blocks-components-select__select {
	line-height: 65px;
}

/* MY ACCOUNT PAGE RULES */
/* My Account Page: Login or Register */
li.login a:not(.current), li.register a:not(.current) {
	color: silver !important;
}

li.login a.current, li.register a.current {
	color: #027361 !important;
}
.account-original-style .woocommerce #customer_login>div {
	width: 80% !important;
}
.woocommerce .owp-account-links {
	margin: auto;
}
.woocommerce .col2-set {
	margin-top: 50px;
}

/* My Account Page: Dashboard */
body.woocommerce-account div.woocommerce {
	display: flex;
}
.oceanwp-user-profile {
	padding: 0 50px;
	box-sizing: border-box;
  width: 100%;
}
.woocommerce-MyAccount-tabs {
	width: 30%;
	float:none;
	margin-right: 0;
	border-right: 1.5px solid silver;
	border-bottom: 1.5px solid silver;
	padding-top: 50px;
}

.woocommerce-MyAccount-navigation {
	background: gainsboro;
	padding: 0 50px;
}

.woocommerce-MyAccount-content {
	width: 70%;
	float:none;
	padding: 50px 50px 0px;
}

.woocommerce-MyAccount-navigation ul {
	margin: 0;
	border-top: none;
}

.woocommerce-MyAccount-navigation ul li a {
	padding: 15px 0;
}

/* My Account Page: User Section */
.woocommerce-MyAccount-tabs .oceanwp-user-profile {
	display: flex;
	align-items: center;
}

.woocommerce-MyAccount-tabs .oceanwp-user-profile .image {
	width: 64px;
	height: 64px;
	flex: 0 0 64px;
}

.woocommerce-MyAccount-tabs .oceanwp-user-profile .image img {
	width: 100%;
	height: auto;
	display: block;
	border-radius: 50%; 
}

.woocommerce-MyAccount-tabs .oceanwp-user-profile .user-info {
	flex: 1;
}

/* My Account Page: Responsive */
@media (max-width: 1130px) {
.woocommerce-MyAccount-tabs .oceanwp-user-profile {
	flex-direction: column;
	}
.woocommerce-MyAccount-tabs .oceanwp-user-profile .image {
	margin-bottom: 25px;
	}
	.woocommerce-MyAccount-tabs .oceanwp-user-profile .user-info {
	padding-left: 0;
	}
}

@media (max-width: 820px) {
	.woocommerce .owp-account-links {
	margin-top: 50px;
}
.woocommerce .col2-set {
	margin-bottom: 50px;
}
.woocommerce .owp-account-links li a {
	font-size: clamp(3.5rem,6vw,4rem) !important;
}
	
/* My Account Page: User Section Collapse */
.woocommerce-MyAccount-navigation ul li.is-active {
	display: block;
	cursor: pointer;
	border: 1px solid #ddd;
	padding: 12px 15px 12px 40px;
	position: relative;
	transition: all 0.3s ease;
	font-weight: 600;
}

/* My Account Page: + indicator */
.woocommerce-MyAccount-navigation ul li.is-active::before {
	content: '+'; 
	position: absolute;
	left: 15px;
	top: 50%;
	transform: translateY(-50%);
	font-size: 20px;
	color: #666;
	transition: all 0.3s ease;
	line-height: 1;
}

/* My Account Page: Open Menu */
.woocommerce-MyAccount-navigation.is-open ul li {
	display: block !important;
}

/* My Account Page: Outline Reset */
.woocommerce-MyAccount-navigation a:focus,
.woocommerce-MyAccount-navigation a:active,
.woocommerce-MyAccount-navigation li:focus,
.woocommerce-MyAccount-navigation li:active {
	outline: none !important;
	box-shadow: none !important;
	-webkit-appearance: none;
}
	
/* My Account Page: Active */
.woocommerce-MyAccount-navigation.is-open ul li.is-active {
	background-color: #027361;
}

.woocommerce-MyAccount-navigation.is-open ul li.is-active a {
	color: gainsboro;
}

/* My Account Page: - Indicator */
.woocommerce-MyAccount-navigation.is-open ul li.is-active::before {
    content: '−';
    color: gainsboro;
}

/* My Account Page: Not Active */
.woocommerce-MyAccount-navigation.is-open ul li:not(.is-active) {
    border-top: none;
    padding-left: 40px;
}

/* My Account Page: Hide Options */
.woocommerce-MyAccount-navigation:not(.is-open) ul li:not(.is-active) {
    display: none;
}
	
/* My Account Page: Direction Column */
body.woocommerce-account div.woocommerce {
	flex-direction: column;
	}
.woocommerce-MyAccount-tabs {
	width: 100%;
	}
.woocommerce-MyAccount-content {
	width: 100%;
	padding-bottom: 50px;
	}
}

/* My Account Page: Password Creation */
@media (max-width: 480px) {
	body.woocommerce-account div.woocommerce form.woocommerce-ResetPassword {
		padding: 25px;
	}
}