/*
Theme Name: Kampery Wiśniewski
Theme URI: https://example.com/
Author: Kampery Wiśniewski
Author URI: https://example.com/
Description: Motyw WordPress przygotowany z istniejącej makiety HTML.
Version: 1.0.0
Text Domain: kamperywisniewski
*/

/* Below: migrated styles from the static site */

/* Global Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, 'Helvetica Neue', Arial, sans-serif;
    color: #333;
    line-height: 1.6;
    background: #f5f5f5;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

a {
    text-decoration: none;
    color: inherit;
}

/* Top Banner */
.top-banner {
    background: #1a2332;
    color: #fff;
    text-align: center;
    padding: 10px;
    font-size: 14px;
}

.top-banner a {
    color: #ff911f;
    text-decoration: underline;
}

/* Header */
header {
    background: #fff;
    padding: 20px 0;
    box-shadow: 0 2px 5px rgba(0,0,0,0.1);
}

header .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo h1 {
    font-size: 28px;
    color: #1a2332;
}

.logo-highlight {
    background: #ff911f;
    color: #fff;
    padding: 5px 12px;
    border-radius: 5px;
}

nav ul {
    display: flex;
    list-style: none;
    gap: 30px;
}

nav a {
    color: #333;
    font-weight: 500;
    transition: color 0.3s;
}

nav a:hover {
    color: #ff911f;
}

/* Hero Section */
.hero {
    position: relative;
    height: 700px;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
}

.hero-video {
    position: absolute;
    top: 50%;
    left: 50%;
    min-width: 100%;
    min-height: 100%;
    width: auto;
    height: auto;
    transform: translate(-50%, -50%);
    object-fit: cover;
    z-index: 0;
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.5);
    z-index: 1;
}

.hero-content {
    position: relative;
    z-index: 2;
    text-align: center;
    color: #fff;
    max-width: 800px;
    padding: 0 20px;
}

.hero-title {
    font-size: 56px;
    font-weight: 700;
    margin-bottom: 20px;
    line-height: 1.2;
    text-shadow: 2px 2px 4px rgba(0,0,0,0.3);
}

.hero-subtitle {
    font-size: 24px;
    font-weight: 300;
    opacity: 0.95;
    text-shadow: 1px 1px 3px rgba(0,0,0,0.3);
}

/* Fleet Section */
.fleet {
    padding: 80px 0;
    background: #fff;
}

.section-title {
    text-align: center;
    font-size: 40px;
    margin-bottom: 60px;
    color: #1a2332;
    font-weight: 700;
}

.vehicles-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 30px;
    max-width: 1200px;
    margin: 0 auto;
}

.vehicle-card {
    background: #fff;
    border: 1px solid #e0e0e0;
    border-radius: 8px;
    overflow: hidden;
    transition: transform 0.3s, box-shadow 0.3s;
}

.vehicle-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
}

.vehicle-card img {
    width: 100%;
    /*height: 200px;*/
    object-fit: cover;
}

.vehicle-info {
    padding: 20px;
}

.vehicle-info h4 {
    font-size: 18px;
    color: #1a2332;
    margin-bottom: 10px;
}

.vehicle-rating {
    font-size: 13px;
    color: #666;
    margin-bottom: 15px;
}

.vehicle-specs {
    display: flex;
    gap: 15px;
    margin-bottom: 20px;
    flex-wrap: wrap;
}

.vehicle-specs span {
    font-size: 13px;
    color: #666;
}

.vehicle-footer {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.price {
    font-size: 14px;
    color: #666;
}

.price strong {
    font-size: 22px;
    color: #ff911f;
    font-weight: 700;
}

.btn-rent {
    background: #003d7a;
    color: #fff;
    padding: 10px 25px;
    border-radius: 4px;
    font-weight: 600;
    transition: background 0.3s;
}

.btn-rent:hover {
    background: #002952;
}

/* Why Choose Us Section */
.why-choose-us {
    padding: 80px 0;
    background: #f9f9f9;
}

.why-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}

.section-label {
    color: #ff911f;
    font-size: 16px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 15px;
}

.section-title-left {
    font-size: 40px;
    color: #1a2332;
    margin-bottom: 25px;
    line-height: 1.2;
    font-weight: 700;
}

.why-text p {
    font-size: 16px;
    line-height: 1.8;
    color: #666;
    margin-bottom: 20px;
}

.features-list-text {
    list-style: none;
    padding: 0;
    margin-top: 30px;
}

.features-list-text li {
    padding: 15px 0;
    padding-left: 30px;
    position: relative;
    color: #666;
    line-height: 1.6;
}

.features-list-text li:before {
    content: "✓";
    position: absolute;
    left: 0;
    color: #4caf50;
    font-weight: bold;
    font-size: 20px;
}

.why-image img {
    width: 100%;
    border-radius: 12px;
    box-shadow: 0 10px 40px rgba(0,0,0,0.1);
}

/* Safety Banner */
.safety-banner {
    position: relative;
    padding: 100px 0;
    background: url('https://images.unsplash.com/photo-1523987355523-c7b5b0dd90a7?w=1600') center/cover;
    background-attachment: fixed;
    color: #fff;
    text-align: center;
}

.safety-content {
    position: relative;
    z-index: 2;
    max-width: 800px;
    margin: 0 auto;
}

.safety-label {
    font-size: 16px;
    text-transform: uppercase;
    letter-spacing: 2px;
    margin-bottom: 20px;
    opacity: 0.9;
}

.safety-content h2 {
    font-size: 48px;
    margin-bottom: 25px;
    font-weight: 700;
    line-height: 1.2;
}

.safety-description {
    font-size: 20px;
    line-height: 1.6;
    opacity: 0.95;
}

/* FAQ Section */
.faq-section {
    padding: 80px 0;
    background: #fff;
}

.faq-accordion {
    max-width: 900px;
    margin: 0 auto;
}

.faq-item {
    background: #fff;
    margin-bottom: 15px;
    border: 1px solid #e0e0e0;
    border-radius: 8px;
    overflow: hidden;
    transition: all 0.3s;
}

.faq-item:hover {
    border-color: #ff911f;
}

.faq-item.active {
    border-color: #ff911f;
}

.faq-question {
    width: 100%;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 25px 30px;
    background: none;
    border: none;
    text-align: left;
    cursor: pointer;
    font-size: 18px;
    font-weight: 600;
    color: #1a2332;
    transition: background 0.3s;
}

.faq-question:hover {
    background: #f9f9f9;
}

.faq-icon {
    font-size: 28px;
    color: #ff911f;
    font-weight: 300;
    transition: transform 0.3s;
}

.faq-item.active .faq-icon {
    transform: rotate(45deg);
}

.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease-out, padding 0.3s ease-out;
    padding: 0 30px;
}

.faq-item.active .faq-answer {
    max-height: 500px;
    padding: 0 30px 25px 30px;
}

.faq-answer p {
    font-size: 16px;
    line-height: 1.7;
    color: #666;
    margin: 0;
}

/* Footer */
footer {
    background: #1a2332;
    color: #fff;
    padding: 60px 0 20px;
}

.footer-content {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1fr;
    gap: 40px;
    margin-bottom: 40px;
}

.footer-logo h2 {
    font-size: 26px;
    margin-bottom: 30px;
}

.footer-info p {
    margin-bottom: 5px;
    color: #ccc;
    font-size: 15px;
}

.footer-info h3 {
    font-size: 28px;
    margin: 15px 0;
}

.footer-info h3 a {
    color: #fff;
    text-decoration: none;
    transition: color 0.3s;
}

.footer-info h3 a:hover {
    color: #ff911f;
}

.footer-info a {
    color: #4a9eff;
    transition: color 0.3s;
}

.footer-info a:hover {
    color: #fff;
}

.footer-section h4 {
    font-size: 18px;
    margin-bottom: 25px;
    font-weight: 600;
}

.footer-section ul {
    list-style: none;
}

.footer-section li {
    margin-bottom: 12px;
}

.footer-section a {
    color: #ccc;
    transition: color 0.3s;
    font-size: 15px;
}

.footer-section a:hover {
    color: #fff;
}

.social-links {
    display: flex;
    gap: 15px;
    font-size: 28px;
}

.social-links a {
    color: #ccc;
    transition: color 0.3s;
}

.social-links a:hover {
    color: #fff;
}

.footer-bottom {
    text-align: center;
    padding-top: 30px;
    border-top: 1px solid #333;
    color: #999;
    font-size: 14px;
}

/* Vehicle Details Page */
.vehicle-details {
    padding: 40px 0;
    background: #f5f5f5;
}

.back-link {
    display: inline-block;
    color: #003d7a;
    margin-bottom: 30px;
    font-size: 14px;
}

.back-link:hover {
    text-decoration: underline;
}

.details-grid {
    display: grid;
    grid-template-columns: 2fr 1fr;
    gap: 30px;
}

.details-left {
    background: #fff;
    padding: 40px;
    border-radius: 8px;
}

.vehicle-main-image img {
    width: 100%;
    height: 450px;
    object-fit: cover;
    border-radius: 8px;
    margin-bottom: 20px;
}

.gallery-container {
    margin: 30px 0;
}

.product-gallery-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 15px;
}

.gallery-item {
    aspect-ratio: 1 / 1;
    overflow: hidden;
    box-shadow: 0 4px 15px rgba(0,0,0,0.1);
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.gallery-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 25px rgba(0,0,0,0.15);
}

.gallery-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.gallery-item:hover img {
    transform: scale(1.1);
}

@media (max-width: 768px) {
    .product-gallery-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}
@media (max-width: 480px) {
    .product-gallery-grid {
        grid-template-columns: 1fr;
    }
}

.vehicle-header {
    margin-bottom: 40px;
}

.vehicle-header h1 {
    font-size: 36px;
    color: #1a2332;
    margin-bottom: 10px;
    line-height: 1.2;
}

.vehicle-subtitle {
    font-size: 18px;
    color: #666;
    font-weight: 500;
}

/* Section Blocks */
.section-block {
    margin-bottom: 50px;
    padding-bottom: 40px;
    border-bottom: 1px solid #e0e0e0;
}

.section-block:last-child {
    border-bottom: none;
}

.section-block h2 {
    font-size: 28px;
    color: #1a2332;
    margin-bottom: 25px;
    font-weight: 700;
}

.section-block h3 {
    font-size: 20px;
    color: #1a2332;
    margin-bottom: 15px;
    font-weight: 600;
}

/* Technical Grid */
.tech-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
}

.tech-item {
    background: #f9f9f9;
    padding: 20px;
    border-radius: 6px;
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.tech-label {
    font-size: 13px;
    color: #999;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.tech-value {
    font-size: 18px;
    color: #1a2332;
    font-weight: 600;
}

/* Lists */
.simple-list {
    list-style: none;
    padding: 0;
}

.simple-list li {
    padding: 12px 0;
    padding-left: 25px;
    position: relative;
    color: #666;
    font-size: 16px;
    border-bottom: 1px solid #f0f0f0;
}

.simple-list li:before {
    content: "•";
    position: absolute;
    left: 0;
    color: #ff911f;
    font-weight: bold;
    font-size: 20px;
}

/* Equipment Categories */
.equipment-category {
    margin-bottom: 35px;
}

.equipment-category h3 {
    font-size: 20px;
    color: #1a2332;
    margin-bottom: 12px;
}

.category-intro {
    color: #666;
    margin-bottom: 15px;
    font-size: 15px;
}

.equipment-list {
    list-style: none;
    padding: 0;
}

.equipment-list li {
    padding: 10px 0;
    padding-left: 25px;
    position: relative;
    color: #666;
    font-size: 15px;
}

.equipment-list li:before {
    content: "✓";
    position: absolute;
    left: 0;
    color: #4caf50;
    font-weight: bold;
}

/* Winter Ready Box */
.winter-ready {
    background: linear-gradient(135deg, #e3f2fd 0%, #bbdefb 100%);
    padding: 25px;
    border-radius: 8px;
    margin-top: 30px;
}

.winter-ready h3 {
    color: #1565c0;
    margin-bottom: 10px;
}

.winter-ready p {
    color: #0d47a1;
    margin: 0;
}

/* Highlight Box */
.highlight-box {
    background: #fff9e6;
    padding: 30px;
    border-radius: 8px;
    border-left: 4px solid #ffc107;
}

.service-intro {
    color: #666;
    margin-bottom: 20px;
    font-size: 16px;
}

.service-list {
    list-style: none;
    padding: 0;
    margin-bottom: 25px;
}

.service-list li {
    padding: 10px 0;
    padding-left: 30px;
    position: relative;
    color: #333;
    font-size: 15px;
}

.service-list li:before {
    content: "✓";
    position: absolute;
    left: 0;
    color: #4caf50;
    font-weight: bold;
    font-size: 18px;
}

.safety-kit {
    background: #fff;
    padding: 20px;
    border-radius: 6px;
    margin-top: 20px;
}

.safety-kit strong {
    display: block;
    margin-bottom: 15px;
    color: #1a2332;
}

.safety-kit ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.safety-kit li {
    padding: 8px 0;
    padding-left: 25px;
    position: relative;
    color: #666;
    font-size: 14px;
}

.safety-kit li:before {
    content: "•";
    position: absolute;
    left: 0;
    color: #ff911f;
    font-weight: bold;
}

/* Options List */
.options-list {
    list-style: none;
    padding: 0;
}

.options-list li {
    padding: 15px;
    margin-bottom: 12px;
    background: #f9f9f9;
    border-radius: 6px;
    font-size: 15px;
    color: #666;
}

.options-list strong {
    color: #1a2332;
    margin-right: 8px;
}

/* Steps Grid */
.steps-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
}

.step-item {
    text-align: center;
    padding: 30px 20px;
    background: #f9f9f9;
    border-radius: 8px;
}

.step-number {
    width: 60px;
    height: 60px;
    background: #ff911f;
    color: #fff;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 28px;
    font-weight: 700;
    margin: 0 auto 20px;
}

.step-item h3 {
    font-size: 18px;
    color: #1a2332;
    margin-bottom: 12px;
}

.step-item p {
    color: #666;
    font-size: 15px;
    line-height: 1.6;
}

/* Why Us Box */
.why-us-box {
    background: #e8f5e9;
    padding: 35px;
    border-radius: 8px;
    border-left: 4px solid #4caf50;
}

.benefits-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 25px;
}

.benefit-item {
    display: flex;
    align-items: flex-start;
    gap: 15px;
}

.benefit-icon {
    width: 40px;
    height: 40px;
    background: #4caf50;
    color: #fff;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 20px;
    font-weight: bold;
    flex-shrink: 0;
}

.benefit-item strong {
    display: block;
    color: #1a2332;
    margin-bottom: 5px;
    font-size: 16px;
}

.benefit-item p {
    color: #666;
    font-size: 14px;
    margin: 0;
}

/* Gallery */
.gallery-section {
    margin-top: 40px;
}

.gallery-section h2 {
    font-size: 28px;
    color: #1a2332;
    margin-bottom: 25px;
}

.gallery-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 15px;
}

.gallery-grid img {
    width: 100%;
    height: 200px;
    object-fit: cover;
    border-radius: 8px;
    cursor: pointer;
    transition: transform 0.3s, opacity 0.3s;
}

.gallery-grid img:hover {
    transform: scale(1.05);
    opacity: 0.9;
}

/* Lightbox */
.lightbox {
    display: none;
    position: fixed;
    z-index: 9999;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.95);
    align-items: center;
    justify-content: center;
}

.lightbox img {
    max-width: 90%;
    max-height: 90%;
    object-fit: contain;
    border-radius: 8px;
}

.lightbox-close {
    position: absolute;
    top: 30px;
    right: 40px;
    font-size: 50px;
    color: #fff;
    cursor: pointer;
    font-weight: 300;
    transition: color 0.3s;
}

.lightbox-close:hover {
    color: #ff911f;
}

/* Seasonal Prices */
.seasonal-prices-box {
    background: #fff;
    border-radius: 8px;
    box-shadow: 0 2px 10px rgba(0,0,0,0.1);
    margin-bottom: 20px;
    overflow: hidden;
}

.seasonal-prices-toggle {
    width: 100%;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 20px 25px;
    background: #f9f9f9;
    border: none;
    cursor: pointer;
    font-size: 18px;
    font-weight: 600;
    color: #1a2332;
    transition: background 0.3s;
}

.seasonal-prices-toggle:hover {
    background: #f0f0f0;
}

.seasonal-prices-toggle.active {
    background: #003d7a;
    color: #fff;
}

.toggle-icon {
    font-size: 28px;
    font-weight: 300;
    transition: transform 0.3s;
}

.seasonal-prices-toggle.active .toggle-icon {
    transform: rotate(45deg);
}

.seasonal-prices-content {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.4s ease-out;
}

.seasonal-prices-content.active {
    max-height: 600px;
}

.season-item {
    padding: 20px 25px;
    border-bottom: 1px solid #f0f0f0;
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 15px;
}

.season-item:last-child {
    border-bottom: none;
}

.season-item.highlight {
    background: #fff9e6;
}

.season-period {
    flex: 1;
}

.season-period strong {
    display: block;
    font-size: 16px;
    color: #1a2332;
    margin-bottom: 5px;
}

.season-dates {
    font-size: 13px;
    color: #666;
    display: block;
}

.season-price {
    font-size: 20px;
    font-weight: 700;
    color: #ff911f;
    white-space: nowrap;
}

/* Booking Box */
.details-right {
    position: sticky;
    top: 20px;
    height: fit-content;
}

.booking-box {
    background: #fff;
    padding: 0;
    border-radius: 8px;
    box-shadow: 0 2px 10px rgba(0,0,0,0.1);
    /*overflow: hidden;*/
}

.price-header {
    background: #003d7a;
    color: #fff;
    padding: 20px;
    text-align: center;
}

.price-header h2 {
    font-size: 36px;
}

.price-header .price {
    color: #fff;
}

.price-header span {
    font-size: 18px;
    font-weight: normal;
}

.booking-form {
    padding: 25px;
}

.booking-form .form-group {
    margin-bottom: 20px;
}

.booking-form label {
    display: block;
    font-size: 13px;
    color: #666;
    margin-bottom: 8px;
    font-weight: 600;
}

.booking-form input[type="date"] {
    width: 100%;
    padding: 12px;
    border: 1px solid #ddd;
    border-radius: 4px;
    font-size: 14px;
}

.additional-options {
    margin: 25px 0;
}

.additional-options h3 {
    font-size: 16px;
    color: #1a2332;
    margin-bottom: 15px;
}

.option-item {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 12px 0;
    border-bottom: 1px solid #f0f0f0;
    cursor: pointer;
}

.option-item:hover {
    background: #f9f9f9;
}

.option-item input[type="checkbox"] {
    width: 18px;
    height: 18px;
    cursor: pointer;
}

.option-item span {
    font-size: 14px;
    color: #666;
}

.total-price {
    background: #f9f9f9;
    padding: 20px;
    margin: 20px -25px;
    text-align: center;
}

.total-price strong {
    font-size: 20px;
    color: #1a2332;
}

/* CUSTOM */

.btn-rent-now, .single_add_to_cart_button {
    width: 100% !important;
    padding: 15px !important;
    background: #003d7a !important;
    color: #fff !important;
    border: none !important;
    border-radius: 4px !important;
    font-size: 16px !important;
    font-weight: 600 !important;
    cursor: pointer !important;
    transition: background 0.3s !important;
}

.btn-rent-now:hover, .single_add_to_cart_button:hover {
    background: #002952 !important;
}

.jet-abaf-field__input[data-field="checkin-checkout"] {
  width: 100%;
  padding: 12px 16px;
  background-color: white;
  border: 1px solid #ccc;
  border-radius: 4px;
  font-size: 16px;
  cursor: pointer;
  text-align: center;
}

.product_meta {
    display: none;
}

.booking-form p.price {
    display: none;
}

.price-header .price bdi {
    font-weight: 700;
}

.jet-abaf-product-total {
    font-weight: 700;
    font-size: 20px;
}

/* Responsive Design */
@media (max-width: 968px) {
    .details-grid {
        grid-template-columns: 1fr;
    }

    .details-right {
        position: relative;
        top: 0;
    }

    .footer-content {
        grid-template-columns: 1fr 1fr;
    }

    .why-content {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .why-image {
        order: -1;
    }

    nav ul {
        flex-wrap: wrap;
        gap: 15px;
    }

    nav a {
        font-size: 14px;
    }

    .tech-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .steps-grid {
        grid-template-columns: 1fr;
    }

    .benefits-grid {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 768px) {
    .hero {
        height: 500px;
    }

    .hero-title {
        font-size: 36px;
    }

    .hero-subtitle {
        font-size: 18px;
    }

    .section-title {
        font-size: 32px;
    }

    .section-title-left {
        font-size: 32px;
    }

    .safety-content h2 {
        font-size: 36px;
    }

    .vehicles-grid {
        grid-template-columns: 1fr;
    }

    .tech-grid {
        grid-template-columns: 1fr;
    }

    .gallery-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .footer-content {
        grid-template-columns: 1fr;
    }

    nav ul {
        display: none;
    }

    header {
        padding: 15px 0;
    }

    .logo h1 {
        font-size: 22px;
    }

    .vehicle-header h1 {
        font-size: 28px;
    }

    .section-block h2 {
        font-size: 24px;
    }

    .details-left {
        padding: 25px;
    }

    .season-item {
        flex-direction: column;
        align-items: flex-start;
        gap: 10px;
    }

    .season-price {
        font-size: 18px;
    }

    .lightbox-close {
        top: 15px;
        right: 20px;
        font-size: 40px;
    }
}

/* CUSTOM */

.price-header .price {
    font-size: 0;
}

.price-header .price::before {
    content: "Od: ";
    font-size: 16px; /* lub inna wartość jaka była domyślnie */
}

.price-header .price span {
    font-size: 16px !important;
}

.day-price::first-letter {
    color: transparent;
    font-size: 0;
    width: 0;
}

.wp-block-separator {
    border: none;
    border-top: 1px solid #dddddd;
    margin: 30px 0;
}

.page-template-default .section-block ol, .page-template-default .section-block ul {
    padding-left: 20px; /* Wcięcie całej listy */
	margin-bottom: 20px;
}

.page-template-default .section-block iframe {
    width: 100% !important;
    height: auto;
    aspect-ratio: 16/9;
}


/* Przycisk "Przejdź do płatności" - kolor #003d7a bez gradientu */
.wc-proceed-to-checkout .checkout-button {
    background: #003d7a !important;
}

.wc-proceed-to-checkout .checkout-button:hover {
    background: #002a54 !important;
}

/* Przycisk "Kupuję i płacę" - prosty, bez gradientów i cieni */
#place_order {
    width: 100%;
    background: #003d7a !important;
    color: #fff !important;
    border: none !important;
    padding: 18px 30px !important;
    font-size: 18px !important;
    font-weight: 700 !important;
    border-radius: 8px !important;
    cursor: pointer !important;
    transition: background 0.3s !important;
    text-transform: uppercase !important;
    letter-spacing: 1px !important;
    box-shadow: none !important;
}

#place_order:hover {
    background: #002a54 !important;
}

#place_order:active {
    background: #001f3f !important;
}

/* ===== LABELE ===== */
.form-row label {
    display: block !important;
    margin-bottom: 8px !important;
    font-weight: 600 !important;
    color: #333 !important;
    font-size: 14px !important;
}

/* Gwiazdka wymagane */
.required {
    color: #dc3545 !important;
}

/* ===== POLA INPUT ===== */
.input-text,
input[type="text"],
input[type="email"],
input[type="tel"],
textarea {
    width: 100% !important;
    padding: 12px 16px !important;
    border: 2px solid #ddd !important;
    border-radius: 6px !important;
    font-size: 15px !important;
    transition: border-color 0.3s !important;
}

.input-text:focus,
input[type="text"]:focus,
input[type="email"]:focus,
input[type="tel"]:focus,
textarea:focus {
    outline: none !important;
    border-color: #003d7a !important;
}

/* Placeholder */
.input-text::placeholder,
input::placeholder,
textarea::placeholder {
    color: #999 !important;
}

/* Przycisk Rezerwacja w menu - delikatny szary */
header nav ul li:last-child a {
    background: #f5f5f5 !important;
    padding: 8px 16px !important;
    border-radius: 6px !important;
    border: 1px solid #e0e0e0 !important;
    transition: all 0.3s !important;
}

header nav ul li:last-child a:hover {
    background: #e8e8e8 !important;
    border-color: #d0d0d0 !important;
}