/*
Theme Name: Painter Artist
Description: A beautiful WordPress theme for painters and artists to showcase their work and portfolio.
Version: 1.0
Author: Your Name
Text Domain: painter-artist
*/

@import url('https://fonts.googleapis.com/css2?family=Fraunces:ital,opsz,wght@0,9..144,100..900;1,9..144,100..900&display=swap');

/* Reset and Base Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: sans-serif;
    font-weight: 400;
    font-size: 16px;
    line-height: 1.6;
    color: #333;
        background: #ecf3f3;
}

a {
    text-decoration: none;
    color: inherit;
    transition: all 0.3s ease;
    font-family: sans-serif;
}

a:hover {
    opacity: 0.8;
}

/* Icon Styling */
i[class^="fa"],
i[class*=" fa"] {
    font-style: normal;
    font-variant: normal;
    text-rendering: auto;
    line-height: 1;
    display: inline-block;
}

.fas,
.far,
.fab,
.fal,
.fad {
    font-family: "Font Awesome 6 Free", "Font Awesome 6 Pro", "Font Awesome 6 Brands" !important;
    font-weight: 900;
}

.fab {
    font-weight: 400;
}

/* Typography */
h1, h2, h3, h4, h5, h6 {
    font-family: 'Fraunces', serif;
    font-weight: 700;
    line-height: 1.2;
    margin-bottom: 1rem;
    color: #2c3e50;
}

h1 {
    font-size: 6rem;
    line-height: 1.4;
}

h2 {
    font-size: 3rem;
    line-height: 1.3;
}

h3 {
    font-size: 2rem;
    line-height: 1.3;
}

h4 {
    font-size: 1.5rem;
    font-family: 'Fraunces', serif;
}

h5 {
    font-size: 1.125rem;
    font-family: 'Fraunces', serif;
}

h6 {
    font-size: 0.875rem;
    font-family: 'Fraunces', serif;
}

p {
    margin-bottom: 1em;
}

/* Form Elements */
input[type="text"],
input[type="email"],
input[type="url"],
input[type="password"],
input[type="search"],
input[type="number"],
input[type="tel"],
input[type="range"],
input[type="date"],
input[type="month"],
input[type="week"],
input[type="time"],
input[type="datetime"],
input[type="datetime-local"],
input[type="color"],
textarea,
select {
    width: 100%;
    padding: 12px 15px;
    border: 1px solid #ddd;
    border-radius: 5px;
    font-size: 14px;
    font-family: inherit;
    line-height: 1.4;
    background: #fff;
    transition: border-color 0.3s ease, box-shadow 0.3s ease;
}

input[type="text"]:focus,
input[type="email"]:focus,
input[type="url"]:focus,
input[type="password"]:focus,
input[type="search"]:focus,
input[type="number"]:focus,
input[type="tel"]:focus,
input[type="range"]:focus,
input[type="date"]:focus,
input[type="month"]:focus,
input[type="week"]:focus,
input[type="time"]:focus,
input[type="datetime"]:focus,
input[type="datetime-local"]:focus,
input[type="color"]:focus,
textarea:focus,
select:focus {
    outline: none;
    border-color: #333;
    box-shadow: 0 0 0 2px rgba(51, 51, 51, 0.1);
}

label {
    display: block;
    margin-bottom: 5px;
    font-weight: 500;
    color: #333;
}

.form-row {
    margin-bottom: 20px;
}

/* Search Form */
.search-form {
    display: flex;
    max-width: 300px;
    gap: 10px;
}

.search-form input[type="search"] {
    flex: 1;
    border-radius: 5px;
    padding: 10px 15px;
    border: 1px solid #ddd;
    font-size: 14px;
}

.search-form button {
    border-radius: 5px;
    padding: 10px 15px;
    min-width: auto;
    background: #007cba;
    color: white;
    border: none;
    cursor: pointer;
    transition: background 0.3s ease;
}

.search-form button:hover {
    background: #005a8b;
}

/* Container */
.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* Header */
.site-header {
    background: transparent;
    box-shadow: none;
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    border-bottom: none;
    transition: all 0.3s ease;
    padding: 5px 0;
}

.site-header.scrolled {
    background: #ffffff;
    box-shadow: 0 2px 10px rgba(0,0,0,0.1);
}

.header-content {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    gap: 20px;
}

/* New 2-column layout styles */
.site-branding-column {
    flex: 1;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
}

.header-actions-column {
    flex: 1;
    display: flex;
    flex-direction: column;
    align-items: flex-end;
    gap: 15px;
}

.header-social {
    display: flex;
    gap: 15px;
}

.social-link {
    color: #333;
    font-size: 18px;
    transition: color 0.3s ease;
}

.social-link:hover {
    color: #007cba;
}

.site-branding {
    text-align: left;
}

.site-description {
    margin: 5px 0 0 0;
    font-size: 14px;
    color: #666;
    font-style: italic;
}

/* Navigation Menu - 2 Column Layout with Stacked Titles */
.menu-two-column {
    display: flex;
    justify-content: center;
    gap: 60px;
    list-style: none;
    margin: 0;
    padding: 20px 0;
}

.menu-item-stacked {
    flex: 1;
    max-width: 300px;
}

.menu-link-stacked {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-decoration: none;
    padding: 20px;
    border-radius: 8px;
    transition: all 0.3s ease;
    background: rgba(255, 255, 255, 0.8);
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
}

.menu-link-stacked:hover {
    background: rgba(255, 255, 255, 1);
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.15);
    transform: translateY(-2px);
}

.menu-title {
    font-size: 24px;
    font-weight: 700;
    color: #333;
    margin-bottom: 8px;
    text-align: center;
}

.menu-subtitle {
    font-size: 14px;
    color: #666;
    text-align: center;
    line-height: 1.4;
    font-style: italic;
}

.site-title a {
    font-size: 24px;
    font-weight: 700;
    color: #333;
    text-decoration: none;
}


.header-account,
.header-cart,
.header-search {
    position: relative;
}

.account-link,
.cart-link,
.search-toggle {
    color: #333;
    font-size: 18px;
    background: none;
    border: none;
    cursor: pointer;
    transition: color 0.3s ease;
}

.account-link:hover,
.cart-link:hover,
.search-toggle:hover {
    color: #007cba;
}

/* Header scrolled state - white icons */
.site-header.scrolled .account-link,
.site-header.scrolled .cart-link,
.site-header.scrolled .search-toggle {
    color: #fff;
}

.site-header.scrolled .account-link:hover,
.site-header.scrolled .cart-link:hover,
.site-header.scrolled .search-toggle:hover {
    color: #007cba;
}

.cart-amount {
    display: none;
}

.cart-count {
    position: absolute;
    top: -8px;
    right: -8px;
    background: #007cba;
    color: white;
    border-radius: 50%;
    width: 18px;
    height: 18px;
    font-size: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
}

/* Search Form Styling */
.search-form-container {
    position: absolute;
    top: 100%;
    right: 0;
    background: white;
    border: 1px solid #e9ecef;
    border-radius: 5px;
    padding: 15px;
    min-width: 300px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
    opacity: 0;
    visibility: hidden;
    transform: translateY(-10px);
    transition: all 0.3s ease;
    z-index: 1001;
    display: none;
}

.search-form-container.active {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
    display: block;
}

.search-form {
    display: flex;
    gap: 10px;
}

.search-form input[type="search"] {
    flex: 1;
    padding: 10px 15px;
    border: 1px solid #ddd;
    border-radius: 5px;
    font-size: 14px;
}


.search-form button:hover {
    background: #005a8b;
}

/* Navigation */
.main-navigation {
    border-top: 1px solid #e9ecef;
    padding: 0;
}

.main-navigation .container {
    display: flex;
    justify-content: center;
    position: relative;
}

.menu {
    display: flex;
    list-style: none;
    margin: 0;
    padding: 0;
    gap: 40px;
}

.menu-item a {
    display: block;
    padding: 20px 25px;
    color: #333;
    text-decoration: none;
    font-weight: 500;
    transition: all 0.3s ease;
    position: relative;
}

.menu-item a:hover {
    color: #007cba;
}

.menu-item a::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    width: 0;
    height: 2px;
    background: #007cba;
    transition: all 0.3s ease;
    transform: translateX(-50%);
}

.menu-item a:hover::after {
    width: 80%;
}

.menu-toggle {
    display: none;
    background: none;
    border: none;
    cursor: pointer;
    flex-direction: column;
    gap: 3px;
    padding: 15px;
    font-size: 1.2rem;
    color: #333;
}

.menu-icon {
    display: flex;
    flex-direction: column;
    gap: 3px;
}

.menu-icon span {
    width: 25px;
    height: 3px;
    background: #333;
    transition: all 0.3s ease;
}

/* Main Content */
.site-main {
    margin-top: 120px; /* Account for fixed header */
}

/* Hero Section */
.hero-section {
    padding: 80px 0;
   padding-top: 10px;
}

.hero-content {
    display: grid;
    grid-template-columns: 1fr 2fr 1fr;
    gap: 60px;
    align-items: center;
    min-height: 500px;
}

.hero-left {
    text-align: left;
}

.artist-name {
    font-size: 4rem;
    font-weight: 700;
    line-height: 1.1;
    margin-bottom: 20px;
    color: #333;
}

.artist-subtitle {
    font-size: 1.2rem;
    color: #666;
    line-height: 1.4;
}

.hero-center {
    text-align: center;
}

.artwork-frame {
    position: relative;
    max-width: 400px;
    margin: 0 auto;
}

.artwork-frame img {
    width: 100%;
    height: auto;
    border-radius: 10px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.2);
}

.hero-right {
    text-align: left;
}

.hero-divider {
    width: 60px;
    height: 3px;
    background: #007cba;
    margin-bottom: 30px;
}

.hero-description {
    font-size: 1.1rem;
    line-height: 1.6;
    color: #666;
    margin-bottom: 30px;
}

.hero-btn {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    background: #007cba;
    color: white;
    padding: 15px 30px;
    border-radius: 5px;
    text-decoration: none;
    font-weight: 600;
    transition: background 0.3s ease;
}

.hero-btn:hover {
    background: #005a8b;
}

/* Text Section with Brush Background */
.text-section {
    position: relative;
    padding: 100px 0 150px;
    overflow: hidden;
}

.text-content {
    max-width: 800px;
    margin: 0 auto;
    text-align: center;
    position: relative;
    z-index: 2;
}

.text-content h1 {
    font-size: 2.5rem;
    font-weight: 700;
    line-height: 1.3;
    margin-bottom: 30px;
    color: #333;
}

.text-content p {
    font-size: 1.1rem;
    line-height: 1.6;
    color: #666;
    margin-bottom: 25px;
}

.read-more-btn {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    background: transparent;
    color: #333;
    padding: 15px 0;
    text-decoration: none;
    font-weight: 600;
    font-size: 0.9rem;
    letter-spacing: 1px;
    text-transform: uppercase;
    transition: all 0.3s ease;
    border-bottom: 2px solid transparent;
}

.read-more-btn:hover {
    color: #007cba;
    border-bottom-color: #007cba;
}

.read-more-btn i {
    transition: transform 0.3s ease;
}

.read-more-btn:hover i {
    transform: translateX(5px);
}

.brush-background {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 400px;
    z-index: 1;
    background-image: url('assets/images/brush-background-1.svg');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
}

.brush-svg {
    width: 100%;
    height: 100%;
}

/* About Section */
.about-section {
    padding: 100px 0;
}

.about-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: center;
}

.about-image img {
    width: 100%;
    height: auto;
    border-radius: 10px;
}

.about-text h2 {
    font-size: 2.5rem;
    line-height: 1.3;
    margin-bottom: 30px;
    color: #333;
}

.about-text p {
    font-size: 1.1rem;
    line-height: 1.6;
    color: #666;
    margin-bottom: 30px;
}

.about-signature {
    font-style: italic;
    color: #007cba;
    font-size: 1.2rem;
}

/* Categories Section */
.categories-section {
    position: relative;
    padding: 100px 0;
    background-image: url('assets/images/image.jpg');
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
    overflow: hidden;
}

.categories-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(255, 255, 255, 0.65);
    backdrop-filter: blur(3px);
    -webkit-backdrop-filter: blur(8px);
    z-index: 1;
}
.categories-section::after {
    content: '';
    position: absolute;
    height: 50%;
    left: 0;
    right: 0;
    bottom: 0;
    background: #ecf3f3;
    z-index: 1;
}
.categories-section .container {
    position: relative;
    z-index: 2;
}

.categories-section h2 {
    text-align: center;
    font-size: 2.5rem;
    margin-bottom: 60px;
    color: #333;
    position: relative;
    z-index: 3;
}

.categories-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 40px;
    max-width: 1200px;
    margin: 0 auto;
    position: relative;
    z-index: 3;
}

.category-item {
    background: rgba(255, 255, 255, 0.95);
    border-radius: 15px;
    text-align: center;
    transition: all 0.3s ease;
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.1);
    position: relative;
    z-index: 3;
}

.category-item:hover {
    transform: translateY(-8px);
    background: rgba(255, 255, 255, 0.98);
    box-shadow: 0 12px 40px rgba(0, 0, 0, 0.15);
}

.category-item h3 {
    font-size: 1.5rem;
    margin-bottom: 15px;
    color: #333;
}

.category-item .date {
    color: #007cba;
    font-weight: 600;
    margin-bottom: 10px;
}

.category-item .location {
    color: #666;
    margin-bottom: 20px;
}

.category-item p {
    color: #666;
    line-height: 1.6;
}

.art-background {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
    opacity: 0.1;
}

.art-svg {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

/* WooCommerce Product Categories Block */
.wp-block-malina-product-categories {
    margin: 40px 0;
}

.wp-block-malina-product-categories .categories-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 40px;
    max-width: 1200px;
    margin: 0 auto;
    position: relative;
    z-index: 3;
}

.wp-block-malina-product-categories .category-item {
    background: rgba(255, 255, 255, 0.95);
    border-radius: 15px;
    text-align: center;
    transition: all 0.3s ease;
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.1);
    position: relative;
    z-index: 3;
    overflow: hidden;
}

.wp-block-malina-product-categories .category-item:hover {
    transform: translateY(-8px);
    background: rgba(255, 255, 255, 0.98);
    box-shadow: 0 12px 40px rgba(0, 0, 0, 0.15);
}

.wp-block-malina-product-categories .category-image {
    position: relative;
    height: 200px;
    overflow: hidden;
    border-radius: 15px 15px 0 0;
}

.wp-block-malina-product-categories .category-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s ease;
}

.wp-block-malina-product-categories .category-item:hover .category-image img {
    transform: scale(1.05);
}

.wp-block-malina-product-categories .category-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(45deg, rgba(0, 124, 186, 0.8), rgba(44, 62, 80, 0.8));
    opacity: 0;
    transition: opacity 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
}

.wp-block-malina-product-categories .category-item:hover .category-overlay {
    opacity: 1;
}

.wp-block-malina-product-categories .category-info {
    padding: 20px;
}

.wp-block-malina-product-categories .category-info h3 {
    font-size: 1.5rem;
    margin-bottom: 10px;
    color: #333;
    font-family: 'Fraunces', serif;
}

.wp-block-malina-product-categories .category-info p {
    color: #666;
    line-height: 1.6;
    margin-bottom: 0;
}

.wp-block-malina-product-categories .category-count {
    color: #007cba;
    font-weight: 600;
    font-size: 0.9rem;
}

/* Latest Artwork Section */
.latest-artwork-section {
    padding: 100px 0;
}

.artwork-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 30px;
}

@media (max-width: 1200px) {
    .artwork-grid {
        grid-template-columns: repeat(3, 1fr);
        gap: 25px;
    }
}

@media (max-width: 768px) {
    .artwork-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 20px;
    }
}

@media (max-width: 480px) {
    .artwork-grid {
        grid-template-columns: 1fr;
        gap: 15px;
    }
}

.artwork-item {
    text-align: center;
}

.artwork-image img {
    width: 100%;
    height: 300px;
    object-fit: cover;
    border-radius: 10px;
    margin-bottom: 20px;
}

.artwork-info h3 {
    font-size: 1.3rem;
    margin-bottom: 10px;
    color: #333;
}

.artwork-price {
    font-size: 1.1rem;
    font-weight: 600;
    color: #007cba;
}

/* No image placeholder styling */
.no-image-placeholder {
    width: 100%;
    height: 300px;
    background: linear-gradient(135deg, #f5f5f5 0%, #e8e8e8 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    border: 2px dashed #ccc;
    border-radius: 10px;
    color: #999;
    font-size: 14px;
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 20px;
}

/* Newsletter Section */
.newsletter-section {
    position: relative;
    padding: 50px 0px;
    overflow: hidden;
    width: 100%;
    min-height: 600px;
}

.newsletter-content {
    text-align: center;
    max-width: 100%;
    margin: 0;
    position: relative;
    z-index: 2;
    background: white;
    padding: 100px 60px;
    width: 100%;
    box-sizing: border-box;
}

.newsletter-text h2 {
    font-size: 2.5rem;
    margin-bottom: 20px;
    color: #333;
}

.newsletter-text p {
    font-size: 1.1rem;
    color: #666;
    margin-bottom: 40px;
}

.newsletter-form .form-group {
    display: flex;
    gap: 15px;
    max-width: 400px;
    margin: 0 auto;
}

.newsletter-form input[type="email"] {
    flex: 1;
    padding: 15px;
    border: 1px solid #ddd;
    border-radius: 5px;
    font-size: 16px;
}

.newsletter-form .btn {
    background: #007cba;
    color: white;
    padding: 15px 30px;
    border: none;
    border-radius: 5px;
    font-weight: 600;
    cursor: pointer;
    transition: background 0.3s ease;
}

.newsletter-form .btn:hover {
    background: #005a8b;
}

.brush-background-2 {
    position: absolute;
    bottom: 0;
    top:0;
    left: 0;
    right: 0;
    width: 100%;
    z-index: 1;
    background-image: url('assets/images/brush-background-2.svg');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
}

.brush-svg-2 {
    width: 100%;
    height: 100%;
}

/* Buttons */
.btn {
    display: inline-block;
    padding: 12px 24px;
    background: #007cba;
    color: white;
    text-decoration: none;
    border-radius: 5px;
    font-weight: 600;
    transition: all 0.3s ease;
    border: none;
    cursor: pointer;
}

.btn:hover {
    background: #005a8b;
    transform: translateY(-2px);
}


.btn-outline {
    background: transparent;
    color: #007cba;
    border: 2px solid #007cba;
}

.btn-outline:hover {
    background: #007cba;
    color: white;
}

/* Page Templates Styles */
.page-content {
    padding: 80px 0;
    max-width: 1200px;
    margin: 0 auto;
}

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

.page-title {
    font-family: 'Fraunces', serif;
    font-size: 3rem;
    font-weight: 400;
    color: #333;
    margin-bottom: 1rem;
}

.page-content-wrapper {
    font-size: 1.1rem;
    line-height: 1.8;
    color: #666;
}

/* About Page Styles */
.about-hero-section {
    background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
    padding: 80px 0;
}

.about-hero-content {
    display: flex;
    flex-direction: column;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
    max-width: 1200px;
    margin: 0 auto;
    text-align: center;
}

.about-hero-left {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    text-align: left;
}

.about-title {
    font-family: 'Fraunces', serif;
    font-size: 4rem;
    font-weight: 400;
    line-height: 0.9;
    margin: 0;
    color: #333;
}

.about-subtitle {
    margin-top: 1.5rem;
    margin-bottom: 2rem;
    font-size: 1rem;
    color: #666;
    line-height: 1.4;
    text-align: center;
    width: 100%;
}

.about-image-frame {
    background: #333;
    padding: 20px;
    border-radius: 8px;
    box-shadow: 0 25px 50px rgba(0,0,0,0.25), 0 10px 20px rgba(0,0,0,0.1);
    max-width: 300px;
    margin-top: auto;
}

.about-image-frame img {
    width: 100%;
    height: auto;
    display: block;
    border-radius: 4px;
}

.about-hero-right {
    text-align: center;
}

.about-divider {
    width: 60px;
    height: 2px;
    background: #e74c3c;
    margin: 0 auto 2rem;
}

.about-description {
    font-size: 0.95rem;
    line-height: 1.6;
    color: #666;
}

.about-content-section {
    padding: 80px 0;
}

.about-content-grid {
    display: grid;
    grid-template-columns: 2fr 1fr;
    gap: 4rem;
    max-width: 1200px;
    margin: 0 auto;
}

.about-story h2 {
    font-family: 'Fraunces', serif;
    font-size: 2.5rem;
    color: #333;
    margin-bottom: 2rem;
}

.about-text {
    font-size: 1.1rem;
    line-height: 1.8;
    color: #666;
}

.about-skills h3 {
    font-family: 'Fraunces', serif;
    font-size: 1.8rem;
    color: #333;
    margin-bottom: 1.5rem;
}

.skills-list {
    list-style: none;
    padding: 0;
}

.skills-list li {
    padding: 0.8rem 0;
    border-bottom: 1px solid #eee;
    font-size: 1rem;
    color: #666;
}

.about-quote-section {
    background: #f8f9fa;
    padding: 80px 0;
    text-align: center;
}

.quote-content blockquote {
    font-family: 'Fraunces', serif;
    font-size: 1.5rem;
    font-style: italic;
    color: #333;
    max-width: 800px;
    margin: 0 auto;
    line-height: 1.6;
}

/* Contact Page Styles */
.contact-hero-section {
    background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
    padding: 80px 0;
}

.contact-hero-content {
    display: flex;
    flex-direction: column;
    gap: 4rem;
    align-items: center;
    max-width: 1200px;
    margin: 0 auto;
}

.contact-hero-left {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    text-align: left;
}

.contact-title {
    font-family: 'Fraunces', serif;
    font-size: 4rem;
    font-weight: 400;
    line-height: 0.9;
    margin: 0;
    color: #333;
}

.contact-subtitle {
    margin-top: 1.5rem;
    margin-bottom: 2rem;
    font-size: 1rem;
    color: #666;
    line-height: 1.4;
    width: 100%;
    text-align: center;
}

.contact-hero-center {
    display: flex;
    justify-content: center;
}

.contact-image-frame {
    background: #333;
    padding: 20px;
    border-radius: 8px;
    box-shadow: 0 25px 50px rgba(0,0,0,0.25), 0 10px 20px rgba(0,0,0,0.1);
    max-width: 400px;
}

.contact-image-frame img {
    width: 100%;
    height: auto;
    display: block;
    border-radius: 4px;
}

.contact-hero-right {
    text-align: center;
}

.contact-divider {
    width: 60px;
    height: 2px;
    background: #e74c3c;
    margin: 0 auto 2rem;
}

.contact-description {
    font-size: 0.95rem;
    line-height: 1.6;
    color: #666;
}

.contact-info-section {
    padding: 80px 0;
}

.contact-info-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    max-width: 1200px;
    margin: 0 auto;
}

.contact-details h2 {
    font-family: 'Fraunces', serif;
    font-size: 2.5rem;
    color: #333;
    margin-bottom: 2rem;
}

.contact-item {
    margin-bottom: 2rem;
}

.contact-item h3 {
    font-family: 'Fraunces', serif;
    font-size: 1.2rem;
    color: #333;
    margin-bottom: 0.5rem;
}

.contact-item p {
    color: #666;
    line-height: 1.6;
}

.contact-item a {
    color: #007cba;
    text-decoration: none;
}

.contact-item a:hover {
    text-decoration: underline;
}

.contact-form-wrapper h2 {
    font-family: 'Fraunces', serif;
    font-size: 2.5rem;
    color: #333;
    margin-bottom: 2rem;
}

.contact-form {
    max-width: 500px;
}

.form-group {
    margin-bottom: 1.5rem;
}

.form-group label {
    display: block;
    margin-bottom: 0.5rem;
    font-weight: 500;
    color: #333;
}

.form-group input,
.form-group textarea {
    width: 100%;
    padding: 12px;
    border: 1px solid #ddd;
    border-radius: 4px;
    font-size: 1rem;
    transition: border-color 0.3s ease;
}

.form-group input:focus,
.form-group textarea:focus {
    outline: none;
    border-color: #007cba;
}

.contact-submit-btn {
    background: #007cba;
    color: white;
    border: none;
    padding: 12px 30px;
    border-radius: 4px;
    font-size: 1rem;
    cursor: pointer;
    transition: background 0.3s ease;
}

.contact-submit-btn:hover {
    background: #005a8b;
}

.contact-message {
    padding: 15px;
    margin-bottom: 20px;
    border-radius: 4px;
    font-size: 1rem;
}

.contact-message.success {
    background: #d4edda;
    color: #155724;
    border: 1px solid #c3e6cb;
}

.contact-message.error {
    background: #f8d7da;
    color: #721c24;
    border: 1px solid #f5c6cb;
}

/* Cart Notification Styles */
.cart-notification {
    position: fixed;
    top: 20px;
    right: 20px;
    border-radius: 8px;
    background: #fff !important;
    font-size: 1rem;
    font-weight: 500;
    z-index: 9999;
    max-width: 350px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
    transform: translateX(400px);
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
}

.cart-notification.show {
    transform: translateX(0);
    opacity: 1;
    visibility: visible;
}

.cart-notification.success {
    background: #f9f9f9;
    color: #333;
    border: 1px solid #c3e6cb;
    border-left: 4px solid #333;
}

.cart-notification.error {
    background: #f8d7da;
    color: #721c24;
    border: 1px solid #f5c6cb;
    border-left: 4px solid #dc3545;
}

.cart-notification-content {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 15px 20px;
}

.cart-notification-icon {
    font-size: 1.2rem;
    flex-shrink: 0;
}

.cart-notification-message {
    flex: 1;
}

.cart-notification-text {
    display: block;
    line-height: 1.4;
}

.cart-notification-actions {
    display: flex;
    align-items: center;
    gap: 10px;
    flex-shrink: 0;
}

.cart-notification-cart-link {
    color: inherit;
    text-decoration: underline;
    font-weight: 500;
    font-size: 0.9rem;
}

.cart-notification-cart-link:hover {
    opacity: 0.8;
}

.cart-notification-close {
    background: none;
    border: none;
    font-size: 1.4rem;
    cursor: pointer;
    color: inherit;
    opacity: 0.7;
    padding: 0;
    width: 20px;
    height: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.cart-notification-close:hover {
    opacity: 1;
}

/* Mobile responsive */
@media (max-width: 768px) {
    .cart-notification {
        top: 10px;
        right: 10px;
        left: 10px;
        max-width: none;
        transform: translateY(-100px);
    }
    
    .cart-notification.show {
        transform: translateY(0);
    }
    
    .cart-notification-content {
        padding: 12px 15px;
    }
    
    .cart-notification-cart-link {
        font-size: 0.8rem;
    }
}

.contact-social-section {
    background: #f8f9fa;
    padding: 60px 0;
    text-align: center;
}

.social-content h2 {
    font-family: 'Fraunces', serif;
    font-size: 2rem;
    color: #333;
    margin-bottom: 2rem;
}

.social-links {
    display: flex;
    justify-content: center;
    gap: 2rem;
}

.social-links .social-link {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-decoration: none;
    color: #666;
    transition: color 0.3s ease;
}

.social-links .social-link:hover {
    color: #007cba;
}

.social-links .social-link i {
    font-size: 2rem;
    margin-bottom: 0.5rem;
}

.social-links .social-link span {
    font-size: 0.9rem;
}

/* Responsive Design */
@media (max-width: 1024px) {
    .hero-content {
        grid-template-columns: 1fr;
        gap: 40px;
        text-align: center;
    }
    
    .artist-name {
        font-size: 3rem;
    }
    
    .text-content {
        max-width: 700px;
        padding: 0 20px;
    }
    
    .text-content h1 {
        font-size: 2.2rem;
    }
    
    .about-content {
        grid-template-columns: 1fr;
        gap: 40px;
    }
    
    .categories-grid {
        grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    }
    
    .newsletter-content {
        padding: 80px 40px;
    }
}

@media (max-width: 768px) {
    /* Header Mobile Styles */
    .site-header {
        position: fixed;
    }
    
    .header-content {
        flex-direction: column;
        gap: 15px;
        padding: 0 20px;
        align-items: center;
    }
    
    .site-branding-column,
    .header-actions-column {
        width: 100%;
        align-items: center;
    }
    
    .site-branding {
        text-align: center;
    }
    
    .header-social {
        display: none;
    }
    
    .site-branding {
        justify-self: center;
        text-align: center;
    }
    
    .header-actions {
        justify-self: end;
        gap: 15px;
    }
    
    .header-account {
        display: none;
    }
    
    .header-search {
        display: none;
    }
    
    .main-navigation {
        position: absolute;
        top: 100%;
        left: 0;
        right: 0;
        border-top: 1px solid #e9ecef;
        box-shadow: 0 2px 5px rgba(0,0,0,0.1);
        z-index: 1000;
        display: none;
    }
    
    .main-navigation.toggled {
        display: block;
    }
    
    /* Mobile menu styles for 2-column layout */
    .menu-two-column {
        flex-direction: column;
        gap: 20px;
        padding: 15px 0;
    }
    
    .menu-item-stacked {
        max-width: 100%;
    }
    
    .menu-link-stacked {
        padding: 15px;
    }
    
    .menu-title {
        font-size: 20px;
    }
    
    .menu-subtitle {
        font-size: 13px;
    }
    
    .main-navigation ul {
        flex-direction: column;
        gap: 0;
    }
    
    .main-navigation li {
        border-bottom: 1px solid #eee;
    }
    
    .main-navigation li:last-child {
        border-bottom: none;
    }
    
    .main-navigation a {
        padding: 15px 20px;
        text-align: left;
    }
    
    .main-navigation a::after {
        display: none;
    }
    
    .mobile-search {
        padding: 15px 20px;
        border-top: 1px solid #eee;
        background: #f8f9fa;
    }
    
    .mobile-search .search-form {
        margin: 0;
    }
    
    .search-form-container {
        display: none;
    }
    
    .site-main {
        margin-top: 80px;
    }
    
    .hero-section {
        padding: 60px 0;
        padding-top: 80px;
    }
    
    .artist-name {
        font-size: 2.5rem;
    }
    
    .text-section {
        padding: 60px 0 120px;
    }
    
    .text-content h1 {
        font-size: 2rem;
    }
    
    .text-content p {
        font-size: 1rem;
    }
    
    .about-section,
    .categories-section,
    .latest-artwork-section {
        padding: 60px 0;
    }
    
    .section-header h2,
    .about-text h2,
    .newsletter-text h2 {
        font-size: 2rem;
    }
    
    .categories-grid {
        grid-template-columns: 1fr;
    }
    
    .artwork-grid {
        grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    }
    
    .newsletter-form .form-group {
        flex-direction: column;
    }
    
    .newsletter-content {
        padding: 60px 30px;
    }
}

@media (max-width: 480px) {
    .hero-section {
        padding: 40px 0;
    }
    
    .artist-name {
        font-size: 2rem;
    }
    
    .text-content h1 {
        font-size: 1.8rem;
    }
    
    .text-content {
        padding: 0 15px;
    }
    
    .about-content {
        gap: 30px;
    }
    
    .categories-grid {
        gap: 20px;
    }
    
    .artwork-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }
    
    .category-info {
        padding: 20px;
    }
    
    .section-header h2,
    .about-text h2,
    .newsletter-text h2 {
        font-size: 1.8rem;
    }
    
    .newsletter-content {
        padding: 40px 20px;
    }
    
    /* Page Templates Mobile Small */
    .about-title,
    .contact-title {
        font-size: 2.5rem;
    }
    
    .about-image-frame,
    .contact-image-frame {
        max-width: 250px;
        padding: 15px;
    }
    
    .page-title {
        font-size: 2rem;
    }
    
    .contact-form {
        max-width: 100%;
    }
}

.site-header.scrolled {
    background: #fff;
    box-shadow: 0 2px 10px rgba(0,0,0,0.1);
    border-bottom: 1px solid #eee;
}

.site-header.scrolled .header-social .social-link,
.site-header.scrolled .site-title a,
.site-header.scrolled .header-cart .cart-link,
.site-header.scrolled .search-toggle,
.site-header.scrolled .account-link {
    color: #333;
}

.site-header .header-social .social-link,
.site-header .site-title a,
.site-header .header-cart .cart-link,
.site-header .search-toggle,
.site-header .account-link {
    color: #333;
    transition: color 0.3s ease;
}

.site-header .menu-icon span {
    background: #333;
}

.site-header.scrolled .menu-icon span {
    background: #333;
}

.site-header .account-link:hover {
    background: #f8f9fa;
}

.site-header.scrolled .account-link:hover {
    background: #f8f9fa;
}

.site-header .main-navigation {
    border-top: 1px solid #e9ecef;
}

.site-header.scrolled .main-navigation {
    border-top: 1px solid #eee;
}

.site-header .main-navigation a {
    color: #333;
    transition: color 0.3s ease;
}

.site-header.scrolled .main-navigation a {
    color: #333;
}

.header-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    min-height: 60px;
}

.header-social {
    display: flex;
    gap: 0.2rem;
}

.header-social .social-link {
    color: #666;
    font-size: 18px;
    transition: color 0.3s ease;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: transparent;
}

.header-social .social-link:hover {
    color: #333;
    background: #f8f9fa;
}

.header-social .social-link i {
    font-size: 18px;
    line-height: 1;
}

.site-branding {
    flex: 1;
    text-align: center;
}

.site-title {
    margin: 0;
    font-size: 2rem;
    font-weight: 400;
    font-family: 'Fraunces', serif;
}

.site-title a {
    color: #333;
    text-decoration: none;
}

.site-logo img {
    max-height: 34px;
    margin-right: -40px;
    width: auto;
}

/* Navigation */
.main-navigation {
    border-top: 1px solid #eee;
    padding: 0;
}

.main-navigation ul {
    list-style: none;
    margin: 0;
    padding: 0;
    display: flex;
    justify-content: center;
    gap: 3rem;
}

.main-navigation a {
    color: #333;
    text-decoration: none;
    padding: 1rem 0;
    display: block;
    font-weight: 400;
    font-size: 14px;
    text-transform: uppercase;
    letter-spacing: 1px;
    transition: color 0.3s ease;
    position: relative;
}

.main-navigation a:hover {
    color: #666;
}

.main-navigation a::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    width: 0;
    height: 1px;
    background: #333;
    transition: width 0.3s ease;
    transform: translateX(-50%);
}

.main-navigation a:hover::after {
    width: 80%;
}

/* Menu Toggle Button */
.menu-toggle {
    display: none;
    background: none;
    border: none;
    cursor: pointer;
    padding: 10px;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    width: 40px;
    height: 40px;
}

.menu-toggle .screen-reader-text {
    position: absolute;
    left: -9999px;
}

.menu-icon {
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    width: 20px;
    height: 14px;
}

.menu-icon span {
    display: block;
    height: 2px;
    width: 100%;
    background: #333;
    transition: all 0.3s ease;
}

/* Mobile Header Layout */
.mobile-header-top {
    display: none;
}

.desktop-only {
    display: flex;
}

.mobile-right-actions {
    display: none;
}

/* Mobile Navigation Styles */
@media (max-width: 768px) {
    /* Show mobile header layout */
    .mobile-header-top {
        display: flex;
        flex-direction: row-reverse;
        justify-content: space-between;
        align-items: center;
        padding: 10px 0;
        border-bottom: 1px solid #eee;
    }
    
    /* Hide desktop social icons */
    .desktop-only {
        display: none;
    }
    
    /* Show mobile right actions */
    .mobile-right-actions {
        display: flex;
        align-items: center;
        gap: 15px;
    }
    
    /* Hide desktop header actions */
    .header-content .header-actions {
        display: none;
    }
    
    .menu-toggle {
        display: flex;
        position: static;
        transform: none;
        left: auto;
        top: auto;
        z-index: auto;
    }
    
    .main-navigation .menu {
        display: none;
        flex-direction: column;
        position: absolute;
        top: 100%;
        left: 0;
        right: 0;
        background: white;
        border-top: 1px solid #eee;
        box-shadow: 0 2px 5px rgba(0,0,0,0.1);
        gap: 0;
        z-index: 1000;
    }
    
    .main-navigation.toggled .menu {
        display: flex;
    }
    
    .main-navigation .menu-item {
        border-bottom: 1px solid #eee;
    }
    
    .main-navigation .menu-item:last-child {
        border-bottom: none;
    }
    
    .main-navigation .menu-item a {
        padding: 1rem;
        text-align: center;
    }
    
    .main-navigation .menu-item a::after {
        display: none;
    }
    
    /* Animate menu toggle icon */
    .main-navigation.toggled .menu-icon span:nth-child(1) {
        transform: rotate(45deg) translate(5px, 5px);
    }
    
    .main-navigation.toggled .menu-icon span:nth-child(2) {
        opacity: 0;
    }
    
    .main-navigation.toggled .menu-icon span:nth-child(3) {
        transform: rotate(-45deg) translate(7px, -6px);
    }
    
    /* Mobile social icons styling */
    .mobile-header-top .header-social {
        display: flex;
        gap: 15px;
    }
    
    .mobile-header-top .social-link {
        color: #333;
        font-size: 18px;
        transition: color 0.3s ease;
    }
    
    .mobile-header-top .social-link:hover {
        color: #e74c3c;
    }
    
    /* Mobile cart styling */
    .mobile-right-actions .mobile-cart .cart-link {
        display: flex;
        align-items: center;
        gap: 0.3rem;
        color: #333;
        text-decoration: none;
        font-weight: 500;
        padding: 8px;
        border-radius: 5px;
        transition: background-color 0.3s ease;
        position: relative;
    }
    
    .mobile-right-actions .mobile-cart .cart-link:hover {
        background: #f8f9fa;
    }
    
    .mobile-right-actions .mobile-cart .cart-link i {
        font-size: 18px;
    }
    
    .mobile-right-actions .mobile-cart .cart-count {
        background: #e74c3c;
        color: white;
        border-radius: 50%;
        width: 18px;
        height: 18px;
        display: flex;
        align-items: center;
        justify-content: center;
        font-size: 11px;
        font-weight: bold;
        position: absolute;
        top: 2px;
        right: 2px;
    }
    
    /* Mobile Brush Decoration */
    .brush-background svg {
        opacity: 0.2;
    }
}

.header-actions {
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.header-cart .cart-link {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    color: #333;
    text-decoration: none;
    font-weight: 500;
    padding: 8px 12px;
    border-radius: 5px;
    transition: background-color 0.3s ease;
}

.header-cart .cart-link:hover {
    background: #f8f9fa;
}

.cart-amount {
    font-size: 14px;
    color: #e74c3c;
    font-weight: 600;
}

.cart-count {
    background: #e74c3c;
    color: white;
    border-radius: 50%;
    width: 20px;
    height: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 12px;
    font-weight: bold;
    margin-left: 5px;
}

.header-cart .cart-link i {
    font-size: 18px;
    line-height: 1;
}

.search-toggle {
    background: none;
    border: none;
    color: #333;
    font-size: 18px;
    cursor: pointer;
    padding: 10px;
    border-radius: 5px;
    transition: background-color 0.3s ease;
    display: inline-flex;
    align-items: center;
    justify-content: center;
}

.search-toggle:hover {
    background: #f8f9fa;
}

.search-toggle i {
    font-size: 18px;
    line-height: 1;
}

/* Header Account */
.header-account {
    margin-right: 1rem;
}

.header-account .account-link {
    display: flex;
    align-items: center;
    justify-content: center;
    color: #333;
    text-decoration: none;
    padding: 10px;
    border-radius: 5px;
    transition: background-color 0.3s ease;
    width: 40px;
    height: 40px;
}

.header-account .account-link:hover {
    background: #f8f9fa;
}

.header-account .account-link i {
    font-size: 18px;
    line-height: 1;
}

/* Search Form Container */
.header-search {
    position: relative;
}

.search-form-container {
    position: absolute;
    top: 100%;
    right: 0;
    background: white;
    border: 1px solid #e9ecef;
    border-radius: 5px;
    padding: 15px;
    min-width: 300px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
    opacity: 0;
    visibility: hidden;
    transform: translateY(-10px);
    transition: all 0.3s ease;
    z-index: 1001;
}

.search-form-container.active {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.search-form-container .search-form {
    margin: 0;
    display: flex;
    gap: 10px;
}

.search-form-container .search-field {
    flex: 1;
    padding: 10px 15px;
    border: 1px solid #ddd;
    border-radius: 5px;
    font-size: 14px;
}

.search-form-container .search-submit {
    background: #007cba;
    color: white;
    border: none;
    padding: 10px 15px;
    border-radius: 5px;
    cursor: pointer;
    transition: background 0.3s ease;
}

.search-form-container .search-submit:hover {
    background: #005a8b;
}
/* Hero Section */
/* Hero Section */
.hero-section {
    min-height: 100vh;
    display: flex;
    align-items: center;
    background: #ecf3f3 url('assets/images/malinovskij.svg') no-repeat top center;
    background-size: cover;
    padding: 80px 0;
}

.hero-content {
    display: flex; /* Make the container a flexbox */
    align-items: center;
    max-width: 1200px;
    margin: 0 auto;
    width: 100%;
}

/* Hero Left - Artist Name */
.hero-left {
    text-align: right;
    width: 25%;
}

.artist-name {
    font-family: 'Fraunces', serif;
    font-size: clamp(2.5rem, 5vw, 3.5rem); 
    font-weight: 400;
    line-height: 0.9;
    margin: 0;
    color: #333;
}

.artist-subtitle {
    font-size: clamp(0.8rem, 1.5vw, 1rem); 
    margin-top: 1.5rem;
    color: #666;
    line-height: 1.4;
}

/* Hero Center - Artwork */
.hero-center {
    display: flex;
    justify-content: center;
    width: 50%;
    align-items: center;
    flex-grow: 1; /* This div will grow and fill the available space */
}

.artwork-frame {
    background: #333;
    padding: 20px;
    border-radius: 8px;
    box-shadow: 0 25px 50px rgba(0,0,0,0.25), 0 10px 20px rgba(0,0,0,0.1);
    max-width: 400px;
    width: 100%;
}

.artwork-frame img {
    width: 100%;
    height: auto;
    display: block;
    border-radius: 4px;
}

/* Hero Right - Description */
.hero-right {
    text-align: left;
    width: 25%;
}

.hero-divider {
    width: 60px;
    height: 2px;
    background: #e74c3c;
    margin: 0 auto 2rem;
}

.hero-description {
    font-size: 0.95rem;
    line-height: 1.6;
    color: #666;
    margin-bottom: 2.5rem;
}

.hero-btn {
    font-size: 0.85rem;
    font-weight: 600;
    letter-spacing: 1px;
    text-transform: uppercase;
    padding: 0.8rem 0;
    background: transparent;
    border: none !important;
    color: #333;
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
    align-items: center;
    gap: 0.5rem;
    text-decoration: none;
    transition: all 0.3s ease;
    position: relative;
}

.hero-btn::after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 50%;
    transform: translateX(-50%);
    width: 30px;
    height: 2px;
    background: #e74c3c;
    transition: all 0.3s ease;
}
.hero-button-container {
    display: flex;
    justify-content: center;
    align-items: center;
    width: 100%;
    text-align: center;
    padding-top: 3rem;
}
.hero-btn:hover {
    color: #e74c3c;
    transform: translateY(-2px);
}
.hero-btn:hover{
    background-color: #fff !important;
}

.hero-btn:hover::after {
    width: 40px;
    background: #c0392b !important;
}

.hero-btn i {
    font-size: 0.8rem;
}

/* Hero Responsive Styles */
@media (max-width: 1024px) {
    .hero-content {
        gap: 3rem;
    }
    
    .artist-name {
        font-size: 3.5rem;
    }
}

@media (max-width: 768px) {
    .hero-section {
        padding: 60px 0;
    }
    
    .hero-content {
        grid-template-columns: 1fr;
        gap: 2.5rem;
        text-align: center;
        min-height: auto;
    }
    
    .artist-name {
        font-size: 3rem;
        line-height: 1.2;
        margin-bottom: 15px;
    }
    
    .artist-subtitle {
        font-size: 1.1rem;
        margin-bottom: 1.5rem;
    }
    
    .hero-left,
    .hero-right {
        text-align: center;
    }
    
    .hero-divider {
        margin: 0 auto 1.5rem;
        width: 50px;
    }
    
    .hero-description {
        font-size: 1rem;
        margin-bottom: 2rem;
        padding: 0 1rem;
    }
    
    .artwork-frame {
        max-width: 320px;
        margin: 0 auto;
    }
    
    .hero-button-container {
        margin-top: 2rem;
    }
    
    .hero-btn {
        padding: 12px 25px;
        font-size: 0.95rem;
    }
}

@media (max-width: 480px) {
    .hero-section {
        padding: 40px 0;
    }
    
    .hero-content {
        gap: 2rem;
    }
    
    .artist-name {
        font-size: 2.2rem;
        line-height: 1.1;
    }
    
    .artist-subtitle {
        font-size: 1rem;
    }
    
    .hero-description {
        font-size: 0.95rem;
        padding: 0 0.5rem;
        line-height: 1.5;
    }
    
    .artwork-frame {
        max-width: 280px;
    }
    
    .hero-divider {
        width: 40px;
        height: 2px;
    }
    
    .hero-btn {
        padding: 10px 20px;
        font-size: 0.9rem;
        gap: 8px;
    }
}

@media (max-width: 360px) {
    .artist-name {
        font-size: 1.8rem;
    }
    
    .artwork-frame {
        max-width: 250px;
    }
    
    .hero-description {
        font-size: 0.9rem;
    }
}

/* Buttons */
.btn,
button,
input[type="button"],
input[type="submit"],
.button,
.woocommerce button.button,
.woocommerce a.button,
.woocommerce input.button {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.75rem 1.5rem;
    background: transparent;
    color: #333 !important;
    border: 2px solid #333;
    border-radius: 5px;
    font-weight: 500;
    cursor: pointer;
    transition: all 0.3s ease;
    font-size: 14px;
    text-decoration: none;
    font-family: inherit;
    line-height: 1.4;
}

.btn:hover,
button:hover,
input[type="button"]:hover,
input[type="submit"]:hover,
.button:hover,
.woocommerce button.button:hover,
.woocommerce a.button:hover,
.woocommerce input.button:hover {
    color: #333 !important;
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(0,0,0,0.2);
}

.btn-outline {
    background: transparent;
    color: #333 !important;
    border: 2px solid #333;
}

.btn-outline:hover {
    background: #333 !important;
    color: #333 !important;
}

/* WooCommerce specific button styles */
.woocommerce .single_add_to_cart_button {
    background: transparent !important;
    color: #333 !important;
    border: 2px solid #333 !important;
}

.woocommerce .single_add_to_cart_button:hover {
    background: #333 !important;
    color: #fff !important;
}

.woocommerce .cart .button {
    background: transparent !important;
    color: #333 !important;
    border: 2px solid #333 !important;
}

/* Add to cart button loading states */
.ajax_add_to_cart.loading {
    position: relative;
    color: transparent !important;
    pointer-events: none;
    opacity: 0.7;
}

.ajax_add_to_cart.loading::after {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 16px;
    height: 16px;
    margin: -8px 0 0 -8px;
    border: 2px solid #333;
    border-top: 2px solid transparent;
    border-radius: 50%;
    animation: spin 1s linear infinite;
}

.ajax_add_to_cart.loading:hover {
    transform: none;
    box-shadow: none;
}

@keyframes spin {
    0% { transform: rotate(0deg); }
    100% { transform: rotate(360deg); }
}
.wc-block-components-order-summary .wc-block-components-order-summary-item__individual-prices{
    font-size: 12px !important;
    color: #333 !important;
}
/* Added to cart state */
.ajax_add_to_cart.added {
    color: #333 !important;
}
.wc-block-cart-item__prices .wc-block-components-formatted-money-amount{
    font-size: 12px !important;
    color: #333 !important;
}
.wc-block-components-button:not(.is-link){
    border: 2px solid #333 !important;
}
.ajax_add_to_cart:disabled {
    cursor: not-allowed;
    opacity: 0.7;
}

/* Hide the "View Cart" / "Krepšelis" button that appears after adding to cart */
.artwork-actions .added_to_cart,
.woocommerce .added_to_cart.wc-forward {
    display: none !important;
}

.woocommerce .cart .button:hover {
    background: #333 !important;
    color: #fff !important;
}

.woocommerce #respond input#submit.alt,
.woocommerce a.button.alt,
.woocommerce button.button.alt,
.woocommerce input.button.alt {
    background: transparent !important;
    color: #333 !important;
    border: 2px solid #333 !important;
}

.woocommerce #respond input#submit.alt:hover,
.woocommerce a.button.alt:hover,
.woocommerce button.button.alt:hover,
.woocommerce input.button.alt:hover {
    background: #333 !important;
    color: #fff !important;
}

/* About Section */
.about-section {
    padding: 6rem 0;
    position: relative;
    overflow: hidden;
}

.brush-background {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
    pointer-events: none;
}

.brush-background svg {
    width: 100%;
    height: 100%;
    object-fit: cover;
    opacity: 0.3;
}

.about-content {
    position: relative;
    z-index: 2;
    text-align: center;
    max-width: 800px;
    margin: 0 auto;
}

.about-text h2 {
    font-size: 2.5rem;
    line-height: 1.2;
    margin-bottom: 2rem;
    color: #333;
}

.about-text p {
    font-size: 1.1rem;
    line-height: 1.7;
    color: #666;
    margin-bottom: 2.5rem;
}

/* Features Section */
.features-section {
    padding: 4rem 0;
    background: #fff;
}

.about-features {
    display: flex;
    flex-direction: column;
    gap: 2rem;
    max-width: 600px;
    margin: 0 auto;
}

/* Category Selection Section */
.category-section {
    padding: 6rem 0;
    background: #f8f9fa;
}

.category-content {
    text-align: center;
}

.category-content h2 {
    font-size: 2.5rem;
    margin-bottom: 3rem;
    color: #333;
}

.category-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 3rem;
    max-width: 1000px;
    margin: 0 auto;
}

.category-item {
    background: #fff;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

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

.category-image {
    height: 350px;
    overflow: hidden;
}

.category-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s ease;
}

.category-item:hover .category-image img {
    transform: scale(1.05);
}

.category-info {
    padding: 2rem;
    text-align: center;
}

.category-info h3 {
    font-size: 1.5rem;
    margin-bottom: 1rem;
    color: #333;
}

.category-info p {
    color: #666;
}

/* Category Link Styles */
.category-link {
    display: block;
    text-decoration: none;
    color: inherit;
    transition: all 0.3s ease;
}

.category-link:hover {
    text-decoration: none;
    color: inherit;
}

/* Category Overlay */
.category-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(236, 243, 243, 0.4);
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.category-item:hover .category-overlay {
    opacity: 1;
}

.view-category {
    color: #333;
    font-size: .7rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    padding: 12px 24px;
    border: 2px solid #fff;
    border-radius: 25px;
    transition: all 0.3s ease;
}

.category-overlay:hover .view-category {
    background: #fff;
    color: #3e211a;
}
.back-to-top{
    bottom: 10px;
    width: 56px !important;
    height:  56px  !important;
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    position: fixed;
    display: none !important;
    right: 10px;
}
/* Update category image to be relative for overlay positioning */
.category-image {
    position: relative;
    height: 400px;
    overflow: hidden;
}

.btn-primary {
    background: none !important;
    border: 1px solid #666 !important;
    color: #333;
    padding: 0.8rem 2rem;
    border: none;
    border-radius: 6px;
    text-decoration: none;
    font-weight: 600;
    transition: background 0.3s ease;
    display: inline-block;
}
.btn-primary:hover {
    color: #333 !important;
}


/* Divider */
.divider {
    width: 60px;
    height: 2px;
    background: #333;
    margin: 2rem 0;
}

/* Icon Box */
.icon-box {
    display: flex;
    gap: 1.5rem;
    align-items: flex-start;
}

.icon-box-icon {
    width: 60px;
    height: 60px;
    background: #e74c3c;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.icon-box-icon i {
    font-size: 1.5rem;
    color: white;
}

.icon-box-content h4 {
    font-size: 1.25rem;
    margin-bottom: 0.5rem;
    color: #333;
}

.icon-box-content p {
    color: #666;
    line-height: 1.6;
}

/* Portfolio Grid */
.portfolio-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    margin-top: 2rem;
}

.portfolio-item {
    position: relative;
    overflow: hidden;
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
    transition: transform 0.3s ease;
}

.portfolio-item:hover {
    transform: translateY(-5px);
}

.portfolio-item img {
    width: 100%;
    height: 250px;
    object-fit: cover;
}

.portfolio-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0,0,0,0.8);
    color: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.portfolio-item:hover .portfolio-overlay {
    opacity: 1;
}

/* Footer */
.site-footer {
    color: #333;
    padding: 4rem 0 2rem;
    text-align: center;
}

.footer-content {
    display: flex;
    flex-direction: column;
    align-items: center;
    max-width: 800px;
    margin: 0 auto;
}

.footer-branding {
    margin-bottom: 1rem;
}

.footer-logo img {
    max-height: 60px;
    width: auto;
    transition: opacity 0.3s ease;
}

.footer-logo:hover img {
    opacity: 0.8;
}

.footer-title {
    font-size: 2rem;
    font-weight: 400;
    margin: 0;
    color: #333;
}

.footer-title a {
    color: #333;
    text-decoration: none;
    transition: color 0.3s ease;
}

.footer-title a:hover {
    color: #666;
}

.footer-navigation {
    margin: 1rem 0;
}

.footer-menu {
    display: flex;
    justify-content: center;
    gap: 2rem;
    list-style: none;
    margin: 0;
    padding: 0;
}

.footer-menu li {
    margin: 0;
}

.footer-menu a {
    color: #666;
    text-decoration: none;
    font-size: 1rem;
    font-weight: 400;
    transition: color 0.3s ease;
}

.footer-menu a:hover {
    color: #333;
}

.footer-social {
    display: flex;
    justify-content: center;
    gap: 1rem;
    margin: 1rem 0;
}

.footer-social a {
    color: #666;
    font-size: 1.5rem;
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    transition: all 0.3s ease;
}

.footer-social a:hover {
    color: #333;
    background-color: rgba(0, 0, 0, 0.05);
}

.footer-copyright {
    margin-top: 2rem;
    color: #999;
    font-size: 0.9rem;
}

.footer-copyright p {
    margin: 0.25rem 0;
}

/* Responsive Footer */
@media (max-width: 768px) {
    .footer-menu {
        flex-direction: column;
        gap: 1rem;
        text-align: center;
    }
    
    .footer-title {
        font-size: 1.5rem;
    }
    
    .site-footer {
        padding: 3rem 0 1.5rem;
    }
}

/* Cart & Checkout Styling */
.woocommerce-cart-form {
    margin-bottom: 30px;
}

.shop_table {
    width: 100%;
    border-collapse: collapse;
    margin-bottom: 20px;
}

.shop_table th,
.shop_table td {
    padding: 15px;
    border: 1px solid #e0e0e0;
    text-align: left;
}

.shop_table th {
    background-color: #f8f9fa;
    font-weight: 600;
    color: #333;
}

.product-remove a {
    color: #dc3545;
    font-size: 20px;
    text-decoration: none;
    font-weight: bold;
}

.product-remove a:hover {
    color: #c82333;
}

.product-thumbnail img {
    max-width: 80px;
    height: auto;
    border-radius: 4px;
}

.quantity input {
    width: 60px;
    padding: 8px;
    border: 1px solid #ddd;
    border-radius: 4px;
    text-align: center;
}

.cart-collaterals {
    margin-top: 30px;
}

.cart_totals {
    background: #f8f9fa;
    padding: 20px;
    border-radius: 8px;
    max-width: 400px;
    margin-left: auto;
}

.cart_totals h2 {
    margin-bottom: 20px;
    color: #333;
}

.cart_totals table {
    width: 100%;
}

.cart_totals th,
.cart_totals td {
    padding: 10px 0;
    border-bottom: 1px solid #e0e0e0;
}

.cart_totals .order-total {
    font-weight: bold;
    font-size: 1.1em;
}

/* Checkout Styling */
.woocommerce-checkout .col2-set {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 30px;
    margin-bottom: 30px;
}

.woocommerce-checkout .col-1,
.woocommerce-checkout .col-2 {
    background: #f8f9fa;
    padding: 20px;
    border-radius: 8px;
}

.woocommerce-checkout-review-order {
    background: #f8f9fa;
    padding: 20px;
    border-radius: 8px;
}

.woocommerce-form-row {
    margin-bottom: 20px;
}

.woocommerce-form-row label {
    display: block;
    margin-bottom: 5px;
    font-weight: 600;
    color: #333;
}

.woocommerce-form-row input,
.woocommerce-form-row select,
.woocommerce-form-row textarea {
    width: 100%;
    padding: 12px;
    border: 1px solid #ddd;
    border-radius: 4px;
    font-size: 14px;
}

.woocommerce-form-row input:focus,
.woocommerce-form-row select:focus,
.woocommerce-form-row textarea:focus {
    outline: none;
    border-color: #333;
    box-shadow: 0 0 0 2px rgba(51, 51, 51, 0.1);
}

/* My Account Styling */
.woocommerce-account .woocommerce-MyAccount-navigation {
    background: #f8f9fa;
    padding: 20px;
    border-radius: 8px;
    margin-bottom: 30px;
}

.woocommerce-account .woocommerce-MyAccount-navigation ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.woocommerce-account .woocommerce-MyAccount-navigation li {
    margin-bottom: 10px;
}

.woocommerce-account .woocommerce-MyAccount-navigation a {
    display: block;
    padding: 12px 15px;
    color: #333;
    text-decoration: none;
    border-radius: 4px;
    transition: all 0.3s ease;
}

.woocommerce-account .woocommerce-MyAccount-navigation a:hover,
.woocommerce-account .woocommerce-MyAccount-navigation .is-active a {
    background: #333;
    color: white;
}

.woocommerce-MyAccount-content {
    background: #f8f9fa;
    padding: 20px;
    border-radius: 8px;
}

/* Responsive Design */
@media (max-width: 768px) {
    .container {
        padding: 0 1rem;
    }
    
    h1 {
        font-size: 2.5rem;
    }
    
    h2 {
        font-size: 2rem;
    }
    .hero-content {
        display: flex;
        flex-direction: column;
        align-items: center;
    }
    .hero-center{
        width: 100%;
    }
    .hero-left, .hero-right {
        text-align: center;
        width: 100%;
    }
    
    .portfolio-grid {
        grid-template-columns: 1fr;
        gap: 1rem;
    }
    
    .about-content {
        padding: 0 1rem;
    }
    
    .about-text h2 {
        font-size: 2rem;
    }
    
    .about-features {
        padding: 0 1rem;
    }
    
    /* Category Section Mobile */
    .category-content h2 {
        font-size: 2rem;
    }
    
    .category-grid {
        grid-template-columns: 1fr;
        gap: 2rem;
        padding: 0 1rem;
    }
    
    .category-image {
        height: 300px;
    }
    
    .category-info {
        padding: 1.5rem;
    }
    
    .main-navigation ul {
        flex-direction: column;
        gap: 0;
        text-align: center;
    }
    
    .main-navigation a {
        padding: 0.75rem 0;
        border-bottom: 1px solid #eee;
    }
    
    .header-content {
        flex-direction: column;
        padding: 0.5rem 0;
    }
    
    .header-social {
        order: 1;
        justify-content: center;
    }
    
    .site-branding {
width:140px;
        order: 2;
        padding: 10px;
    }
    
    .header-actions {
        order: 3;
        justify-content: center;
    }
    
    .woocommerce-checkout .col2-set {
        grid-template-columns: 1fr;
        gap: 20px;
    }
    
    .shop_table {
        font-size: 14px;
    }
    
    .shop_table th,
    .shop_table td {
        padding: 10px 5px;
    }
    
    .product-thumbnail img {
        max-width: 60px;
    }
    
    .cart_totals {
        margin-left: 0;
        max-width: 100%;
    }
    
    /* Page Templates Mobile */
    .about-hero-content,
    .contact-hero-content {
        grid-template-columns: 1fr;
        gap: 2rem;
        text-align: center;
    }
    
    .about-hero-left,
    .contact-hero-left {
        align-items: center;
        text-align: center;
    }
    
    .about-image-frame {
        max-width: 250px;
        margin: 1rem auto 0;
    }
    
    .about-title,
    .contact-title {
        font-size: 3rem;
    }
    
    .about-content-grid,
    .contact-info-grid {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .about-story h2,
    .contact-details h2,
    .contact-form-wrapper h2 {
        font-size: 2rem;
    }
    
    .social-links {
        flex-direction: column;
        gap: 1rem;
    }
}

/* WooCommerce Styles */
.woocommerce-breadcrumb-wrapper {
    padding: 2rem 0 1rem;
    border-bottom: 1px solid rgba(255,255,255,0.1);
    margin-bottom: 2rem;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: #fff;
}

.shop-header {
    text-align: center;
    margin-bottom: 4rem;
    padding: 3rem 0;
    background: linear-gradient(135deg, rgba(102, 126, 234, 0.05) 0%, rgba(118, 75, 162, 0.05) 100%);
    border-radius: 20px;
    position: relative;
    overflow: hidden;
}

.shop-header::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><defs><pattern id="grain" width="100" height="100" patternUnits="userSpaceOnUse"><circle cx="50" cy="50" r="1" fill="%23667eea" opacity="0.1"/></pattern></defs><rect width="100" height="100" fill="url(%23grain)"/></svg>') repeat;
    opacity: 0.3;
    z-index: 1;
}

.shop-header .page-title {
    font-size: 3rem;
    margin-bottom: 1rem;
    color: #2c3e50;
    font-weight: 700;
    position: relative;
    z-index: 2;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.shop-content {
    display: grid;
    grid-template-columns: 320px 1fr;
    gap: 4rem;
    max-width: 1600px;
    margin: 0 auto;
    padding: 0 2rem;
}

@media (max-width: 1200px) {
    .shop-content {
        grid-template-columns: 280px 1fr;
        gap: 3rem;
    }
}

@media (max-width: 968px) {
    .shop-content {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .shop-sidebar {
        order: 2;
        margin-top: 2rem;
    }
    
    .shop-main {
        order: 1;
    }
}

.shop-sidebar {
    background: linear-gradient(135deg, #fff 0%, #f8f9fa 100%);
    padding: 2rem;
    border-radius: 20px;
    height: fit-content;
    box-shadow: 0 8px 32px rgba(0,0,0,0.08);
    border: 1px solid rgba(255,255,255,0.2);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
}

.shop-main {
    min-height: 400px;
    position: relative;
}

/* Product Grid */
.woocommerce ul.products {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 2.5rem;
    list-style: none;
    margin: 0;
    padding: 0;
}

.woocommerce ul.products li.product {
    background: linear-gradient(135deg, #fff 0%, #f8f9fa 100%);
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 8px 32px rgba(0,0,0,0.08);
    transition: all 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    position: relative;
    border: 1px solid rgba(255,255,255,0.2);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
}

.woocommerce ul.products li.product:hover {
    transform: translateY(-10px) scale(1.02);
    box-shadow: 0 20px 60px rgba(0,0,0,0.15);
    background: linear-gradient(135deg, #fff 0%, #f0f2f5 100%);
}

.woocommerce ul.products li.product::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, #667eea 0%, #764ba2 100%);
    opacity: 0;
    transition: opacity 0.3s ease;
}

.woocommerce ul.products li.product:hover::before {
    opacity: 1;
}

/* Product Image Styling */
.woocommerce ul.products li.product .woocommerce-loop-product__link {
    display: block;
    text-decoration: none;
    color: inherit;
}

.woocommerce ul.products li.product img {
    width: 100%;
    height: 280px;
    object-fit: cover;
    transition: all 0.4s ease;
    border-radius: 20px 20px 0 0;
}

.woocommerce ul.products li.product:hover img {
    transform: scale(1.08);
    filter: brightness(1.1);
}

/* Product Content */
.woocommerce ul.products li.product .woocommerce-loop-product__title,
.woocommerce ul.products li.product h2 {
    font-size: 1.25rem;
    font-weight: 600;
    margin: 0 0 0.75rem 0;
    color: #2c3e50;
    line-height: 1.4;
    padding: 0 1.5rem;
    transition: color 0.3s ease;
}

.woocommerce ul.products li.product:hover .woocommerce-loop-product__title,
.woocommerce ul.products li.product:hover h2 {
    color: #667eea;
}

.woocommerce ul.products li.product .price {
    font-size: 1.4rem;
    font-weight: 700;
    color: #667eea;
    margin: 0 0 1rem 0;
    padding: 0 1.5rem;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.woocommerce ul.products li.product .price del {
    color: #95a5a6;
    font-weight: 400;
    font-size: 1.1rem;
}

.woocommerce ul.products li.product .price ins {
    text-decoration: none;
    color: #4a90e2;
}

/* Add to Cart Button - Bootstrap Style */
.woocommerce ul.products li.product .button,
.woocommerce ul.products li.product .btn-primary {
    background: #667eea;
    color: #fff;
    border: 2px solid #667eea;
    padding: 0.75rem 1.25rem;
    border-radius: 8px;
    font-weight: 500;
    font-size: 0.875rem;
    cursor: pointer;
    transition: all 0.3s ease;
    margin: 0 1.5rem 1.5rem;
    display: block;
    text-align: center;
    text-decoration: none;
    box-shadow: 0 2px 8px rgba(102, 126, 234, 0.2);
}

.woocommerce ul.products li.product .button:hover,
.woocommerce ul.products li.product .btn-primary:hover {
    background: #5a6fd8;
    border-color: #5a6fd8;
    transform: translateY(-1px);
    box-shadow: 0 4px 12px rgba(102, 126, 234, 0.3);
    color: #fff;
}

.woocommerce ul.products li.product .button:active,
.woocommerce ul.products li.product .btn-primary:active {
    transform: translateY(0);
    box-shadow: 0 2px 4px rgba(102, 126, 234, 0.2);
}

/* Outline Button Style */
.woocommerce ul.products li.product .btn-outline {
    background: transparent;
    color: #667eea;
    border: 2px solid #667eea;
    padding: 0.75rem 1.25rem;
    border-radius: 8px;
    font-weight: 500;
    font-size: 0.875rem;
    cursor: pointer;
    transition: all 0.3s ease;
    margin: 0 1.5rem 1.5rem;
    display: block;
    text-align: center;
    text-decoration: none;
    box-shadow: none;
}

.woocommerce ul.products li.product .btn-outline:hover {
    background: #667eea;
    color: #fff;
    transform: translateY(-1px);
    box-shadow: 0 4px 12px rgba(102, 126, 234, 0.2);
}

/* Product Badge/Sale */
.woocommerce ul.products li.product .onsale {
    position: absolute;
    top: 15px;
    right: 15px;
    background: linear-gradient(135deg, #e74c3c 0%, #c0392b 100%);
    color: #fff;
    padding: 0.5rem 0.75rem;
    border-radius: 20px;
    font-size: 0.75rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    z-index: 2;
    box-shadow: 0 4px 15px rgba(231, 76, 60, 0.3);
}

.woocommerce ul.products li.product .woocommerce-loop-product__title {
    font-size: 1.1rem;
    font-weight: 600;
    margin-bottom: 0.5rem;
    color: #333;
}

.woocommerce ul.products li.product .price {
    font-size: 1.2rem;
    font-weight: 700;
    color: #e74c3c;
    margin-bottom: 0.5rem;
}

.product-excerpt {
    font-size: 0.9rem;
    color: #666;
    line-height: 1.5;
}

/* Single Product */
.single-product-wrapper {
    max-width: 1200px;
    margin: 0 auto;
}

.woocommerce div.product {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
    margin-bottom: 3rem;
}

.woocommerce div.product .product-images {
    position: relative;
}

.woocommerce div.product .summary {
    padding: 2rem 0;
}

.woocommerce div.product .product_title {
    font-size: 2.5rem;
    margin-bottom: 1rem;
    color: #333;
}

.woocommerce div.product .price {
    font-size: 2rem;
    font-weight: 700;
    color: #667eea;
    margin-bottom: 1.5rem;
}

.woocommerce div.product .woocommerce-product-details__short-description {
    font-size: 1.1rem;
    line-height: 1.6;
    margin-bottom: 2rem;
    color: #666;
}

/* Cart and Checkout */
.woocommerce-cart table.cart {
    border-collapse: collapse;
    width: 100%;
    margin-bottom: 2rem;
}

.woocommerce-cart table.cart th,
.woocommerce-cart table.cart td {
    padding: 1rem;
    border-bottom: 1px solid #eee;
    text-align: left;
}

.woocommerce-cart table.cart th {
    background: #f8f9fa;
    font-weight: 600;
}

/* WooCommerce Ordering Dropdown Styling */
.woocommerce-ordering {
    margin-bottom: 2rem;
    display: flex;
    justify-content: flex-end;
    align-items: center;
    gap: 1rem;
}

.woocommerce-ordering select {
    background: rgba(255, 255, 255, 0.95);
    border: 2px solid rgba(102, 126, 234, 0.2);
    border-radius: 15px;
    padding: 12px 40px 12px 16px;
    font-size: 14px;
    font-weight: 500;
    color: #2c3e50;
    min-width: 200px;
    cursor: pointer;
    transition: all 0.3s ease;
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    box-shadow: 0 4px 20px rgba(102, 126, 234, 0.1);
    appearance: none;
    -webkit-appearance: none;
    -moz-appearance: none;
    background-image: url('data:image/svg+xml;charset=US-ASCII,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 4 5"><path fill="%23667eea" d="M2 0L0 2h4zm0 5L0 3h4z"/></svg>');
    background-repeat: no-repeat;
    background-position: right 12px center;
    background-size: 12px;
}

.woocommerce-ordering select:hover {
    border-color: rgba(102, 126, 234, 0.4);
    box-shadow: 0 6px 25px rgba(102, 126, 234, 0.15);
    transform: translateY(-1px);
    background: rgba(255, 255, 255, 1);
}

.woocommerce-ordering select:focus {
    outline: none;
    border-color: #667eea;
    box-shadow: 0 0 0 3px rgba(102, 126, 234, 0.2), 0 6px 25px rgba(102, 126, 234, 0.15);
    background: rgba(255, 255, 255, 1);
}

.woocommerce-ordering select option {
    background: #fff;
    color: #2c3e50;
    padding: 10px;
    font-weight: 500;
}

/* Shop Header with Ordering */
.shop-header {
    text-align: center;
    margin-bottom: 4rem;
    padding: 3rem 0;
    background: linear-gradient(135deg, rgba(102, 126, 234, 0.05) 0%, rgba(118, 75, 162, 0.05) 100%);
    border-radius: 20px;
    position: relative;
    overflow: hidden;
}

.shop-header-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 2rem;
    position: relative;
    z-index: 2;
}

.shop-header-content .page-title {
    margin-bottom: 0;
    flex: 1;
    text-align: left;
}

.shop-header-content .woocommerce-ordering {
    margin-bottom: 0;
    flex-shrink: 0;
}

/* Result Count Styling */
.woocommerce-result-count {
    font-size: 14px;
    color: #666;
    font-weight: 500;
    margin-bottom: 1rem;
    padding: 8px 16px;
    background: rgba(102, 126, 234, 0.05);
    border-radius: 20px;
    display: inline-block;
}

/* Responsive Ordering */
@media (max-width: 768px) {
    .shop-header-content {
        flex-direction: column;
        text-align: center;
    }
    
    .shop-header-content .page-title {
        text-align: center;
        margin-bottom: 1rem;
    }
    
    .woocommerce-ordering {
        justify-content: center;
        width: 100%;
    }
    
    .woocommerce-ordering select {
        min-width: 250px;
        width: 100%;
        max-width: 300px;
    }
}

/* Responsive WooCommerce */
@media (max-width: 1024px) {
    .shop-content {
        grid-template-columns: 1fr;
        gap: 2rem;
        padding: 0 1rem;
    }
    
    .shop-sidebar {
        order: 2;
        margin-top: 2rem;
    }
    
    .woocommerce ul.products {
        grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
        gap: 2rem;
    }
    
    .shop-header .page-title {
        font-size: 2.5rem;
    }
}

@media (max-width: 768px) {
    .shop-header {
        padding: 2rem 1rem;
        margin-bottom: 2rem;
    }
    
    .shop-header .page-title {
        font-size: 2rem;
    }
    
    .woocommerce ul.products {
        grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
        gap: 1.5rem;
    }
    
    .woocommerce ul.products li.product img {
        height: 220px;
    }
    
    .woocommerce ul.products li.product .woocommerce-loop-product__title,
    .woocommerce ul.products li.product h2 {
        font-size: 1.1rem;
        padding: 0 1rem;
    }
    
    .woocommerce ul.products li.product .price {
        font-size: 1.2rem;
        padding: 0 1rem;
    }
    
    .woocommerce ul.products li.product .button {
        margin: 0 1rem 1rem;
        padding: 0.75rem 1rem;
        font-size: 0.8rem;
    }
    
    .woocommerce div.product {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
}

@media (max-width: 480px) {
    .woocommerce ul.products {
        grid-template-columns: 1fr;
        gap: 1rem;
    }
    
    .woocommerce ul.products li.product {
        margin: 0 auto;
        max-width: 300px;
    }
}

/* WordPress specific styles */
.wp-block-image {
    margin: 2rem 0;
}

.wp-block-quote {
    border-left: 4px solid #333;
    padding-left: 1rem;
    margin: 2rem 0;
    font-style: italic;
}

.wp-block-button .wp-block-button__link {
    background: #333;
    color: #fff;
    padding: 0.75rem 1.5rem;
    border-radius: 5px;
    text-decoration: none;
    display: inline-block;
    transition: all 0.3s ease;
}

.wp-block-button .wp-block-button__link:hover {
    background: #555;
}

/* Tooltip styles from original main.css */
.stc-tooltip:nth-child(4n+1) .stc-tooltip-content {
    left: 0;
}

.stc-tooltip:nth-child(4n+2) .stc-tooltip-content {
    left: 50%;
    transform: translateX(-25%);
}

.stc-tooltip:nth-child(4n+3) .stc-tooltip-content {
    left: 50%;
    transform: translateX(-75%);
}

.stc-tooltip:nth-child(4n+4) .stc-tooltip-content {
    right: 0;
}

/* Smooth Animations */
@keyframes fadeIn {
    from { opacity: 0; transform: translateY(20px); }
    to { opacity: 1; transform: translateY(0); }
}

@keyframes slideIn {
    from { transform: translateX(-100%); }
    to { transform: translateX(0); }
}

.fade-in {
    animation: fadeIn 0.6s ease-out;
}

.slide-in {
    animation: slideIn 0.5s ease-out;
}

@media (max-width: 480px) {
    .container {
        padding: 0 15px;
    }
    
    .hero-content h1 {
        font-size: 2rem;
    }
    
    .btn {
        padding: 0.5rem 1rem;
        font-size: 14px;
    }
    
    .site-title {
        font-size: 1.5rem;
    }
    
    .main-navigation ul {
        gap: 1rem;
    }
    
    /* Additional Page Templates Mobile */
    .social-links {
        flex-direction: column;
        align-items: center;
    }
    
    .social-links .social-link {
        width: 100%;
        max-width: 200px;
    }
}

/* Additional mobile improvements for very small screens */
@media (max-width: 320px) {
    .container {
        padding: 0 10px;
    }
    
    .hero-section {
        padding: 30px 0;
    }
    
    .artist-name {
        font-size: 1.6rem !important;
    }
    
    .artwork-frame {
        max-width: 220px !important;
    }
    
    .hero-btn {
        padding: 8px 16px !important;
        font-size: 0.85rem !important;
    }
}

/* Print Styles */
@media print {
    .site-header,
    .site-footer,
    .btn {
        display: none;
    }
    
    body {
        font-size: 12pt;
        line-height: 1.4;
        color: #000;
        background: #ecf3f3;
    }
    
    .container {
        max-width: none;
        margin: 0;
        padding: 0;
    }
}

/* Accessibility */
.screen-reader-text {
    position: absolute !important;
    clip: rect(1px, 1px, 1px, 1px);
    width: 1px !important;
    height: 1px !important;
    overflow: hidden;
}

.skip-link {
    position: absolute;
    top: -40px;
    left: 6px;
    z-index: 999999;
    color: #333;
    background: #333;
    padding: 8px 16px;
    text-decoration: none;
}

.skip-link:focus {
    top: 6px;
}

/* Product Pages Styles */
.paveikslai-page,
.vazos-page {
    min-height: 100vh;
}

.products-section {
    padding: 4rem 0;
    background: #fff;
}

.products-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 2rem;
}

.products-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2rem;
    margin-bottom: 3rem;
}

.product-item {
    background: #fff;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
}

.product-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.15);
}

.product-image {
    position: relative;
    overflow: hidden;
    aspect-ratio: 1;
}

.product-thumbnail {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s ease;
}

.product-item:hover .product-thumbnail {
    transform: scale(1.05);
}

.no-image-placeholder {
    width: 100%;
    height: 100%;
    background: #f8f9fa;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #666;
    font-style: italic;
}

.product-info {
    padding: 1.5rem;
}

.product-title {
    margin: 0 0 1rem 0;
    font-size: 1.2rem;
    font-family: 'Fraunces', serif;
}

.product-title a {
    color: #333;
    text-decoration: none;
    transition: color 0.3s ease;
}

.product-title a:hover {
    color: #007cba;
}

.product-price {
    font-size: 1.1rem;
    font-weight: 600;
    color: #007cba;
    margin-bottom: 1rem;
}

.product-actions {
    margin-top: 1rem;
}

.product-actions .button,
.product-actions .add_to_cart_button {
    background: #007cba;
    color: white;
    padding: 0.75rem 1.5rem;
    border: none;
    border-radius: 4px;
    text-decoration: none;
    display: inline-block;
    transition: all 0.3s ease;
    cursor: pointer;
    font-size: 0.9rem;
}

.product-actions .button:hover,
.product-actions .add_to_cart_button:hover {
    background: #005a8b;
    transform: translateY(-1px);
}

.products-pagination {
    text-align: center;
    margin-top: 3rem;
}

.products-pagination .page-numbers {
    display: inline-block;
    padding: 0.75rem 1rem;
    margin: 0 0.25rem;
    background: #f8f9fa;
    color: #333;
    text-decoration: none;
    border-radius: 4px;
    transition: all 0.3s ease;
}

.products-pagination .page-numbers:hover,
.products-pagination .page-numbers.current {
    background: #007cba;
    color: white;
}

.no-products {
    text-align: center;
    padding: 4rem 2rem;
    color: #666;
}

.no-products h3 {
    font-family: 'Fraunces', serif;
    margin-bottom: 1rem;
    color: #333;
}

.additional-content {
    background: #f8f9fa;
    padding: 4rem 0;
}

.additional-content .content-wrapper {
    max-width: 800px;
    margin: 0 auto;
    padding: 0 2rem;
    text-align: center;
}

.additional-content h2 {
    font-family: 'Fraunces', serif;
    margin-bottom: 1.5rem;
    color: #333;
}

.additional-content p {
    font-size: 1.1rem;
    line-height: 1.6;
    color: #666;
}

/* Responsive Design for Product Pages */
@media (max-width: 768px) {
    
    .products-grid {
        grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
        gap: 1.5rem;
    }
    
    .products-container {
        padding: 0 1rem;
    }
    
    .product-info {
        padding: 1rem;
    }
    
    .additional-content .content-wrapper {
        padding: 0 1rem;
    }
}

/* Category Archive Styles */
.page-header {
    text-align: center;
    margin-bottom: 3rem;
    padding: 2rem 0;
    border-bottom: 1px solid #e0e0e0;
}

.page-header .page-title {
    font-size: 2.5rem;
    font-weight: 300;
    color: #333;
    margin-bottom: 1rem;
}

.archive-description {
    font-size: 1.1rem;
    color: #666;
    max-width: 600px;
    margin: 0 auto;
    line-height: 1.6;
}

.posts-container {
    display: grid;
    grid-template-columns: 1fr 300px;
    gap: 3rem;
    margin-bottom: 3rem;
}

.posts-container article {
    margin-bottom: 2rem;
    padding-bottom: 2rem;
    border-bottom: 1px solid #e0e0e0;
}

.posts-container article:last-child {
    border-bottom: none;
}

.entry-header .entry-title {
    font-size: 1.8rem;
    font-weight: 400;
    margin-bottom: 1rem;
}

.entry-header .entry-title a {
    color: #333;
    text-decoration: none;
    transition: color 0.3s ease;
}

.entry-header .entry-title a:hover {
    color: #8B4513;
}

.entry-meta {
    font-size: 0.9rem;
    color: #666;
    margin-bottom: 1rem;
}

.entry-content {
    line-height: 1.6;
    color: #555;
}

.posts-navigation {
    text-align: center;
    margin-top: 3rem;
    padding-top: 2rem;
    border-top: 1px solid #e0e0e0;
}

.posts-navigation .nav-links {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.posts-navigation .nav-links a {
    background: #8B4513;
    color: white;
    padding: 0.75rem 1.5rem;
    text-decoration: none;
    border-radius: 4px;
    transition: background-color 0.3s ease;
}

.posts-navigation .nav-links a:hover {
    background: #654321;
}

.no-results {
    text-align: center;
    padding: 3rem 0;
}

.no-results .page-title {
    font-size: 2rem;
    color: #666;
    margin-bottom: 1rem;
}

.no-results .page-content {
    font-size: 1.1rem;
    color: #777;
    line-height: 1.6;
}

/* Enhanced Sidebar Styles */
.widget-area {
    background: linear-gradient(135deg, #fff 0%, #f8f9fa 100%);
    padding: 2.5rem;
    border-radius: 20px;
    box-shadow: 0 8px 32px rgba(0,0,0,0.08);
    border: 1px solid rgba(255,255,255,0.2);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
}

.widget-area .widget {
    margin-bottom: 2.5rem;
    padding: 1.5rem;
    background: rgba(255,255,255,0.7);
    border-radius: 15px;
    border: 1px solid rgba(103, 126, 234, 0.1);
    transition: all 0.3s ease;
}

.widget-area .widget:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(103, 126, 234, 0.15);
    background: rgba(255,255,255,0.9);
}

.widget-area .widget:last-child {
    margin-bottom: 0;
}

.widget-area .widget-title {
    font-size: 1.3rem;
    font-weight: 600;
    color: #333;
    margin-bottom: 1.5rem;
    padding-bottom: 1rem;
    border-bottom: 3px solid transparent;
    background: linear-gradient(90deg, #667eea 0%, #764ba2 100%);
    background-clip: text;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    position: relative;
}

.widget-area .widget-title::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 50px;
    height: 3px;
    background: linear-gradient(90deg, #667eea 0%, #764ba2 100%);
    border-radius: 2px;
}

/* Enhanced Filter Lists */
.widget-area ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.widget-area ul li {
    margin-bottom: 0.8rem;
    padding: 0.8rem 1rem;
    background: rgba(103, 126, 234, 0.05);
    border-radius: 10px;
    border-left: 4px solid transparent;
    transition: all 0.3s ease;
}

.widget-area ul li:hover {
    background: rgba(103, 126, 234, 0.1);
    border-left-color: #667eea;
    transform: translateX(5px);
}

.widget-area ul li a {
    color: #555;
    text-decoration: none;
    font-weight: 500;
    display: flex;
    justify-content: space-between;
    align-items: center;
    transition: color 0.3s ease;
}

.widget-area ul li:hover a {
    color: #667eea;
}

.widget-area ul li .count {
    background: linear-gradient(90deg, #667eea 0%, #764ba2 100%);
    color: white;
    padding: 0.2rem 0.6rem;
    border-radius: 12px;
    font-size: 0.8rem;
    font-weight: 600;
    min-width: 20px;
    text-align: center;
}

/* Price Filter Styling */
.widget_price_filter .price_slider_wrapper {
    padding: 1rem 0;
}

.widget_price_filter .ui-slider {
    background: rgba(103, 126, 234, 0.1);
    border-radius: 10px;
    height: 8px;
    border: none;
}

.widget_price_filter .ui-slider .ui-slider-range {
    background: linear-gradient(90deg, #667eea 0%, #764ba2 100%);
    border-radius: 10px;
}

.widget_price_filter .ui-slider .ui-slider-handle {
    background: #667eea;
    border: 3px solid white;
    border-radius: 50%;
    width: 20px;
    height: 20px;
    box-shadow: 0 2px 8px rgba(103, 126, 234, 0.3);
}

/* Search Widget */
.widget_product_search input[type="search"] {
    padding: 1rem;
    border: 2px solid rgba(103, 126, 234, 0.2);
    border-radius: 10px;
    font-size: 1rem;
    width: 100%;
    transition: all 0.3s ease;
}

.widget_product_search input[type="search"]:focus {
    border-color: #667eea;
    box-shadow: 0 0 0 3px rgba(103, 126, 234, 0.1);
    outline: none;
}

.widget_product_search button {
    background: linear-gradient(90deg, #667eea 0%, #764ba2 100%);
    color: white;
    border: none;
    padding: 1rem 1.5rem;
    border-radius: 10px;
    font-weight: 600;
    margin-top: 0.5rem;
    width: 100%;
    transition: all 0.3s ease;
    cursor: pointer;
}

.widget_product_search button:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(103, 126, 234, 0.3);
}

/* Responsive Design for Category Pages */
@media (max-width: 768px) {
    .posts-container {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .page-header .page-title {
        font-size: 2rem;
    }
    
    .posts-navigation .nav-links {
        flex-direction: column;
        gap: 1rem;
    }
    
    .widget-area {
        padding: 1.5rem;
    }
}

/* 404 Error Page Styles */
.error-404 {
    padding: 80px 0;
    text-align: center;
    position: relative;
    min-height: 70vh;
    background: linear-gradient(135deg, #fafafa 0%, #f5f5f5 100%);
    overflow: hidden;
}

.error-content {
    max-width: 900px;
    margin: 0 auto;
    position: relative;
    z-index: 2;
}

/* Background decorative elements */
.error-background {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
    z-index: 1;
}

.floating-shape {
    position: absolute;
    border-radius: 50%;
    background: rgba(139, 69, 19, 0.05);
    animation: float 6s ease-in-out infinite;
}

.shape-1 {
    width: 120px;
    height: 120px;
    top: 10%;
    left: 10%;
    animation-delay: 0s;
}

.shape-2 {
    width: 80px;
    height: 80px;
    top: 20%;
    right: 15%;
    animation-delay: 2s;
}

.shape-3 {
    width: 100px;
    height: 100px;
    bottom: 15%;
    left: 20%;
    animation-delay: 4s;
}

@keyframes float {
    0%, 100% { transform: translateY(0px) rotate(0deg); }
    50% { transform: translateY(-20px) rotate(180deg); }
}

.error-hero {
    margin-bottom: 80px;
}

.error-artwork {
    margin-bottom: 50px;
    position: relative;
}

.error-frame {
    display: inline-block;
    padding: 25px;
    border: 4px solid #8B4513;
    border-radius: 50%;
    background: linear-gradient(135deg, rgba(139, 69, 19, 0.08) 0%, rgba(210, 105, 30, 0.05) 100%);
    margin-bottom: 20px;
    position: relative;
    box-shadow: 0 10px 30px rgba(139, 69, 19, 0.15);
    transition: all 0.4s ease;
}

.error-frame:hover {
    transform: scale(1.05) rotate(5deg);
    box-shadow: 0 15px 40px rgba(139, 69, 19, 0.25);
}

.frame-inner {
    position: relative;
    animation: pulse 3s ease-in-out infinite;
}

@keyframes pulse {
    0%, 100% { opacity: 1; }
    50% { opacity: 0.8; }
}

.error-code {
    font-size: 4rem;
    font-weight: 900;
    color: #8B4513;
    margin-top: 20px;
    text-shadow: 2px 2px 4px rgba(139, 69, 19, 0.2);
    letter-spacing: 0.1em;
    background: linear-gradient(135deg, #8B4513 0%, #D2691E 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.error-404 .page-title {
    margin-bottom: 25px;
}

.title-main {
    font-size: 3.5rem;
    color: #333;
    font-weight: 700;
    letter-spacing: -2px;
    display: block;
    text-shadow: 1px 1px 2px rgba(0,0,0,0.1);
}

.error-subtitle {
    font-size: 1.4rem;
    color: #666;
    margin-bottom: 40px;
    font-weight: 400;
    line-height: 1.4;
}

.error-divider {
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 40px auto;
    gap: 15px;
}

.divider-line {
    width: 50px;
    height: 2px;
    background: linear-gradient(90deg, transparent 0%, #8B4513 50%, transparent 100%);
}

.divider-dot {
    width: 8px;
    height: 8px;
    background: #8B4513;
    border-radius: 50%;
    box-shadow: 0 0 10px rgba(139, 69, 19, 0.3);
}

.error-description {
    font-size: 1.15rem;
    line-height: 1.7;
    color: #555;
    margin-bottom: 50px;
    max-width: 650px;
    margin-left: auto;
    margin-right: auto;
}

.error-actions {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 40px;
}

.primary-actions {
    display: flex;
    gap: 20px;
    flex-wrap: wrap;
    justify-content: center;
}

.error-404 .btn {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 16px 32px;
    font-weight: 600;
    font-size: 1.1rem;
    text-decoration: none;
    border-radius: 50px;
    transition: all 0.3s ease;
    border: 2px solid transparent;
    position: relative;
    overflow: hidden;
}

.error-404 .btn-primary {
    background: linear-gradient(135deg, #8B4513 0%, #A0522D 100%);
    color: white;
    box-shadow: 0 4px 15px rgba(139, 69, 19, 0.3);
}

.error-404 .btn-primary:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(139, 69, 19, 0.4);
    background: linear-gradient(135deg, #A0522D 0%, #8B4513 100%);
}

.error-404 .btn-secondary {
    background: transparent;
    color: #8B4513;
    border: 2px solid #8B4513;
}

.error-404 .btn-secondary:hover {
    background: #8B4513;
    color: white;
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(139, 69, 19, 0.3);
}

.btn-icon {
    font-size: 1.2em;
    filter: drop-shadow(1px 1px 1px rgba(0,0,0,0.2));
}

.search-section {
    width: 100%;
    max-width: 450px;
}

.search-label {
    font-size: 1.1rem;
    color: #666;
    margin-bottom: 15px;
    font-weight: 500;
}

.error-search {
    width: 100%;
}

.error-search .search-form {
    display: flex;
    border: 2px solid #ddd;
    border-radius: 50px;
    overflow: hidden;
    background: white;
    box-shadow: 0 4px 20px rgba(0,0,0,0.1);
    transition: all 0.3s ease;
}

.error-search .search-form:focus-within {
    border-color: #8B4513;
    box-shadow: 0 4px 25px rgba(139, 69, 19, 0.2);
    transform: translateY(-2px);
}

.error-search .search-field {
    flex: 1;
    padding: 15px 25px;
    border: none;
    outline: none;
    font-size: 1.05rem;
    background: transparent;
}

.error-search .search-field::placeholder {
    color: #999;
}

.error-search .search-submit {
    padding: 15px 25px;
    background: linear-gradient(135deg, #8B4513 0%, #A0522D 100%);
    color: white;
    border: none;
    cursor: pointer;
    font-weight: 600;
    font-size: 1.05rem;
    transition: all 0.3s ease;
}

.error-search .search-submit:hover {
    background: linear-gradient(135deg, #A0522D 0%, #8B4513 100%);
    transform: scale(1.05);
}

/* Suggested Content */
.suggested-content {
    margin-top: 80px;
    padding-top: 60px;
    border-top: 1px solid #eee;
}

.suggested-content h2 {
    font-size: 2rem;
    color: #8B4513;
    margin-bottom: 40px;
    font-weight: 600;
}

.suggested-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
    margin-top: 40px;
}

.suggested-item {
    background: white;
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 5px 20px rgba(0,0,0,0.1);
    transition: all 0.3s ease;
}

.suggested-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(0,0,0,0.15);
}

.suggested-link {
    display: block;
    padding: 30px 20px;
    text-decoration: none;
    color: inherit;
    text-align: center;
}

.suggested-icon {
    margin-bottom: 20px;
}

.suggested-icon svg {
    transition: transform 0.3s ease;
}

.suggested-item:hover .suggested-icon svg {
    transform: scale(1.1);
}

.suggested-item h3 {
    font-size: 1.25rem;
    color: #8B4513;
    margin-bottom: 10px;
    font-weight: 600;
}

.suggested-item p {
    color: #666;
    font-size: 0.95rem;
    line-height: 1.5;
    margin: 0;
}

/* Responsive Design for 404 Page */
@media (max-width: 768px) {
    .error-404 {
        padding: 60px 0;
        min-height: 60vh;
    }
    
    .error-content {
        padding: 0 20px;
    }
    
    .floating-shape {
        display: none; /* Hide floating shapes on mobile for better performance */
    }
    
    .error-hero {
        margin-bottom: 60px;
    }
    
    .error-frame {
        padding: 20px;
        border-width: 3px;
    }
    
    .error-frame svg {
        width: 150px;
        height: 150px;
    }
    
    .error-code {
        font-size: 3rem;
    }
    
    .title-main {
        font-size: 2.8rem;
        letter-spacing: -1px;
    }
    
    .error-subtitle {
        font-size: 1.2rem;
    }
    
    .error-description {
        font-size: 1rem;
        margin-bottom: 40px;
    }
    
    .error-actions {
        gap: 30px;
    }
    
    .primary-actions {
        flex-direction: column;
        gap: 15px;
        width: 100%;
    }
    
    .error-404 .btn {
        width: 100%;
        max-width: 280px;
        padding: 14px 28px;
        font-size: 1rem;
    }
    
    .search-section {
        max-width: 100%;
    }
    
    .error-search .search-field {
        padding: 12px 20px;
        font-size: 1rem;
    }
    
    .error-search .search-submit {
        padding: 12px 20px;
        font-size: 1rem;
    }
    
    .suggested-content {
        margin-top: 60px;
        padding-top: 40px;
    }
    
    .suggested-content h2 {
        font-size: 1.75rem;
    }
    
    .suggested-grid {
        grid-template-columns: 1fr;
        gap: 20px;
        padding: 0 20px;
    }
    
    .suggested-link {
        padding: 25px 15px;
    }
}

@media (max-width: 480px) {
    .error-404 {
        padding: 40px 0;
    }
    
    .error-content {
        padding: 0 15px;
    }
    
    .error-frame {
        padding: 15px;
        border-width: 2px;
    }
    
    .error-frame svg {
        width: 120px;
        height: 120px;
    }
    
    .error-code {
        font-size: 2.5rem;
    }
    
    .title-main {
        font-size: 2.2rem;
    }
    
    .error-subtitle {
        font-size: 1.1rem;
    }
    
    .error-description {
        font-size: 0.95rem;
        line-height: 1.6;
    }
    
    .error-404 .btn {
        padding: 12px 24px;
        font-size: 0.95rem;
    }
    
    .btn-icon {
        font-size: 1.1em;
    }
    
    .search-label {
        font-size: 1rem;
    }
    
    .divider-line {
        width: 30px;
    }
    
    .suggested-content h2 {
        font-size: 1.5rem;
    }
    
    .suggested-item h3 {
        font-size: 1.1rem;
    }
    
    .suggested-item p {
        font-size: 0.9rem;
    }
}

@media (max-width: 360px) {
    .title-main {
        font-size: 1.8rem;
    }
}

/* Single Product Page Styling */
.single-product-wrapper {
    max-width: 1200px;
    margin: 0 auto;
    padding: 40px 20px;
}

.single-product-content {
    overflow: hidden;
    display: flex !important;
    flex-direction: column !important;
}
.woocommerce-product-gallery__trigger{
    display: none !important;
}

.product-gallery-summary {
    width: 100% !important;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
    padding: 40px;
}

.product-gallery {
    position: relative;
}

.woocommerce-product-gallery {
    position: relative;
}

.woocommerce-product-gallery__wrapper {
    position: relative;
}

.woocommerce-product-gallery__image {
    margin-bottom: 20px;
}

.woocommerce-product-gallery__image img {
    width: 100%;
    height: auto;
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

.flex-control-thumbs {
    display: flex;
    gap: 10px;
    margin-top: 20px;
    flex-wrap: wrap;
}

.flex-control-thumbs li {
    flex: 0 0 auto;
    list-style: none;
}

.flex-control-thumbs img {
    width: 80px;
    height: 80px;
    object-fit: cover;
    border-radius: 8px;
    cursor: pointer;
    border: 2px solid transparent;
    transition: all 0.3s ease;
}

.flex-control-thumbs img:hover,
.flex-control-thumbs .flex-active img {
    border-color: #007cba;
    transform: scale(1.05);
}

.product-summary {
    padding: 20px 0;
}

.product_title {
    font-size: 2.2rem;
    font-weight: 700;
    color: #333;
    margin-bottom: 15px;
    line-height: 1.3;
}

.woocommerce-product-rating {
    margin-bottom: 20px;
    display: flex;
    align-items: center;
    gap: 10px;
}
.wc-block-components-quantity-selector:after{
    content: '';
    border: none !important;
}

.star-rating {
    color: #ffa500;
    font-size: 1.1rem;
}

.woocommerce-review-link {
    color: #666;
    text-decoration: none;
    font-size: 0.9rem;
}

.woocommerce-review-link:hover {
    color: #007cba;
}

.price {
    font-size: 1.8rem;
    font-weight: 700;
    color: #007cba;
    margin-bottom: 20px;
}

.price del {
    color: #999;
    font-size: 1.4rem;
    margin-right: 10px;
}

.price ins {
    text-decoration: none;
    color: #e74c3c;
}

.woocommerce-product-details__short-description {
    font-size: 1.1rem;
    line-height: 1.6;
    color: #666;
    margin-bottom: 30px;
}

.cart {
    display: flex;
    align-items: center;
    gap: 15px;
    margin-bottom: 30px;
    flex-wrap: wrap;
}

/* Related Products Section */
.related-products-section {
    margin-top: 60px;
    padding-top: 40px;
    border-top: 1px solid #eee;
}

.related-products-section h3 {
    font-size: 1.8rem;
    font-weight: 600;
    color: #333;
    margin-bottom: 30px;
    text-align: center;
}

.related-products-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
    max-width: 1200px;
    margin: 0 auto;
}

.related-product-item {
    border-radius: 8px;
    overflow: hidden;
    height: 100%;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.related-product-item:hover {
    transform: translateY(-5px);
}

.related-product-link {
    display: block;
    text-decoration: none;
    color: inherit;
}
.act-product{
    height: auto !important;
}
.act-product .artwork-image img{
    height: 100%  !important;
}
.related-product-image {
    position: relative;
    width: 100%;
    height: auto;
    overflow: hidden;
}

.related-product-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s ease;
}

.related-product-item:hover .related-product-image img {
    transform: scale(1.05);
}

.related-product-image .no-image-placeholder {
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, #f5f5f5 0%, #e8e8e8 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    color: #999;
    font-size: 0.9rem;
}

.related-product-info {
    padding: 20px;
}

.related-product-info h4 {
    font-size: 1.1rem;
    font-weight: 600;
    color: #333;
    margin-bottom: 10px;
    line-height: 1.4;
}

.related-product-price {
    font-size: 1.2rem;
    font-weight: 700;
    color: #007cba;
    margin: 0;
}

.related-product-price del {
    color: #999;
    font-size: 1rem;
    margin-right: 8px;
}

.related-product-price ins {
    text-decoration: none;
    color: #e74c3c;
}

/* Responsive adjustments */
@media (max-width: 768px) {
    .related-products-grid {
        grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
        gap: 20px;
    }
    
    .related-product-image {
        height: 150px;
    }
    
    .related-product-info {
        padding: 15px;
    }
}

@media (max-width: 480px) {
    .related-products-grid {
        grid-template-columns: 1fr 1fr;
        gap: 15px;
    }
    
    .related-product-image {
        height: 120px;
    }
    
    .related-product-info h4 {
        font-size: 1rem;
    }
    
    .related-product-price {
        font-size: 1.1rem;
    }
}

.quantity {
    display: flex;
    align-items: center;
    border: 2px solid #ddd;
    border-radius: 8px;
    overflow: hidden;
}

.quantity input[type="number"] {
    width: 60px;
    padding: 12px 8px;
    border: none;
    text-align: center;
    font-size: 1rem;
    background: #fff;
}

.quantity .qty {
    -moz-appearance: textfield;
}

.quantity .qty::-webkit-outer-spin-button,
.quantity .qty::-webkit-inner-spin-button {
    -webkit-appearance: none;
    margin: 0;
}

.single_add_to_cart_button {
    background: linear-gradient(135deg, #007cba 0%, #005a87 100%);
    color: white;
    border: none;
    padding: 15px 30px;
    border-radius: 8px;
    font-size: 1.1rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.single_add_to_cart_button:hover {
    background: linear-gradient(135deg, #005a87 0%, #007cba 100%);
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(0, 124, 186, 0.3);
}

.single_add_to_cart_button:disabled {
    opacity: 0.6;
    cursor: not-allowed;
    transform: none;
}

.product_meta {
    border-top: 1px solid #eee;
    padding-top: 20px;
    margin-top: 20px;
}

.product_meta > span {
    display: block;
    margin-bottom: 8px;
    font-size: 0.95rem;
    color: #666;
}

.product_meta a {
    color: #007cba;
    text-decoration: none;
}

.product_meta a:hover {
    text-decoration: underline;
}

.product-details {
    padding: 0 40px 40px;
}

.woocommerce-tabs {
    margin-top: 40px;
}

.wc-tabs {
    display: flex;
    border-bottom: 2px solid #eee;
    margin-bottom: 30px;
    list-style: none;
    padding: 0;
    gap: 0;
}

.wc-tabs li {
    margin: 0;
}

.wc-tabs li a {
    display: block;
    padding: 15px 25px;
    color: #666;
    text-decoration: none;
    font-weight: 600;
    border-bottom: 3px solid transparent;
    transition: all 0.3s ease;
}

.wc-tabs li.active a,
.wc-tabs li a:hover {
    color: #007cba;
    border-bottom-color: #007cba;
}

.wc-tab {
    display: none;
    padding: 20px 0;
    line-height: 1.6;
}

.wc-tab.active {
    display: block;
}

.wc-tab h2 {
    font-size: 1.5rem;
    margin-bottom: 15px;
    color: #333;
}

.wc-tab p {
    margin-bottom: 15px;
    color: #666;
}

.related.products,
.upsells.products {
    margin-top: 60px;
    padding-top: 40px;
    border-top: 1px solid #eee;
}

.related.products h2,
.upsells.products h2 {
    font-size: 1.8rem;
    margin-bottom: 30px;
    text-align: center;
    color: #333;
}

.related .products,
.upsells .products {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
}

.onsale {
    position: absolute;
    top: 15px;
    left: 15px;
    background: #e74c3c;
    color: white;
    padding: 8px 12px;
    border-radius: 20px;
    font-size: 0.85rem;
    font-weight: 600;
    z-index: 2;
    text-transform: uppercase;
    letter-spacing: 1px;
}

/* Responsive Design */
@media (max-width: 768px) {
    .single-product-wrapper {
        padding: 20px 15px;
    }
    
    .product-gallery-summary {
        grid-template-columns: 1fr;
        gap: 30px;
        padding: 30px 20px;
    }
    
    .product_title {
        font-size: 1.8rem;
    }
    
    .price {
        font-size: 1.5rem;
    }
    
    .cart {
        flex-direction: column;
        align-items: stretch;
    }
    
    .quantity {
        justify-content: center;
    }
    
    .single_add_to_cart_button {
        width: 100%;
        padding: 18px;
    }
    
    .product-details {
        padding: 0 20px 30px;
    }
    
    .wc-tabs {
        flex-direction: column;
    }
    
    .wc-tabs li a {
        border-bottom: 1px solid #eee;
        border-right: none;
    }
    
    .flex-control-thumbs {
        justify-content: center;
    }
    
    .flex-control-thumbs img {
        width: 60px;
        height: 60px;
    }
}

@media (max-width: 480px) {
    .product_title {
        font-size: 1.5rem;
    }
    
    .price {
        font-size: 1.3rem;
    }
    
    .woocommerce-product-details__short-description {
        font-size: 1rem;
    }
    
    .single_add_to_cart_button {
        font-size: 1rem;
        padding: 15px;
    }
}    
    .error-code {
        font-size: 2rem;
    }
    
    .error-subtitle {
        font-size: 1rem;
    }
    
    .primary-actions {
        gap: 12px;
    }
    
    .error-404 .btn {
        padding: 10px 20px;
        font-size: 0.9rem;
    }
}
