/*
Theme Name: Alukas Child
Theme URI: https://alukas.presslayouts.com/
Author: PressLayouts
Description: This is a child theme for Alukas
Version: 1.0
Author URI: https://www.presslayouts.com/
Template: alukas
Text Domain: pls-theme-child
*/

/* Product attributes - display inline */
.woocommerce-product-attributes-item {
	display: block;
	margin-bottom: 0;
}

.woocommerce-product-attributes-item p {
	display: inline;
	margin: 0;
}


/* Simple product info layout */
.product-info-simple {
	display: block;
}

.product-info-section {
	display: block;
	margin-bottom: 20px;
}

/* Remove capitalize from headings */
div.product>section>h2,
div.cross-sells>h2 {
	text-transform: none;
}

/* Phone button in mobile header */
.pls-phone-btn {
	display: flex;
	align-items: center;
	justify-content: center;
	margin-right: 2px;
	/* Reduced from 12px */
	color: var(--pls-header-link-color);
	font-size: 20px;
	text-decoration: none;
}

.pls-phone-btn:hover {
	color: var(--pls-header-link-hover-color);
}

.pls-phone-btn .picon-phone {
	line-height: 1;
}

/* Phone slide-down menu */
.pls-phone-menu {
	position: fixed;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	z-index: 9999;
	pointer-events: none;
	visibility: hidden;
}

.pls-phone-menu.opened {
	pointer-events: auto;
	visibility: visible;
}

/* Overlay (dark background) */
.pls-phone-menu-overlay {
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	background-color: transparent;
	opacity: 0;
	transition: opacity 0.3s ease;
}

.pls-phone-menu.opened .pls-phone-menu-overlay {
	opacity: 1;
}

/* Sliding content panel */
.pls-phone-menu-wrap {
	position: absolute;
	left: 0;
	right: 0;
	top: 0;
	background-color: var(--pls-body-background);
	padding: 20px;
	transform: translateY(-100%);
	transition: transform 0.3s ease;
	z-index: 1;
	/* Top offset removed */
	margin-top: 0;
	height: 100%;
	overflow-y: auto;
}

.pls-phone-menu.opened .pls-phone-menu-wrap {
	transform: translateY(0);
}

/* Close button */
.pls-phone-menu-close {
	display: flex;
	align-items: center;
	justify-content: flex-end;
	font-size: 0;
	margin-bottom: 20px;
}



/* Title */
.pls-phone-menu-title {
	font-size: 22px;
	font-weight: 500;
	margin: 0;
	color: var(--pls-heading-color, #222);
}

/* Custom Desktop Header Support Block */
.pls-customer-support.custom-support-block .pls-customer-support-wrap {
	display: flex;
	flex-direction: row;
	/* FORCE ROW LAYOUT */
	align-items: center;
	gap: 10px;
	/* Reduced from 15px */
}

/* HIDE OLD ICON - Targeting specific theme selector */
.pls-customer-support:before,
.pls-customer-support.custom-support-block:before {
	content: none !important;
	display: none !important;
	width: 0 !important;
	margin: 0 !important;
}

.custom-support-icon {
	display: flex;
	align-items: center;
	justify-content: center;
	color: var(--pls-primary-color, #000);
	flex-shrink: 0;
}

.custom-support-icon .picon {
	font-size: 26px;
	/* Reduced to 26px */
	line-height: 1;
}

.custom-support-text {
	display: flex;
	flex-direction: column;
	justify-content: center;
	line-height: 1.3;
	text-align: left;
}

.custom-support-text .support-label {
	font-size: 14px;
	/* Increased from 13px */
	color: var(--pls-text-color, #555);
	/* Use theme variable */
	margin-bottom: 2px;
	display: block;
	font-weight: 400;
	/* Regular weight for label */
}

.custom-support-text b {
	font-size: 16px;
	color: var(--pls-heading-color, #222);
	font-weight: 600;
	/* Distinct bold */
	line-height: 1;
}

.number-wrapper {
	display: flex;
	align-items: center;
	gap: 6px;
	color: var(--pls-heading-color, #222);
	/* Ensure color matches text */
	cursor: pointer;
}

/* Fix button text color */
.custom-support-dropdown .btn-primary,
.pls-phone-menu-content .btn-primary {
	color: #fff !important;
}

.custom-support-dropdown .btn-primary:hover,
.pls-phone-menu-content .btn-primary:hover {
	color: #fff !important;
}

/* End Order Call Modal */

.custom-support-arrow {
	font-size: 10px;
	/* Reduced from 12px (~20%) */
	margin-top: 2px;
	color: inherit;
	/* Match parent/phone color */
	transition: transform 0.3s ease;
	/* Smooth rotation */
}

/* Rotate arrow on hover */
.pls-customer-support.custom-support-block:hover .custom-support-arrow {
	transform: rotate(180deg);
}

/* Dropdown Styles */
.pls-customer-support.custom-support-block {
	position: relative;
	/* Context for absolute dropdown */
	height: 100%;
	/* Ensure full height for hover area if needed */
	padding-bottom: 0;
}

.custom-support-dropdown {
	position: absolute;
	top: 100%;
	/* Close to parent (was 100% + 5px) */
	right: -10px;
	/* Align slightly right to catch mouse */
	width: 300px;
	background: #fff;
	box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
	padding: 20px;
	opacity: 0;
	visibility: hidden;
	transform: translateY(5px);
	/* Smaller movement */
	transition: all 0.2s ease-out;
	/* Snappier */
	z-index: 1000;
	border-radius: 4px;
	border: 1px solid #eee;
}

.pls-customer-support.custom-support-block:hover .custom-support-dropdown {
	opacity: 1;
	visibility: visible;
	transform: translateY(0);
}

/* Style links inside dropdown */
.custom-support-dropdown a {
	display: block;
	margin-bottom: 10px;
	color: var(--pls-heading-color);
	text-decoration: none;
	font-weight: 500;
}

.custom-support-dropdown a:hover {
	color: var(--pls-primary-color);
}

.custom-support-dropdown a:last-child {
	margin-bottom: 0;
}

/* Interaction bridge via pseudo element/padding not needed if top is close enough */
.pls-customer-support.custom-support-block:after {
	content: '';
	position: absolute;
	top: 100%;
	left: 0;
	width: 100%;
	height: 10px;
	/* Bridge hover gap */
}

/* Custom Contact List Styling */
.contact-list-item {
	display: flex;
	justify-content: space-between;
	align-items: center;
	margin-bottom: 12px;
	padding-bottom: 12px;
	border-bottom: 1px solid #f1f1f1;
}

.contact-list-item:last-child {
	margin-bottom: 0;
	padding-bottom: 0;
	border-bottom: none;
}

.contact-main {
	display: flex;
	flex-direction: column;
}

.contact-phone {
	font-size: 15px;
	font-weight: 700;
	color: var(--pls-heading-color, #222) !important;
	text-decoration: none;
	line-height: 1.2;
	margin-bottom: 2px;
	display: block;
}

.contact-desc {
	font-size: 13px;
	color: var(--pls-text-color, #777);
	line-height: 1.3;
}

.contact-whatsapp {
	width: 28px;
	height: 28px;
	display: flex;
	align-items: center;
	justify-content: center;
	flex-shrink: 0;
	margin-left: 10px;
	transition: transform 0.2s ease;
	text-decoration: none;
	/* Reset link style */
}

.contact-whatsapp:hover {
	transform: scale(1.1);
}

/* Support for theme icon */
.contact-whatsapp .picon {
	font-size: 24px;
	color: #25D366;
	/* Official WhatsApp Green */
	line-height: 1;
}

/* Fallback for SVG if mixed */
.contact-whatsapp svg {
	width: 100%;
	height: 100%;
}

/* Topbar Contact Info */
.pls-topbar-contact {
	display: flex;
	align-items: center;
	gap: 15px;
	/* Reduced from 20px to 15px */
	/* font-size: 13px; Removed to inherit theme default */
	line-height: 1;
	color: inherit;
	/* Inherit from topbar parent */
}

.pls-topbar-contact .topbar-contact-title {
	color: inherit;
	/* Use theme's topbar text color */
}

.pls-topbar-contact .topbar-contact-phone {
	color: inherit;
	/* Use theme's topbar text color */
	font-weight: 400;
	text-decoration: none;
}

.pls-topbar-contact .topbar-contact-whatsapp {
	display: flex;
	align-items: center;
	justify-content: center;
	text-decoration: none;
	color: inherit;
	/* Inherit text color */
	transition: transform 0.2s ease;
}

.pls-topbar-contact .topbar-contact-whatsapp:hover {
	transform: scale(1.1);
}

.pls-topbar-contact .topbar-contact-whatsapp i {
	font-size: 18px;
}

/* Reduce Topbar Font Size */
.pls-header-topbar {
	font-size: 14px;
}

/* Order Call Modal */
.pls-order-call-modal {
	position: fixed;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	z-index: 10005;
	pointer-events: none;
	visibility: hidden;
	display: flex;
	align-items: center;
	justify-content: center;
}

.pls-order-call-modal.opened {
	pointer-events: auto;
	visibility: visible;
}

.pls-order-call-modal-overlay {
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	background-color: rgba(0, 0, 0, 0.5);
	opacity: 0;
	transition: opacity 0.3s ease;
}

.pls-order-call-modal.opened .pls-order-call-modal-overlay {
	opacity: 1;
}

.pls-order-call-modal-wrap {
	position: relative;
	background-color: #fff;
	padding: 40px;
	width: 100%;
	max-width: 500px;
	margin: 20px;
	opacity: 0;
	transform: translateY(20px);
	transition: all 0.3s ease;
	box-shadow: 0 5px 30px rgba(0, 0, 0, 0.15);
}

.pls-order-call-modal.opened .pls-order-call-modal-wrap {
	opacity: 1;
	transform: translateY(0);
}

.pls-order-call-modal-close {
	position: absolute;
	top: 15px;
	right: 15px;
	font-size: 0;
	width: 20px;
	height: 20px;
	cursor: pointer;
}

.pls-order-call-modal-close:before,
.pls-order-call-modal-close:after {
	content: '';
	position: absolute;
	top: 9px;
	left: 0;
	width: 100%;
	height: 2px;
	background-color: #222;
	transform: rotate(45deg);
}

.pls-order-call-modal-close:after {
	transform: rotate(-45deg);
}

/* End Order Call Modal */

/* Contact Form 7 Phone Mask */
.iti {
	width: 100%;
	margin-bottom: 0;
}

.wpcf7-form-control-wrap {
	display: block !important;
}

/* Override padding for input to make room for flag */
.iti__flag-container {
	padding: 0 10px;
}

.iti input[type="tel"] {
	padding-left: 100px !important;
	/* Adjusted to 100px to balance spacing */
}