/*
Theme Name: BeautyTada Classic Theme
Description: A beautiful WordPress theme for beauty salons and spas
Version: 1.0.0
Author: BeautyTada Team
Text Domain: beautytada
*/

:root {
    --color-main: #e11686;
    --color-dark: #0a3847;
    --color-secondary: #00487f;
    --color-purple: #9a54d6;
    --color-white: #fffffe;
    --color-gray: #2e2e32;
}

* {
    box-sizing: border-box;
}

body {
    font-family: 'Poppins', sans-serif;
    color: var(--color-dark);
    line-height: 1.6;
    margin: 0;
    padding: 0;
}

/* Header Styles - Exact copy from original */
.header {
    box-shadow: 0 1px 3px 0 rgba(0, 0, 0, .1), 0 1px 2px 0 rgba(0, 0, 0, .06);
    position: relative;
    transition: .4s;
}

.header.fix {
    left: 0;
    position: fixed;
    top: 0;
    width: 100%;
    z-index: 10;
}

.header {
    background-color: #e11686;
    box-shadow: none;
}

.header .k-burger-button {
    --color: #fffffe !important;
}

.header.fix {
    background-color: transparent;
}

.header.fix .k-burger-button {
    --color: #2e2e32;
}

.header.bg-main.fix {
    background-color: #e11686;
}

.header.bg-main.fix .k-burger-button {
    --color: #fffffe !important;
}

.header-wrapper {
    align-items: center;
    display: flex;
    padding-left: 1rem;
    padding-right: 1rem;
    justify-content: space-between;
    width: 100%;
}

.header .locales {
    margin-right: .75rem;
}

.header-wrapper .locales {
    margin-right: 2rem;
}

.language-dropdown {
    position: relative;
}

.locale-switcher {
    background: transparent;
    border: none;
    cursor: pointer;
    display: flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.5rem;
    border-radius: 6px;
    transition: background-color 0.3s ease;
}

.locale-switcher:hover {
    background: rgba(0,0,0,0.1);
}

.locale-switcher i {
    font-size: 0.8rem;
    color: #666;
}

.language-menu {
    position: absolute;
    top: 100%;
    right: 0;
    background: white;
    border: 1px solid #ddd;
    border-radius: 8px;
    box-shadow: 0 4px 12px rgba(0,0,0,0.15);
    min-width: 150px;
    z-index: 1000;
    display: none;
}

.language-menu.show {
    display: block;
}

.language-option {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    padding: 0.75rem 1rem;
    text-decoration: none;
    color: #333;
    transition: background-color 0.3s ease;
}

.language-option:hover {
    background: #f8f9fa;
}

.language-option.active {
    background: var(--color-main);
    color: white;
}

.language-option img {
    width: 20px;
    height: 15px;
    object-fit: cover;
}

.header-logo {
    align-items: center;
    color: #2e2e32;
    display: flex;
    min-height: 45px;
    width: 6rem;
}

@media (min-width:480px) {
    .header-logo {
        min-height: 60px;
        width: 8rem;
    }
}

.header-logo img {
    width: 100%;
    height: auto;
    max-height: 100%;
}

.header-control-buttons {
    align-items: center;
    display: flex;
}

.header-control-buttons .header-restaurant-registration {
    border: 1px solid #fffffe;
    display: none;
    font-size: 12px;
    font-weight: 600;
    margin-right: 2rem;
    padding: 0 .25rem;
}

.header-control-buttons .header-restaurant-registration-btn {
    align-items: center;
    color: #fffffe;
    display: flex;
    padding: 0.5rem 0.75rem;
    text-decoration: none;
}

.header-control-buttons .header-restaurant-registration-btn svg {
    margin-right: .5rem;
}

.header-control-buttons .header-restaurant-registration-btn p {
    margin: 0;
    padding: 0;
}

@media (min-width:960px) {
    .header.fix .header-restaurant-registration {
        display: block;
    }
}

.locale-switcher {
    border: 3px solid #fff;
    border-radius: 50%;
    display: block;
    height: 26px;
    overflow: hidden;
    position: relative;
    width: 26px;
}

.locale-switcher .language-active {
    bottom: 0;
    height: 100%;
    left: 0;
    -o-object-fit: cover;
    object-fit: cover;
    position: absolute;
    right: 0;
    top: 0;
    width: 100%;
}

/* K-Burger Button */
.k-burger-button {
    --color: #fffffe;
    --width: 24px;
    --height: 18px;
    --stroke: 2px;
    --round: 2px;
    --transition: 0.2s;
    background: none;
    border: none;
    cursor: pointer;
    display: block;
    height: var(--height);
    overflow: hidden;
    position: relative;
    width: var(--width);
    padding: 0;
}

.k-burger-button:focus {
    outline: none;
}

.k-burger-button span {
    background-color: var(--color);
    border-radius: var(--round);
    height: var(--stroke);
    left: 0;
    position: absolute;
    transition: .2s;
    width: 100%;
}

.k-burger-button span:first-child {
    top: 0;
}

.k-burger-button span:nth-child(2),
.k-burger-button span:nth-child(3) {
    top: 50%;
    transform: translateY(-50%);
}

.k-burger-button span:nth-child(4) {
    bottom: 0;
}

/* Header Fix Styles */
.header.fix {
    padding: 1.5rem;
}

@media (min-width:720px) {
    .header.fix {
        padding: 3rem;
    }

    .header.fix .header-logo {
        width: 12rem;
    }
}

@media (min-width:960px) {
    .header.fix {
        padding: 3rem 6.5rem;
    }
}

.header.fix .header-wrapper {
    padding-left: 0;
    padding-right: 0;
}

.header.fix.bg-main {
    padding: unset;
}

@media (min-width:720px) {
    .header.fix.bg-main .header-logo {
        width: 8rem;
    }
}

.header.fix.bg-main .header-wrapper {
    padding-left: 1rem;
    padding-right: 1rem;
}

/* K-Banner - Exact copy from original */
.k-banner {
    --background-url: "";
    --background-color: #e2e2e2;
    align-items: flex-start;
    background-color: var(--background-color);
    background-image: linear-gradient(rgba(0, 0, 0, .7), rgba(0, 0, 0, .7)), var(--background-url);
    background-position: 100% 100%;
    background-repeat: no-repeat;
    background-size: cover;
    display: flex;
    flex-direction: row;
    height: 100vh;
    justify-content: flex-start;
    width: 100%;
}

.k-banner.left-center {
    align-items: center;
    display: flex;
    flex-direction: row;
    justify-content: flex-start;
}

.k-banner {
    background-blend-mode: multiply;
    background-image: var(--background-url);
    background-position: 0;
    position: relative;
}

.k-banner:before {
    background-blend-mode: multiply;
    background-image: var(--background-before-url);
    background-position: bottom;
    background-repeat: no-repeat;
    background-size: contain;
    content: "";
    height: 100%;
    left: 0;
    position: absolute;
    top: 0;
    width: 100%;
    z-index: 0;
}

@media (min-width:720px) {
    .k-banner:before {
        background-position: 100%;
    }
}

@media (min-width:1200px) {
    .k-banner:before {
        background-size: cover;
    }
}

.hero-content {
    position: relative;
    z-index: 2;
}

.banner {
    color: #fffffe;
    display: flex;
    flex-direction: column;
    gap: 2rem;
    padding: 1.5rem;
    width: 100%;
    z-index: 1;
}

@media (min-width:720px) {
    .banner {
        padding: 3rem;
    }
}

@media (min-width:960px) {
    .banner {
        padding: 6.5rem;
    }
}

.banner-title {
    font-size: 2.5rem;
    font-weight: 800;
    line-height: 3rem;
    text-shadow: 3px 3px 3px rgba(10, 56, 71, .5);
    width: 80%;
}

@media (min-width:720px) {
    .banner-title {
        font-size: 5rem;
        font-weight: 600;
        line-height: 5rem;
        width: 62%;
    }
}

@media (min-width:960px) {
    .banner-title {
        font-size: 5rem;
        width: 40%;
    }
}

.banner-content {
    font-size: 1.25rem;
    font-weight: 600;
    margin-top: -1.5rem;
    text-shadow: 2px 2px 2px rgba(10, 56, 71, .5);
}

@media (min-width:720px) {
    .banner-content {
        font-size: 2rem;
    }
}

.banner-address-form {
    margin-top: 2rem;
    max-width: 500px;
}

.home-location-btn {
    background: transparent;
    border: 2px solid #fff;
    color: #fff;
    padding: 0.5rem 1rem;
    border-radius: 20px;
    font-size: 0.8rem;
    font-weight: 500;
    cursor: pointer;
    display: flex;
    align-items: center;
    gap: 0.4rem;
    margin-top: 1rem;
    transition: all 0.3s ease;
}

.home-location-btn:hover {
    background: #fff;
    color: var(--color-main);
}

.home-location-btn i {
    font-size: 1rem;
}

/* SVG Icon Styling */
.svg-icon.icon {
    fill: #666;
}

.steps-order .step-icon img.icon-svg {
    filter: brightness(0) saturate(100%) invert(13%) sepia(74%) saturate(7151%) hue-rotate(321deg) brightness(95%) contrast(95%);
    width: 5rem;
    height: 5rem;
}

.step-seperator img.icon-svg {
    filter: invert(40%) sepia(0%) saturate(0%) hue-rotate(0deg) brightness(100%) contrast(100%);
    width: 2rem;
    height: 2rem;
}

.address-form-input .svg-icon.icon {
    fill: #999;
}

.address-form-input:focus-within .svg-icon.icon {
    fill: var(--color-main);
}

.banner-address-form .input-with-icon {
    --input-padding: 0.5rem;
    --input-fontsize: 0.75rem;
    --input-color: #666;
    align-items: center;
    border: 1px solid #d6dfe1;
    display: flex;
    padding-left: .5rem;
}

.banner-address-form .input-with-icon .icon {
    fill: #666;
    height: 1rem;
    width: 1rem;
}

.banner-address-form .input-with-icon input {
    border: none;
    color: var(--input-color);
    flex-grow: 1;
    font-size: var(--input-fontsize);
    outline: none;
    padding: var(--input-padding);
}

.banner-address-form .input-with-icon input:focus {
    outline: none;
}

.banner-address-form .input-with-icon {
    --input-padding: 0.6rem;
    --input-fontsize: 1rem;
}

.banner-address-form .address-form-input {
    background-color: #fffffe;
    border: none;
    border-radius: 25px;
    box-shadow: 0 7px 29px 0 hsla(240, 5%, 41%, .2);
    overflow: hidden;
    padding-right: 5.5rem;
    position: relative;
}

.banner-address-form .address-form-submit {
    background-color: #e11686;
    background-image: none;
    border-radius: 25px;
    color: #fffffe;
    cursor: pointer;
    display: inline-block;
    display: block;
    font-weight: 600;
    height: 100%;
    padding: .6em 1.2em;
    position: absolute;
    right: 0;
    top: 0;
    touch-action: manipulation;
    -webkit-user-select: none;
    -moz-user-select: none;
    user-select: none;
    width: 5.5rem;
    border: none;
}

@media (min-width:480px) {
    .banner-address-form .address-form-submit {
        width: 7rem;
    }
}

/* K-Container - Exact copy from original */
.k-container {
    margin-left: auto;
    margin-right: auto;
    max-width: unset;
    padding-left: 1rem;
    padding-right: 1rem;
}

@media (min-width:480px) {
    .k-container {
        max-width: 540px;
    }
}

@media (min-width:720px) {
    .k-container {
        max-width: 720px;
    }
}

@media (min-width:960px) {
    .k-container {
        max-width: 960px;
    }
}

@media (min-width:1200px) {
    .k-container {
        max-width: 1140px;
    }
}

@media (min-width:1200px) {
    .k-container {
        max-width: 1400px;
    }
}

/* Section Styles */
.section {
    padding: 3rem 0;
}

.sub-head-title {
    color: var(--color-dark);
    font-size: 1.2rem;
    margin: 0.875rem 0 1rem;
    text-align: center;
}

.head-title {
    color: var(--color-main);
    font-size: 2rem;
    margin: 0.875rem 0 2rem;
    text-align: center;
    font-weight: 600;
}

/* Steps Section - Exact copy from original */
.steps-order-wrapper {
    align-items: center;
    display: flex;
    flex-flow: column;
    justify-content: center;
}

@media (min-width:720px) {
    .steps-order-wrapper {
        flex-flow: row;
    }
}

.steps-order-wrapper .step-item {
    padding: 1rem;
    text-align: center;
    width: 85%;
}

.steps-order-wrapper .step-item .step-icon {
    color: #e11686;
    display: block;
}

.steps-order-wrapper .step-item .step-icon .icon-svg {
    height: 5rem;
    width: 5rem;
}

.steps-order-wrapper .step-item .step-number {
    background-color: #9a54d6;
    border-radius: 50%;
    color: #fffffe;
    display: inline-block;
    font-size: 1rem;
    height: 2rem;
    left: -2rem;
    line-height: 35px;
    position: relative;
    text-align: center;
    top: -2rem;
    width: 2rem;
}

.steps-order-wrapper .step-item .step-headline {
    display: block;
    font-size: 1rem;
    font-weight: 600;
    margin-bottom: 1rem;
}

.steps-order-wrapper .step-item .step-description {
    font-size: .85rem;
}

@media (min-width:720px) {
    .steps-order-wrapper .step-item {
        width: 32%;
    }
}

.steps-order-wrapper .step-seperator {
    color: #666;
    display: inline-flex;
    margin: 1rem 0;
}

.steps-order-wrapper .step-seperator .icon-svg {
    height: 2rem;
    width: 2rem;
}

@media (min-width:720px) {
    .steps-order-wrapper .step-seperator {
        margin: 0;
    }

    .steps-order-wrapper .step-seperator .icon-svg {
        transform: rotate(-90deg);
    }
}

.steps-order-wrapper .icon-svg {
    fill: currentColor;
}

/* Mobile App Section */
.mobile-app {
    background-color: var(--color-main);
    color: var(--color-white);
    overflow: hidden;
    position: relative;
}

.mobile-app .container {
    position: relative;
}

.mobile-app-title h3 {
    background-color: var(--color-dark);
    color: var(--color-white);
    display: inline;
    font-size: 2rem;
    text-transform: uppercase;
    padding: 0.5rem;
    line-height: 180%;
}

@media (min-width: 768px) {
    .mobile-app-title h3 {
        font-size: 2.5rem;
    }
}

.app-icon {
    width: 10rem;
    margin-bottom: 1rem;
}

.app-icon:not(:last-child) {
    margin-right: 1rem;
}

.mobile-app-text {
    width: 70%;
}

.mobile-app-image {
    display: flex;
    justify-content: center;
    padding-top: 3rem;
}

.mobile-app-image img {
    max-width: 100%;
    height: auto;
}

@media (min-width: 768px) {
    .mobile-app-image {
        position: absolute;
        right: 0;
        bottom: -10rem;
        max-width: 17rem;
        padding-top: 0;
    }
}

/* Network Section */
.network-item img {
    filter: opacity(0.2) grayscale(1);
    transition: all 0.4s;
    width: 65%;
}

.network-item img:hover {
    filter: none;
}

/* Footer */
.footer {
    background-color: var(--color-secondary);
    color: var(--color-white);
    padding: 2rem 0;
}

.footer-logo img {
    width: 8rem;
}

.footer-menu {
    list-style: none;
    padding: 0;
}

.footer-menu li {
    margin-bottom: 0.5rem;
}

.footer-menu a {
    color: var(--color-white);
    text-decoration: none;
    font-size: 0.85rem;
}

.footer-menu a:hover {
    text-decoration: underline;
}

@media (min-width: 960px) {
    .footer-menu {
        text-align: right;
    }
}

.social-links {
    display: flex;
    gap: 2rem;
    margin-bottom: 1rem;
}

.social-link {
    color: var(--color-white);
    font-size: 1.5rem;
}

.powered {
    font-size: 0.85rem;
    opacity: 0.7;
}

.powered a {
    color: var(--color-white);
    border-bottom: 1px dotted #ebebeb;
    text-decoration: none;
}

/* Cookie Banner */
.cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background-color: var(--color-gray);
    color: var(--color-white);
    padding: 2rem 0;
    z-index: 9999;
    display: none;
}

.cookie-banner.show {
    display: block;
}

.cookie-content {
    display: flex;
    align-items: flex-start;
    gap: 2rem;
    max-width: 1000px;
    margin: 0 auto;
    padding: 0 1rem;
}

@media (max-width: 650px) {
    .cookie-content {
        flex-wrap: wrap;
        gap: 1rem;
    }
}

.cookie-text {
    flex: 1;
    font-size: 0.85rem;
}

.cookie-buttons {
    display: flex;
    gap: 1rem;
}

.cookie-btn {
    padding: 0.5rem 2.5rem;
    border: none;
    cursor: pointer;
    white-space: nowrap;
}

.cookie-accept {
    background-color: var(--color-white);
    color: var(--color-gray);
}

.cookie-learn {
    background-color: transparent;
    color: var(--color-white);
    border: 0.1rem solid #858796;
}

/* Salon Section Styles */
.salons {
    padding: 4rem 0;
    background-color: #f8f9fa;
}

.section-header {
    text-align: center;
    margin-bottom: 3rem;
}

.section-header h2 {
    color: var(--color-main);
    font-size: 2.5rem;
    font-weight: 600;
    margin-bottom: 1rem;
}

.section-subtitle {
    color: var(--color-dark);
    font-size: 1.1rem;
    opacity: 0.8;
}

.salon-categories {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 1rem;
    margin-bottom: 3rem;
}

.category-btn {
    background: white;
    border: 2px solid #e0e0e0;
    color: var(--color-dark);
    padding: 0.75rem 1.5rem;
    border-radius: 25px;
    font-weight: 500;
    cursor: pointer;
    transition: all 0.3s ease;
}

.category-btn:hover,
.category-btn.active {
    background: var(--color-main);
    border-color: var(--color-main);
    color: white;
}

.salon-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
    margin-top: 2rem;
}

.salon-card {
    background: white;
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
    cursor: pointer;
}

.salon-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.15);
}

.salon-image {
    width: 100%;
    height: 200px;
    object-fit: cover;
}

.salon-info {
    padding: 1.5rem;
}

.salon-header {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    margin-bottom: 0.5rem;
}

.salon-name {
    font-size: 1.25rem;
    font-weight: 600;
    color: var(--color-dark);
    margin: 0;
    flex: 1;
}

.salon-rating {
    display: flex;
    align-items: center;
    gap: 0.25rem;
    color: #ffa500;
    font-weight: 500;
    font-size: 0.9rem;
}

.salon-rating i {
    font-size: 0.8rem;
}

.salon-category {
    color: #666;
    font-size: 0.9rem;
    margin: 0.5rem 0 1rem 0;
}

.salon-details {
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-size: 0.85rem;
    color: #888;
}

.service-time,
.distance,
.service-fee {
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.language-select {
    background: transparent;
    border: 1px solid #ddd;
    border-radius: 6px;
    padding: 0.5rem;
    font-size: 0.9rem;
    color: #333;
    cursor: pointer;
    transition: all 0.3s ease;
}

.language-select:hover {
    border-color: var(--color-main);
}

.language-select:focus {
    outline: none;
    border-color: var(--color-main);
    box-shadow: 0 0 0 2px rgba(225, 22, 134, 0.1);
}

.service-time i,
.distance i {
    font-size: 0.75rem;
}

.service-fee {
    color: var(--color-main);
    font-weight: 500;
}

/* Responsive Design */
@media (max-width: 1024px) {
    .salon-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 1.5rem;
    }
}

@media (max-width: 768px) {
    .salon-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
    
    .category-btn {
        padding: 0.5rem 1rem;
        font-size: 0.9rem;
    }
    
    .section-header h2 {
        font-size: 2rem;
    }
}

/* Utility Classes */
.text-shadow {
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.3);
}

.bg-gradient {
    background: linear-gradient(135deg, var(--color-main) 0%, var(--color-purple) 100%);
}

/* Categories Section - FoodTada Style */
.categories {
  padding: 5rem 0;
  background: #f8f9fa;
}

.category-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
  gap: 2rem;
  margin-top: 2rem;
}

.category-card {
  background: white;
  border-radius: 20px;
  overflow: hidden;
  text-align: center;
  box-shadow: 0 10px 30px rgba(0,0,0,0.1);
  transition: all 0.3s ease;
  cursor: pointer;
}

.category-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 20px 40px rgba(0,0,0,0.15);
}

.category-card img {
  width: 100%;
  height: 120px;
  object-fit: cover;
}

.category-card h3 {
  padding: 1rem;
  font-size: 1.1rem;
  font-weight: 600;
  color: #333;
}

@media (max-width: 768px) {
  .category-grid {
    grid-template-columns: repeat(auto-fit, minmax(120px, 1fr));
  }
}
