/*
Theme Name: Liga Kandele Custom
Theme URI: http://ligakandele.local
Author: Liga Kandele
Author URI: http://ligakandele.local
Description: Custom theme for Liga Kandele Art Shop
Version: 1.1.0
License: GPL v2 or later
Text Domain: liga-kandele
*/

/* ===== RESET & BASE STYLES ===== */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, 'Helvetica Neue', Arial, sans-serif;
    background: #ffffff;
    color: #333333;
    line-height: 1.6;
    overflow-x: hidden;
}

/* ===== NO HEADER SPACE ===== */
.site-header {
    display: none;
}

/* ===== HOMEPAGE - START IMMEDIATELY ===== */
.handmade-homepage {
    width: 100%;
    margin-top: 0;
}

/* ABOUT ARTIST SECTION - NO TOP SPACE */
.about-artist {
    padding: 30px 0 50px;
    background: linear-gradient(135deg, #f9f3e9 0%, #f0e6d6 100%);
    position: relative;
    overflow: hidden;
    min-height: calc(100vh - 60px);
    display: flex;
    align-items: center;
}

.about-artist::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" width="100" height="100" viewBox="0 0 100 100"><path fill="none" stroke="rgba(0,0,0,0.02)" stroke-width="0.3" d="M0,0 L100,0 L100,100 L0,100 Z M15,15 L85,15 L85,85 L15,85 Z"/></svg>');
    opacity: 0.15;
}

.container {
    max-width: 1280px;
    margin: 0 auto;
    padding: 0 25px;
    position: relative;
    z-index: 2;
}

/* ARTIST ROW - DESKTOP LAYOUT (ORIGINAL) */
.artist-row {
    display: flex;
    align-items: center;
    gap: 50px;
    position: relative;
}

/* MINIMAL NAVIGATION - TOP RIGHT CORNER (DESKTOP ONLY) */
.artist-nav {
    position: absolute;
    top: 0;
    right: 0;
    display: flex;
    gap: 12px;
    z-index: 100;
}

.artist-nav a {
    color: #333333;
    text-decoration: none;
    font-size: 14px;
    font-weight: 500;
    padding: 7px 18px;
    border-radius: 22px;
    background: rgba(255, 255, 255, 0.92);
    backdrop-filter: blur(6px);
    border: 1px solid rgba(0, 0, 0, 0.06);
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    gap: 6px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.04);
}

.artist-nav a:hover {
    background: #f1641e;
    color: white;
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(241, 100, 30, 0.15);
}

.artist-nav i {
    font-size: 13px;
}

/* ARTIST PHOTO - DESKTOP (ORIGINAL POSITION) */
.artist-photo {
    flex: 0 0 360px;
}

.artist-photo img {
    width: 100%;
    border-radius: 16px;
    box-shadow: 0 12px 35px rgba(0, 0, 0, 0.1);
    border: 5px solid rgba(255, 255, 255, 0.85);
    transition: transform 0.4s ease;
}

.artist-photo img:hover {
    transform: scale(1.02);
}

/* ARTIST INFO - DESKTOP (ORIGINAL) */
.artist-info {
    flex: 1;
    padding-top: 35px;
}

.artist-info h1 {
    font-size: 2.5rem;
    color: #222222;
    margin-bottom: 20px;
    line-height: 1.2;
    font-weight: normal;
    position: relative;
    padding-bottom: 12px;
}

.artist-info h1::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 60px;
    height: 2px;
    background: #f1641e;
}

.artist-info p {
    font-size: 1.1rem;
    color: #555555;
    margin-bottom: 18px;
    line-height: 1.65;
    max-width: 520px;
}

/* ===== RREGULLIMI I BUTONAVE - FRONT-PAGE ===== */

/* My Store button - Ngjyrë e re */
.store-link:first-child {
    background: #2a5c8b; /* Blu e errët elegante */
}

.store-link:first-child:hover {
    background: #1e4568;
    box-shadow: 0 6px 18px rgba(42, 92, 139, 0.2);
}

/* Mbaj ngjyrat ekzistuese për butonat e tjerë */
.store-link.etsy {
    background: #f56400;
}

.store-link.etsy:hover {
    background: #d45600;
    box-shadow: 0 6px 18px rgba(245, 100, 0, 0.2);
}

.store-link.ebay {
    background: #0064d2;
}

.store-link.ebay:hover {
    background: #0055b3;
    box-shadow: 0 6px 18px rgba(0, 100, 210, 0.2);
}

.store-link.instagram {
    background: #E1306C;
}

.store-link.instagram:hover {
    background: #c1285d;
    box-shadow: 0 6px 18px rgba(225, 48, 108, 0.2);
}

/* STORE LINKS - RESPONSIVE GRID */
.store-links {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 10px;
    margin-top: 30px;
    max-width: 680px;
}

.store-link {
    background: #f1641e;
    color: white;
    padding: 13px 15px;
    border-radius: 10px;
    text-decoration: none;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 7px;
    font-weight: 600;
    font-size: 0.92rem;
    transition: all 0.3s ease;
    border: none;
    text-align: center;
    min-height: 80px;
}

.store-link:hover {
    transform: translateY(-3px);
    box-shadow: 0 6px 18px rgba(241, 100, 30, 0.2);
    background: #d45600;
}

.store-link i {
    font-size: 1.2rem;
}

/* ===== FEATURED COLLECTIONS ===== */
.featured-collections {
    padding: 60px 0 40px;
    background: white;
}

.section-title {
    text-align: center;
    font-size: 2rem;
    color: #222222;
    margin-bottom: 45px;
    font-weight: normal;
    position: relative;
}

.section-title::after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 50%;
    transform: translateX(-50%);
    width: 50px;
    height: 2px;
    background: #f1641e;
}

/* COLLECTIONS GRID - 2 EQUAL COLUMNS */
.collections-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 35px;
    margin-bottom: 45px;
}

/* EACH COLLECTION - FIXED UNIFORM SIZE */
.collection {
    background: white;
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.06);
    border: 1px solid #eeeeee;
    transition: all 0.3s ease;
    display: flex;
    flex-direction: column;
    height: 780px; /* Rritje nga 720px në 780px */
}

.collection:hover {
    transform: translateY(-4px);
    box-shadow: 0 12px 35px rgba(0, 0, 0, 0.09);
}

/* COLLECTION HEADER */
.collection-header {
    padding: 22px 25px;
    background: linear-gradient(135deg, #f8f9fa 0%, #f0f4f8 100%);
    border-bottom: 1px solid #eeeeee;
    text-align: center;
    flex-shrink: 0;
}

.collection-title {
    font-size: 1.5rem;
    color: #222222;
    margin-bottom: 6px;
    font-weight: normal;
}

.collection-description {
    color: #666666;
    font-size: 0.95rem;
    line-height: 1.5;
}

/* PRODUCTS GRID INSIDE COLLECTION - 2x2 FIXED LAYOUT */
.collection-products {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 18px;
    padding: 22px;
    flex-grow: 1;
    min-height: 400px;
}

/* PRODUCT CARD IN COLLECTION - BIGGER IMAGES */
.collection-product {
    background: white;
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 3px 12px rgba(0, 0, 0, 0.04);
    border: 1px solid #f5f5f5;
    transition: all 0.3s ease;
    text-decoration: none;
    color: inherit;
    display: block;
    height: 100%;
}

.collection-product:hover {
    transform: translateY(-3px);
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.08);
}

/* IMAGE HEIGHT - RRITUR */
.collection-product-image {
    height: 220px; /* Rritje nga 170px në 220px */
    background: #f8f9fa;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    overflow: hidden;
}

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

.collection-product:hover .collection-product-image img {
    transform: scale(1.04);
}

/* Empty placeholder for missing products */
.collection-product.placeholder {
    background: #fafafa;
    border: 1px dashed #ddd;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #999;
    font-size: 0.9rem;
    height: 100%;
}

.collection-product-info {
    padding: 15px;
    text-align: center;
}

/* IMPROVED PRODUCT TITLE STYLE */
.collection-product-title {
    font-size: 0.95rem;
    color: #333333;
    margin-bottom: 5px;
    font-weight: normal;
    line-height: 1.4;
    height: 40px;
    overflow: hidden;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    font-family: 'Georgia', serif;
}

/* IMPROVED PRICE STYLE */
.collection-product-price {
    color: #2a5c8b;
    font-weight: 500;
    font-size: 1rem;
    margin-top: 5px;
    font-family: 'Georgia', serif;
}

/* COLLECTION FOOTER */
.collection-footer {
    padding: 20px 25px;
    background: #f8f9fa;
    border-top: 1px solid #eeeeee;
    text-align: center;
    flex-shrink: 0;
}

.browse-btn {
    display: inline-block;
    background: #f1641e;
    color: white;
    padding: 9px 25px;
    border-radius: 20px;
    text-decoration: none;
    font-weight: 600;
    font-size: 0.92rem;
    transition: all 0.3s ease;
    border: 2px solid #f1641e;
}

.browse-btn:hover {
    background: white;
    color: #f1641e;
    transform: translateY(-2px);
    box-shadow: 0 6px 18px rgba(241, 100, 30, 0.12);
}

/* ===== LATEST CREATIONS ===== */
.latest-creations {
    padding: 60px 0 50px;
    background: linear-gradient(135deg, #f8f9fa 0%, #f0f4f8 100%);
}

.latest-products-grid {
    display: grid;
    grid-template-columns: repeat(6, 1fr);
    gap: 22px;
    margin-bottom: 45px;
    overflow-x: auto;
    padding-bottom: 15px;
    scrollbar-width: thin;
    scrollbar-color: #ccc #f5f5f5;
}

.latest-products-grid::-webkit-scrollbar {
    height: 6px;
}

.latest-products-grid::-webkit-scrollbar-track {
    background: #f5f5f5;
    border-radius: 3px;
}

.latest-products-grid::-webkit-scrollbar-thumb {
    background: #ccc;
    border-radius: 3px;
}

/* LATEST PRODUCT CARD */
.latest-product-card {
    background: white;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.06);
    border: 1px solid #eeeeee;
    transition: all 0.3s ease;
    text-decoration: none;
    color: inherit;
    display: block;
    min-width: 180px;
    flex-shrink: 0;
}

.latest-product-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 12px 30px rgba(0, 0, 0, 0.1);
}

.latest-product-image {
    height: 160px;
    background: #f8f9fa;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    overflow: hidden;
}

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

.latest-product-card:hover .latest-product-image img {
    transform: scale(1.05);
}

.latest-product-info {
    padding: 18px;
    text-align: center;
}

/* TITLE STYLE */
.latest-product-title {
    font-size: 1rem;
    color: #222222;
    margin-bottom: 8px;
    font-weight: normal;
    line-height: 1.4;
    height: 44px;
    overflow: hidden;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    font-family: 'Georgia', serif;
}

.latest-product-description {
    color: #666666;
    font-size: 0.88rem;
    line-height: 1.5;
    margin-bottom: 10px;
    height: 40px;
    overflow: hidden;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
}

/* PRICE STYLE */
.latest-product-price {
    color: #2a5c8b;
    font-weight: 500;
    font-size: 1.05rem;
    margin-top: 8px;
    font-family: 'Georgia', serif;
}

/* Empty placeholder for latest products */
.latest-product-card.placeholder {
    background: #fafafa;
    border: 1px dashed #ddd;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    color: #999;
    font-size: 0.9rem;
    min-height: 250px;
}

/* VIEW ALL BUTTON */
.view-all-container {
    text-align: center;
}

.view-all-btn {
    display: inline-block;
    background: #222222;
    color: white;
    padding: 11px 35px;
    border-radius: 20px;
    text-decoration: none;
    font-weight: 600;
    font-size: 0.95rem;
    transition: all 0.3s ease;
    border: 2px solid #222222;
}

.view-all-btn:hover {
    background: white;
    color: #222222;
    transform: translateY(-2px);
    box-shadow: 0 8px 22px rgba(0, 0, 0, 0.08);
}

/* ===== FOOTER ===== */
.site-footer {
    padding: 35px 0;
    background: #222222;
    color: white;
    text-align: center;
}

.footer-content p {
    color: #aaaaaa;
    margin-bottom: 6px;
    font-size: 0.92rem;
}

.footer-heart {
    color: #E1306C;
    animation: heartbeat 1.5s ease infinite;
    display: inline-block;
}

@keyframes heartbeat {
    0%, 100% { transform: scale(1); }
    50% { transform: scale(1.1); }
}

.footer-social {
    display: flex;
    justify-content: center;
    gap: 16px;
    margin-top: 18px;
}

.footer-social a {
    color: white;
    font-size: 1.15rem;
    transition: all 0.3s ease;
    opacity: 0.8;
}

.footer-social a:hover {
    opacity: 1;
    transform: translateY(-2px);
}

/* ===== SHOP PAGE STYLES - ETSY STYLE ===== */

/* SHOP WELCOME SECTION - COMPACT */
.shop-welcome {
    padding: 35px 0 20px;
    background: linear-gradient(135deg, #f9f3e9 0%, #f0e6d6 100%);
    position: relative;
    overflow: hidden;
    min-height: 180px;
    display: flex;
    align-items: center;
    border-bottom: 1px solid rgba(0, 0, 0, 0.05);
}

.shop-welcome::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" width="100" height="100" viewBox="0 0 100 100"><path fill="none" stroke="rgba(0,0,0,0.02)" stroke-width="0.3" d="M0,0 L100,0 L100,100 L0,100 Z M15,15 L85,15 L85,85 L15,85 Z"/></svg>');
    opacity: 0.15;
}

/* SHOP WELCOME CONTENT - COMPACT */
.shop-welcome-content {
    width: 100%;
    text-align: center;
}

.welcome-header {
    margin-bottom: 20px;
}

.shop-welcome-title {
    font-size: 1.6rem;
    color: #222222;
    margin-bottom: 5px;
    line-height: 1.2;
    font-weight: normal;
    position: relative;
    display: inline-block;
    padding-bottom: 6px;
}

.shop-welcome-title::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 35px;
    height: 1.5px;
    background: #f1641e;
}

.welcome-subtitle {
    font-size: 0.9rem;
    color: #666666;
    font-style: italic;
    margin-top: 3px;
}

/* SHOP NAVIGATION WITH STATS - ALL IN ONE LINE */
.shop-nav-stats {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 20px;
    flex-wrap: wrap;
    background: rgba(255, 255, 255, 0.7);
    padding: 10px 20px;
    border-radius: 20px;
    border: 1px solid rgba(0, 0, 0, 0.04);
    max-width: 600px;
    margin: 0 auto;
}

/* NAVIGATION BUTTONS */
.nav-buttons-group {
    display: flex;
    gap: 8px;
    align-items: center;
}

.nav-btn-tiny {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 5px;
    padding: 5px 12px;
    background: rgba(255, 255, 255, 0.9);
    border: 1px solid rgba(0, 0, 0, 0.08);
    border-radius: 15px;
    color: #555555;
    text-decoration: none;
    font-size: 0.8rem;
    font-weight: 500;
    transition: all 0.2s ease;
    min-width: 70px;
}

.nav-btn-tiny:hover {
    background: #f1641e;
    color: white;
    transform: translateY(-1px);
}

.nav-btn-tiny.instagram:hover {
    background: #E1306C;
}

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

/* STATS GROUP */
.stats-group {
    display: flex;
    gap: 15px;
    align-items: center;
}

.stat-divider {
    color: #dddddd;
    font-size: 0.8rem;
    opacity: 0.5;
}

.stat-item-tiny {
    display: flex;
    align-items: center;
    gap: 6px;
}

.stat-icon-tiny {
    width: 26px;
    height: 26px;
    background: rgba(241, 100, 30, 0.08);
    border-radius: 7px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.stat-icon-tiny i {
    font-size: 0.9rem;
    color: #f1641e;
}

.stat-content-tiny {
    text-align: left;
}

.stat-number-tiny {
    font-size: 0.95rem;
    font-weight: 600;
    color: #222222;
    line-height: 1;
}

.stat-label-tiny {
    font-size: 0.7rem;
    color: #666666;
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 0.3px;
}

/* SEPARATOR BETWEEN NAV AND STATS */
.nav-stats-separator {
    color: #cccccc;
    font-size: 0.9rem;
    opacity: 0.3;
}

/* SHOP FILTERS - ETSY STYLE */
.shop-filters {
    padding: 20px 0;
    background: white;
    border-bottom: 1px solid #e1e3df;
}

.filter-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 15px;
}

/* CATEGORY FILTERS - ETSY STYLE */
.category-filters {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    flex-grow: 1;
}

.category-filter-btn {
    display: inline-flex;
    align-items: center;
    gap: 5px;
    padding: 6px 14px;
    background: #f8f8f8;
    color: #555555;
    border: 1px solid #e1e3df;
    border-radius: 20px;
    text-decoration: none;
    font-size: 0.85rem;
    font-weight: 500;
    transition: all 0.2s ease;
    white-space: nowrap;
}

.category-filter-btn:hover {
    background: #e8e8e8;
    transform: translateY(-1px);
    box-shadow: 0 2px 6px rgba(0, 0, 0, 0.04);
}

.category-filter-btn.active {
    background: #f1641e;
    color: white;
    border-color: #f1641e;
    box-shadow: 0 2px 6px rgba(241, 100, 30, 0.1);
}

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

/* SORT DROPDOWN - ETSY STYLE */
.sort-dropdown-container {
    position: relative;
}

.sort-dropdown {
    position: relative;
    display: inline-block;
}

.sort-dropdown-toggle {
    display: flex;
    align-items: center;
    gap: 6px;
    padding: 6px 14px;
    background: #f8f8f8;
    color: #555555;
    border: 1px solid #e1e3df;
    border-radius: 20px;
    font-size: 0.85rem;
    font-weight: 500;
    cursor: pointer;
    transition: all 0.2s ease;
    white-space: nowrap;
}

.sort-dropdown-toggle:hover {
    background: #e8e8e8;
    box-shadow: 0 2px 6px rgba(0, 0, 0, 0.04);
}

.sort-dropdown-toggle i.fa-sort-amount-down {
    font-size: 0.8rem;
    opacity: 0.7;
}

.sort-dropdown-toggle i.fa-chevron-down {
    font-size: 0.7rem;
    transition: transform 0.2s ease;
}

.sort-dropdown.active .sort-dropdown-toggle i.fa-chevron-down {
    transform: rotate(180deg);
}

.sort-current {
    min-width: 90px;
    text-align: center;
}

/* DROPDOWN MENU */
.sort-dropdown-menu {
    position: absolute;
    top: 100%;
    right: 0;
    margin-top: 5px;
    background: white;
    border: 1px solid #e1e3df;
    border-radius: 8px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
    min-width: 180px;
    z-index: 1000;
    opacity: 0;
    visibility: hidden;
    transform: translateY(-10px);
    transition: all 0.2s ease;
    padding: 8px 0;
}

.sort-dropdown:hover .sort-dropdown-menu {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.sort-dropdown-item {
    display: block;
    padding: 8px 16px;
    color: #555555;
    text-decoration: none;
    font-size: 0.85rem;
    transition: all 0.15s ease;
}

.sort-dropdown-item:hover {
    background: #f8f8f8;
    color: #f1641e;
}

.sort-dropdown-item.active {
    background: #fef6f2;
    color: #f1641e;
    font-weight: 500;
}

/* ===== ETSY-STYLE PRODUCT GRID ===== */
.all-products {
    padding: 30px 0 50px;
    background: #fafafa;
}

.products-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
    gap: 25px;
    margin-bottom: 30px;
}

/* ETSY PRODUCT CARD */
.etsy-product-card {
    background: white;
    border-radius: 8px;
    overflow: hidden;
    position: relative;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    border: 1px solid #e1e3df;
    display: flex;
    flex-direction: column;
}

.etsy-product-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 12px 24px rgba(0, 0, 0, 0.1);
    border-color: #d1d9d1;
}

/* PRODUCT IMAGE CONTAINER */
.etsy-image-container {
    position: relative;
    aspect-ratio: 1 / 1;
    overflow: hidden;
    background: #f9f9f9;
    cursor: pointer;
}

.etsy-image-container img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.etsy-product-card:hover .etsy-image-container img {
    transform: scale(1.05);
}

/* VIDEO BADGE */
.video-badge {
    position: absolute;
    top: 12px;
    right: 12px;
    background: rgba(0, 0, 0, 0.8);
    color: white;
    padding: 4px 10px;
    border-radius: 4px;
    font-size: 0.75rem;
    font-weight: 500;
    display: flex;
    align-items: center;
    gap: 4px;
    z-index: 2;
}

/* MULTI-IMAGE INDICATOR */
.multi-image-indicator {
    position: absolute;
    bottom: 12px;
    right: 12px;
    background: rgba(0, 0, 0, 0.8);
    color: white;
    width: 32px;
    height: 32px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.8rem;
    font-weight: 500;
    z-index: 2;
}

/* SALE BADGE */
.sale-badge-etsy {
    position: absolute;
    top: 12px;
    left: 12px;
    background: #f1641e;
    color: white;
    padding: 4px 10px;
    border-radius: 4px;
    font-size: 0.75rem;
    font-weight: 600;
    z-index: 2;
    letter-spacing: 0.5px;
}

/* PRODUCT INFO - ETSY STYLE */
.etsy-product-info {
    padding: 16px;
    flex-grow: 1;
    display: flex;
    flex-direction: column;
}

.etsy-product-title {
    font-size: 0.95rem;
    color: #222222;
    font-weight: 400;
    line-height: 1.4;
    margin-bottom: 8px;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
    min-height: 2.8em;
    flex-grow: 1;
}

.etsy-product-maker {
    font-size: 0.82rem;
    color: #666666;
    margin-bottom: 10px;
    font-style: italic;
    display: flex;
    align-items: center;
    gap: 5px;
}

.etsy-product-price {
    display: flex;
    align-items: center;
    gap: 8px;
    margin-bottom: 12px;
    flex-wrap: wrap;
}

.etsy-current-price {
    font-size: 1.1rem;
    color: #222222;
    font-weight: 600;
}

.etsy-original-price {
    font-size: 0.9rem;
    color: #999999;
    text-decoration: line-through;
}

.etsy-sale-percent {
    background: #f1641e;
    color: white;
    padding: 3px 8px;
    border-radius: 4px;
    font-size: 0.75rem;
    font-weight: 600;
}

/* SHIPPING INFO - ETSY STYLE */
.etsy-shipping-info {
    font-size: 0.82rem;
    color: #666666;
    margin-top: 8px;
    padding-top: 8px;
    border-top: 1px solid #f0f0f0;
    display: flex;
    align-items: center;
    gap: 5px;
}

.etsy-shipping-price {
    color: #222222;
    font-weight: 500;
}

/* REVIEWS STARS */
.etsy-reviews {
    display: flex;
    align-items: center;
    gap: 4px;
    margin-top: 8px;
}

.etsy-star-rating {
    color: #f1641e;
    font-size: 0.82rem;
}

.etsy-review-count {
    font-size: 0.8rem;
    color: #666666;
    margin-left: 2px;
}

/* PRODUCT ACTIONS */
.etsy-product-actions {
    padding: 0 16px 16px;
    margin-top: auto;
}

.etsy-add-to-cart {
    display: block;
    width: 100%;
    background: #f1641e;
    color: white;
    padding: 10px 15px;
    border-radius: 6px;
    text-decoration: none;
    text-align: center;
    font-weight: 600;
    font-size: 0.9rem;
    border: none;
    cursor: pointer;
    transition: all 0.3s ease;
    font-family: inherit;
}

.etsy-add-to-cart:hover {
    background: #d45600;
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(241, 100, 30, 0.15);
}

.etsy-view-options {
    display: block;
    width: 100%;
    background: #222222;
    color: white;
    padding: 10px 15px;
    border-radius: 6px;
    text-decoration: none;
    text-align: center;
    font-weight: 600;
    font-size: 0.9rem;
    border: none;
    cursor: pointer;
    transition: all 0.3s ease;
}

.etsy-view-options:hover {
    background: #000000;
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
}

/* PAGINATION */
.shop-pagination {
    text-align: center;
    margin-top: 40px;
}

.shop-pagination .page-numbers {
    display: inline-flex;
    list-style: none;
    gap: 8px;
    flex-wrap: wrap;
    justify-content: center;
}

.shop-pagination .page-numbers li {
    margin: 0;
}

.shop-pagination a,
.shop-pagination span {
    display: inline-block;
    padding: 8px 14px;
    background: white;
    color: #555555;
    border: 1px solid #e1e3df;
    border-radius: 6px;
    text-decoration: none;
    font-size: 0.85rem;
    transition: all 0.3s ease;
    min-width: 40px;
    text-align: center;
}

.shop-pagination a:hover {
    background: #f1641e;
    color: white;
    border-color: #f1641e;
    transform: translateY(-2px);
    box-shadow: 0 3px 10px rgba(241, 100, 30, 0.1);
}

.shop-pagination span.current {
    background: #f1641e;
    color: white;
    border-color: #f1641e;
}

.shop-pagination .prev,
.shop-pagination .next {
    display: flex;
    align-items: center;
    gap: 5px;
}

/* NO PRODUCTS */
.no-products {
    padding: 60px 20px;
    text-align: center;
    background: white;
    border-radius: 10px;
    margin: 30px 0;
    border: 1px solid #e1e3df;
}

.no-products-content h3 {
    font-size: 1.3rem;
    color: #333333;
    margin-bottom: 12px;
    font-weight: normal;
}

.no-products-content p {
    color: #666666;
    max-width: 450px;
    margin: 0 auto 20px;
    line-height: 1.5;
    font-size: 0.9rem;
}

/* ===== SINGLE PRODUCT PAGE STYLES ===== */
.single-product-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 30px 25px 50px;
}

.product-page-layout {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
    margin-bottom: 50px;
}

/* PRODUCT GALLERY */
.product-gallery {
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.main-product-image {
    aspect-ratio: 1 / 1;
    border-radius: 10px;
    overflow: hidden;
    background: #f9f9f9;
    position: relative;
}

.main-product-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

/* VIDEO THUMBNAIL */
.video-thumbnail-container {
    position: relative;
    cursor: pointer;
    border-radius: 10px;
    overflow: hidden;
    aspect-ratio: 1 / 1;
}

.video-thumbnail-container::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.3);
    transition: background 0.3s ease;
}

.video-thumbnail-container:hover::after {
    background: rgba(0, 0, 0, 0.2);
}

.video-play-button {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 70px;
    height: 70px;
    background: rgba(255, 255, 255, 0.95);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 2;
    color: #f1641e;
    font-size: 1.8rem;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
}

.video-thumbnail-container:hover .video-play-button {
    transform: translate(-50%, -50%) scale(1.1);
    background: white;
}

.video-badge-label {
    position: absolute;
    bottom: 15px;
    left: 15px;
    background: rgba(0, 0, 0, 0.8);
    color: white;
    padding: 5px 12px;
    border-radius: 4px;
    font-size: 0.8rem;
    font-weight: 500;
    z-index: 2;
    display: flex;
    align-items: center;
    gap: 5px;
}

/* PRODUCT INFO */
.product-info-section {
    background: white;
    border-radius: 10px;
    padding: 30px;
    border: 1px solid #e1e3df;
}

.product-title-section h1 {
    font-size: 2rem;
    color: #222222;
    margin-bottom: 10px;
    font-weight: 400;
    line-height: 1.3;
}

.product-maker {
    font-size: 0.95rem;
    color: #666666;
    margin-bottom: 20px;
    display: flex;
    align-items: center;
    gap: 8px;
}

/* PRODUCT PRICE - ETSY STYLE */
.product-price-section {
    margin: 25px 0;
    padding: 20px 0;
    border-top: 1px solid #f0f0f0;
    border-bottom: 1px solid #f0f0f0;
}

.etsy-price-display {
    display: flex;
    align-items: center;
    gap: 15px;
    flex-wrap: wrap;
    margin-bottom: 10px;
}

.main-price {
    font-size: 1.8rem;
    color: #222222;
    font-weight: 600;
}

.original-price {
    font-size: 1.3rem;
    color: #999999;
    text-decoration: line-through;
}

.sale-percentage {
    background: #f1641e;
    color: white;
    padding: 5px 12px;
    border-radius: 6px;
    font-size: 0.9rem;
    font-weight: 600;
}

.tax-shipping-note {
    font-size: 0.85rem;
    color: #666666;
    margin-top: 8px;
}

/* PRODUCT DESCRIPTION */
.product-description {
    margin: 25px 0;
    line-height: 1.7;
    color: #555555;
}

.product-description p {
    margin-bottom: 15px;
}

/* SHIPPING CALCULATOR */
.shipping-calculator {
    background: #f9f9f9;
    border-radius: 10px;
    padding: 25px;
    margin: 25px 0;
    border: 1px solid #e1e3df;
}

.shipping-calculator h3 {
    margin-bottom: 20px;
    font-size: 1.1rem;
    color: #222222;
    display: flex;
    align-items: center;
    gap: 10px;
}

.shipping-form {
    display: grid;
    grid-template-columns: 1fr 1fr auto;
    gap: 10px;
    margin-bottom: 15px;
}

.shipping-form select,
.shipping-form input {
    padding: 12px;
    border: 1px solid #ddd;
    border-radius: 6px;
    font-family: inherit;
    font-size: 0.9rem;
}

.shipping-form select {
    background: white;
}

.calculate-button {
    background: #222222;
    color: white;
    border: none;
    padding: 12px 20px;
    border-radius: 6px;
    cursor: pointer;
    font-weight: 600;
    font-size: 0.9rem;
    transition: all 0.3s ease;
    white-space: nowrap;
}

.calculate-button:hover {
    background: #f1641e;
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(241, 100, 30, 0.15);
}

.shipping-result {
    margin-top: 15px;
    padding: 15px;
    background: white;
    border-radius: 6px;
    border: 1px solid #e1e3df;
    display: none;
}

.shipping-estimate {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 5px;
}

.shipping-price {
    font-size: 1.1rem;
    font-weight: 600;
    color: #222222;
}

.shipping-time {
    font-size: 0.85rem;
    color: #666666;
    font-style: italic;
}

/* ADD TO CART SECTION */
.add-to-cart-section {
    margin-top: 30px;
    padding-top: 25px;
    border-top: 1px solid #f0f0f0;
}

.quantity-selector {
    display: flex;
    align-items: center;
    gap: 15px;
    margin-bottom: 20px;
}

.quantity-label {
    font-size: 0.95rem;
    color: #555555;
    font-weight: 500;
}

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

.quantity-btn {
    width: 40px;
    height: 40px;
    background: #f8f8f8;
    border: none;
    font-size: 1.2rem;
    cursor: pointer;
    color: #555555;
    transition: all 0.2s ease;
}

.quantity-btn:hover {
    background: #e8e8e8;
}

.quantity-number {
    width: 60px;
    height: 40px;
    text-align: center;
    border: none;
    border-left: 1px solid #ddd;
    border-right: 1px solid #ddd;
    font-size: 1rem;
    font-weight: 500;
}

.add-to-cart-button {
    display: block;
    width: 100%;
    background: #f1641e;
    color: white;
    padding: 16px;
    border-radius: 8px;
    border: none;
    font-size: 1.1rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    margin-bottom: 15px;
}

.add-to-cart-button:hover {
    background: #d45600;
    transform: translateY(-3px);
    box-shadow: 0 6px 20px rgba(241, 100, 30, 0.2);
}

.wishlist-button {
    display: block;
    width: 100%;
    background: white;
    color: #555555;
    padding: 14px;
    border-radius: 8px;
    border: 1px solid #ddd;
    font-size: 0.95rem;
    font-weight: 500;
    cursor: pointer;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
}

.wishlist-button:hover {
    background: #f9f9f9;
    border-color: #f1641e;
    color: #f1641e;
}

/* PRODUCT META INFO */
.product-meta-info {
    margin-top: 30px;
    padding-top: 25px;
    border-top: 1px solid #f0f0f0;
}

.meta-item {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 12px;
    font-size: 0.9rem;
    color: #555555;
}

.meta-item i {
    color: #f1641e;
    width: 20px;
}

/* RELATED PRODUCTS */
.related-products {
    margin-top: 60px;
}

.related-title {
    font-size: 1.5rem;
    color: #222222;
    margin-bottom: 30px;
    text-align: center;
    font-weight: 400;
    position: relative;
    padding-bottom: 15px;
}

.related-title::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 50px;
    height: 2px;
    background: #f1641e;
}

.related-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
    gap: 25px;
}

/* ===== RESPONSIVE DESIGN ===== */

/* Tablet (768px - 1024px) */
@media (max-width: 1024px) {
    .container {
        max-width: 95%;
        padding: 0 20px;
    }
    
    .artist-row {
        gap: 40px;
    }
    
    .artist-photo {
        flex: 0 0 300px;
    }
    
    .artist-info h1 {
        font-size: 2rem;
    }
    
    .artist-info p {
        font-size: 1.05rem;
    }
    
    .store-links {
        grid-template-columns: repeat(2, 1fr);
        gap: 9px;
    }
    
    .store-link {
        min-height: 75px;
        padding: 11px;
    }
    
    .collections-grid {
        gap: 30px;
    }
    
    .collection {
        height: 700px;
    }
    
    .collection-products {
        gap: 15px;
        padding: 18px;
    }
    
    .collection-product-image {
        height: 180px; /* Rritje për tablet */
    }
    
    .latest-products-grid {
        grid-template-columns: repeat(4, 1fr);
        gap: 18px;
    }
    
    /* Shop specific */
    .shop-welcome {
        padding: 30px 0 15px;
        min-height: 160px;
    }
    
    .shop-welcome-title {
        font-size: 1.5rem;
    }
    
    .shop-nav-stats {
        padding: 8px 16px;
        max-width: 500px;
        gap: 15px;
    }
    
    .products-grid {
        grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
        gap: 20px;
    }
    
    /* Single product layout */
    .product-page-layout {
        grid-template-columns: 1fr;
        gap: 30px;
    }
}

/* MOBILE ONLY REORDERING (up to 768px) */
@media (max-width: 768px) {
    .about-artist {
        padding: 20px 0 40px;
        min-height: auto;
    }
    
    /* Mobile: Hide desktop navigation from top right */
    .artist-nav {
        display: none;
    }
    
    /* Mobile: Stack layout with reordering */
    .artist-row {
        flex-direction: column;
        gap: 0;
    }
    
    /* Mobile: Photo comes after title */
    .artist-photo {
        flex: 0 0 100%;
        max-width: 320px;
        margin: 25px auto;
        order: 3;
    }
    
    /* Mobile: Title stays at top (1st) */
    .artist-info h1 {
        font-size: 2rem;
        text-align: center;
        margin-bottom: 20px;
        order: 1;
    }
    
    .artist-info h1::after {
        left: 50%;
        transform: translateX(-50%);
    }
    
    /* Mobile: Description text (2nd) */
    .artist-info p {
        text-align: center;
        margin-left: auto;
        margin-right: auto;
        font-size: 1.05rem;
        line-height: 1.7;
        margin-bottom: 15px;
        order: 2;
        width: 100%;
    }
    
    /* Mobile: Store Links (4th) */
    .store-links {
        grid-template-columns: repeat(2, 1fr);
        max-width: 500px;
        margin: 25px auto 0;
        order: 4;
        gap: 12px;
    }
    
    .store-link {
        min-height: 75px;
        padding: 12px;
        font-size: 0.9rem;
    }
    
    /* Mobile Navigation Bar (shown only on mobile) */
    .mobile-nav {
        display: flex;
        justify-content: center;
        gap: 15px;
        margin-bottom: 25px;
        order: 0;
    }
    
    .mobile-nav a {
        color: #333333;
        text-decoration: none;
        font-size: 14px;
        font-weight: 500;
        padding: 8px 20px;
        border-radius: 22px;
        background: rgba(255, 255, 255, 0.92);
        border: 1px solid rgba(0, 0, 0, 0.06);
        transition: all 0.3s ease;
        display: flex;
        align-items: center;
        gap: 6px;
        box-shadow: 0 2px 8px rgba(0, 0, 0, 0.04);
    }
    
    .mobile-nav a:hover {
        background: #f1641e;
        color: white;
        transform: translateY(-2px);
        box-shadow: 0 4px 12px rgba(241, 100, 30, 0.15);
    }
    
    /* Collections - stacked */
    .collections-grid {
        grid-template-columns: 1fr;
        gap: 30px;
    }
    
    .collection {
        height: auto; /* Mbani auto për mobile */
        max-width: 500px;
        margin: 0 auto;
    }
    
    .section-title {
        font-size: 1.8rem;
        margin-bottom: 35px;
    }
    
    .collection-header {
        padding: 18px 20px;
    }
    
    .collection-title {
        font-size: 1.4rem;
    }
    
    .collection-description {
        font-size: 0.95rem;
    }
    
    .collection-products {
        grid-template-columns: repeat(2, 1fr);
        padding: 15px;
        gap: 12px;
    }
    
    .collection-product-image {
        height: 180px; /* Rritje për mobile */
    }
    
    .collection-product-title {
        font-size: 0.95rem;
        height: 38px;
    }
    
    .collection-footer {
        padding: 16px 20px;
    }
    
    /* Latest products - 3 columns on mobile landscape */
    .latest-products-grid {
        grid-template-columns: repeat(3, 1fr);
        gap: 15px;
        overflow-x: visible;
    }
    
    .latest-product-image {
        height: 140px;
    }
    
    .latest-product-title {
        font-size: 0.95rem;
        height: 40px;
    }
    
    .latest-product-description {
        font-size: 0.84rem;
        height: 36px;
    }
    
    .browse-btn,
    .view-all-btn {
        padding: 9px 22px;
        font-size: 0.9rem;
    }
    
    /* Shop specific mobile styles */
    .shop-welcome {
        padding: 25px 0 12px;
        min-height: 140px;
    }
    
    .shop-welcome-title {
        font-size: 1.4rem;
        margin-bottom: 3px;
    }
    
    .welcome-subtitle {
        font-size: 0.85rem;
    }
    
    .shop-nav-stats {
        flex-direction: column;
        gap: 10px;
        padding: 8px 12px;
        max-width: 400px;
    }
    
    .nav-stats-separator {
        display: none;
    }
    
    .filter-container {
        flex-direction: column;
        align-items: stretch;
        gap: 10px;
    }
    
    .category-filters {
        justify-content: center;
    }
    
    .sort-dropdown-container {
        align-self: center;
    }
    
    .products-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 15px;
    }
    
    /* Shipping form on mobile */
    .shipping-form {
        grid-template-columns: 1fr;
    }
    
    .shipping-form select,
    .shipping-form input {
        width: 100%;
    }
}

/* Mobile Portrait (up to 576px) */
@media (max-width: 576px) {
    .container {
        padding: 0 15px;
    }
    
    .about-artist {
        padding: 15px 0 35px;
    }
    
    .artist-info h1 {
        font-size: 1.8rem;
        margin-bottom: 15px;
    }
    
    .mobile-nav {
        gap: 10px;
        margin-bottom: 20px;
    }
    
    .mobile-nav a {
        padding: 6px 15px;
        font-size: 13px;
    }
    
    .artist-photo {
        max-width: 280px;
        margin: 20px auto;
    }
    
    .artist-info p {
        font-size: 1rem;
        line-height: 1.65;
        margin-bottom: 15px;
    }
    
    /* Store links - 2x2 grid */
    .store-links {
        grid-template-columns: repeat(2, 1fr);
        gap: 10px;
        margin-top: 20px;
    }
    
    .store-link {
        min-height: 70px;
        padding: 10px;
        font-size: 0.85rem;
    }
    
    /* Collection products - single column on very small screens */
    .collection-products {
        grid-template-columns: 1fr;
        gap: 10px;
    }
    
    .collection-product-image {
        height: 190px; /* Rritje për mobile portrait */
    }
    
    /* Latest products - 2 columns on mobile portrait */
    .latest-products-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 12px;
    }
    
    .latest-product-image {
        height: 130px;
    }
    
    .latest-product-info {
        padding: 15px;
    }
    
    .latest-product-title {
        font-size: 0.95rem;
        height: auto;
        margin-bottom: 6px;
    }
    
    .latest-product-description {
        height: auto;
        margin-bottom: 8px;
    }
    
    .section-title {
        font-size: 1.6rem;
        margin-bottom: 25px;
    }
    
    /* Shop specific */
    .shop-welcome {
        padding: 20px 0 10px;
        min-height: 130px;
    }
    
    .shop-welcome-title {
        font-size: 1.3rem;
    }
    
    .welcome-subtitle {
        font-size: 0.8rem;
    }
    
    .shop-nav-stats {
        padding: 6px 10px;
        max-width: 350px;
    }
    
    .nav-btn-tiny {
        padding: 4px 10px;
        font-size: 0.75rem;
        min-width: 60px;
    }
    
    .products-grid {
        grid-template-columns: 1fr;
        gap: 15px;
        max-width: 300px;
        margin-left: auto;
        margin-right: auto;
    }
    
    .shop-pagination .page-numbers {
        gap: 4px;
    }
    
    .shop-pagination a,
    .shop-pagination span {
        padding: 6px 10px;
        font-size: 0.8rem;
        min-width: 32px;
    }
}

/* Very small screens (up to 360px) */
@media (max-width: 360px) {
    .artist-info h1 {
        font-size: 1.6rem;
    }
    
    .mobile-nav a {
        padding: 5px 12px;
        font-size: 12px;
    }
    
    .artist-photo {
        max-width: 250px;
    }
    
    /* Store links - stacked on very small screens */
    .store-links {
        grid-template-columns: 1fr;
        gap: 8px;
    }
    
    .store-link {
        min-height: 65px;
        padding: 10px;
        font-size: 0.85rem;
    }
    
    .collection-title {
        font-size: 1.2rem;
    }
    
    .collection-product-title,
    .latest-product-title {
        font-size: 0.9rem;
    }
    
    .latest-products-grid {
        grid-template-columns: 1fr;
        gap: 10px;
    }
}

/* Large Desktop (1440px+) */
@media (min-width: 1440px) {
    .container {
        max-width: 1380px;
    }
    
    .artist-photo {
        flex: 0 0 400px;
    }
    
    .artist-info h1 {
        font-size: 2.8rem;
    }
    
    .products-grid {
        grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
        gap: 30px;
    }
}

/* Hide mobile nav on desktop */
@media (min-width: 769px) {
    .mobile-nav {
        display: none;
    }
}

/* Print styles */
@media print {
    .artist-nav,
    .mobile-nav,
    .store-links,
    .view-all-btn,
    .site-footer,
    .shop-nav-stats,
    .shop-filters,
    .etsy-product-actions {
        display: none;
    }
    
    body {
        background: white;
        color: black;
    }
    
    .about-artist,
    .shop-welcome {
        background: white !important;
    }
}

.product-gallery-wrapper {
    width: 100%;
    max-width: 600px;
    margin: 0 auto;
}

.main-product-image {
    height: 500px;
}

.main-product-img {
    object-fit: contain;
}

.product-count {
    font-size: 0.8em;
    color: #666;
    font-weight: normal;
    margin-left: 5px;
}


/* ======================================================= */
/* ===== SHOP PAGE ===== */
/* ======================================================= */

/* Additional styles for shop page */
.etsy-product-title-link {
    text-decoration: none;
    color: inherit;
    display: block;
}

.etsy-product-title-link:hover .etsy-product-title {
    color: #f1641e;
}

.etsy-product-title {
    font-size: 0.95rem;
    color: #222222;
    font-weight: 400;
    line-height: 1.4;
    margin-bottom: 8px;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
    min-height: 2.8em;
    flex-grow: 1;
    transition: color 0.3s ease;
}

/* Ensure button styles remain the same */
.etsy-add-to-cart[data-product-id] {
    display: block;
    width: 100%;
    background: #f1641e;
    color: white;
    padding: 10px 15px;
    border-radius: 6px;
    text-decoration: none;
    text-align: center;
    font-weight: 600;
    font-size: 0.9rem;
    border: none;
    cursor: pointer;
    transition: all 0.3s ease;
    font-family: inherit;
}

.etsy-add-to-cart[data-product-id]:hover {
    background: #d45600;
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(241, 100, 30, 0.15);
}

/* Modal styles - EXACTLY LIKE SINGLE-PRODUCT */
.cart-confirmation-modal {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.8);
    z-index: 9999;
    display: none;
    justify-content: center;
    align-items: center;
    padding: 20px;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.cart-confirmation-content {
    background: white;
    border-radius: 12px;
    width: 100%;
    max-width: 500px;
    overflow: hidden;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.2);
}

.cart-confirmation-header {
    background: #f1641e;
    color: white;
    padding: 20px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    position: relative;
}

.cart-confirmation-header i.fa-check-circle {
    font-size: 2rem;
    margin-right: 15px;
}

.cart-confirmation-header h3 {
    font-size: 1.3rem;
    font-weight: 500;
    margin: 0;
    flex-grow: 1;
}

.cart-confirmation-close {
    background: rgba(255, 255, 255, 0.2);
    border: none;
    color: white;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all 0.3s ease;
}

.cart-confirmation-close:hover {
    background: rgba(255, 255, 255, 0.3);
    transform: rotate(90deg);
}

.cart-confirmation-body {
    padding: 25px;
}

.confirmation-product {
    display: flex;
    gap: 20px;
    margin-bottom: 25px;
    padding-bottom: 20px;
    border-bottom: 1px solid #f0f0f0;
}

.confirmation-image {
    width: 100px;
    height: 100px;
    border-radius: 8px;
    overflow: hidden;
    background: #f9f9f9;
    flex-shrink: 0;
}

.confirmation-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.confirmation-details {
    flex-grow: 1;
}

.confirmation-details h4 {
    font-size: 1.1rem;
    color: #222;
    margin-bottom: 8px;
    font-weight: 500;
}

.confirmation-variation {
    font-size: 0.9rem;
    color: #666;
    margin-bottom: 5px;
}

.confirmation-variation span {
    font-weight: 500;
    color: #555;
}

.confirmation-quantity {
    font-size: 0.9rem;
    color: #666;
    margin-bottom: 5px;
}

.confirmation-price {
    font-size: 1.1rem;
    font-weight: 600;
    color: #f1641e;
}

.cart-confirmation-actions {
    display: grid;
    grid-template-columns: 1fr;
    gap: 10px;
}

.confirmation-btn {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    padding: 14px 20px;
    border-radius: 8px;
    text-decoration: none;
    font-weight: 600;
    font-size: 0.95rem;
    transition: all 0.3s ease;
    border: none;
    cursor: pointer;
    text-align: center;
}

.continue-btn {
    background: #f8f8f8;
    color: #555;
    border: 1px solid #e1e3df;
}

.continue-btn:hover {
    background: #e8e8e8;
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.05);
}

.view-cart-btn {
    background: #222222;
    color: white;
}

.view-cart-btn:hover {
    background: #000000;
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
}

.checkout-btn {
    background: #f1641e;
    color: white;
}

.checkout-btn:hover {
    background: #d45600;
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(241, 100, 30, 0.2);
}

.cart-confirmation-footer {
    padding: 15px 25px;
    background: #f8f9fa;
    text-align: center;
    font-size: 0.9rem;
    color: #666;
    border-top: 1px solid #e1e3df;
}

.cart-confirmation-footer p {
    margin: 0;
}

#shopCartItemsCount {
    font-weight: 600;
    color: #f1641e;
}

/* Responsive styles for modal */
@media (max-width: 768px) {
    .confirmation-product {
        flex-direction: column;
        align-items: center;
        text-align: center;
    }
    
    .confirmation-image {
        width: 120px;
        height: 120px;
    }
    
    .cart-confirmation-actions {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 480px) {
    .cart-confirmation-content {
        max-width: 100%;
    }
    
    .cart-confirmation-header {
        padding: 15px;
    }
    
    .cart-confirmation-body {
        padding: 20px 15px;
    }
}


/* ======================================================= */
/* ===== SINGLE PRODUCT PAGE ===== */
/* ======================================================= */

/* 9.1. BASE MOBILE OPTIMIZATION */
* {
    box-sizing: border-box;
}

body {
    overflow-x: hidden;
    max-width: 100vw;
}

.handmade-homepage {
    max-width: 100%;
    overflow-x: hidden;
}

.shop-welcome.mobile-optimized {
    min-height: auto;
    padding: 15px 0;
}

.shop-welcome.mobile-optimized .nav-buttons-group {
    display: flex;
    justify-content: center;
    gap: 10px;
    flex-wrap: wrap;
}

.nav-btn-tiny {
    padding: 8px 15px;
    font-size: 0.9rem;
}

.mobile-text {
    display: inline;
}

/* 9.2. PRODUCT PAGE LAYOUT */
.product-page-layout {
    display: flex;
    flex-direction: column;
    gap: 30px;
    padding: 0 15px;
    width: 100%;
}

@media (min-width: 992px) {
    .product-page-layout {
        flex-direction: row;
        gap: 50px;
        padding: 0;
    }
    
    .product-gallery-wrapper {
        flex: 1;
        max-width: 50%;
        position: sticky;
        top: 20px;
        align-self: flex-start;
    }
    
    .product-info-section {
        flex: 1;
        max-width: 50%;
    }
}

/* 9.3. GALLERY MOBILE OPTIMIZATION */
.product-gallery-wrapper {
    display: flex;
    flex-direction: column;
    gap: 15px;
    width: 100%;
    margin: 0 auto;
}

.main-gallery-container {
    width: 100%;
    position: relative;
}

.main-product-image {
    position: relative;
    width: 100%;
    height: auto;
    min-height: 300px;
    max-height: 70vh;
    border-radius: 12px;
    overflow: hidden;
    background: #f9f9f9;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto;
}

.main-product-image img {
    width: 100%;
    height: 100%;
    max-height: 70vh;
    object-fit: contain;
    transition: opacity 0.3s ease;
    display: block;
}

.main-product-img {
    width: 100% !important;
    height: 100% !important;
    object-fit: contain !important;
}

.gallery-nav-arrows {
    position: absolute;
    top: 50%;
    left: 0;
    right: 0;
    transform: translateY(-50%);
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0 15px;
    pointer-events: none;
    z-index: 10;
}

.gallery-arrow {
    background: rgba(255, 255, 255, 0.9);
    border: none;
    width: 45px;
    height: 45px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    pointer-events: auto;
    transition: all 0.3s ease;
    color: #333;
    font-size: 1.2rem;
    box-shadow: 0 2px 10px rgba(0,0,0,0.15);
    z-index: 20;
}

.gallery-arrow:hover {
    background: white;
    transform: scale(1.1);
    box-shadow: 0 4px 15px rgba(0,0,0,0.2);
}

.gallery-nav-arrows .prev-arrow,
.gallery-nav-arrows .next-arrow {
    opacity: 1 !important;
    visibility: visible !important;
    display: flex !important;
}

.image-counter {
    position: absolute;
    bottom: 15px;
    right: 15px;
    background: rgba(0, 0, 0, 0.7);
    color: white;
    padding: 5px 12px;
    border-radius: 20px;
    font-size: 0.9rem;
    font-weight: 500;
    z-index: 10;
}

/* 9.4. THUMBNAIL GALLERY WITH AUTO-SCROLL */
.thumbnail-gallery {
    display: flex;
    gap: 8px;
    overflow-x: auto;
    padding: 15px 0 10px 0;
    scrollbar-width: thin;
    -webkit-overflow-scrolling: touch;
    width: 100%;
    max-width: 100%;
    scroll-behavior: smooth;
    position: relative;
}

.thumbnail-item {
    flex: 0 0 70px;
    height: 70px;
    border-radius: 8px;
    overflow: hidden;
    cursor: pointer;
    border: 3px solid transparent;
    transition: all 0.3s ease;
    min-width: 70px;
    position: relative;
}

.thumbnail-item.active {
    border-color: #f1641e;
    box-shadow: 0 4px 12px rgba(241, 100, 30, 0.4);
    transform: scale(1.05);
}

.thumbnail-item.active::after {
    content: '';
    position: absolute;
    bottom: -6px;
    left: 50%;
    transform: translateX(-50%);
    width: 20px;
    height: 3px;
    background: #f1641e;
    border-radius: 2px;
}

.thumbnail-item:hover {
    transform: translateY(-2px) scale(1.05);
    box-shadow: 0 4px 12px rgba(0,0,0,0.15);
}

.thumbnail-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

/* Enhanced scrollbar styling */
.thumbnail-gallery::-webkit-scrollbar {
    height: 6px;
}

.thumbnail-gallery::-webkit-scrollbar-track {
    background: #f1f1f1;
    border-radius: 3px;
    margin: 0 10px;
}

.thumbnail-gallery::-webkit-scrollbar-thumb {
    background: #ccc;
    border-radius: 3px;
    transition: background 0.3s ease;
}

.thumbnail-gallery::-webkit-scrollbar-thumb:hover {
    background: #aaa;
}

/* Active thumbnail pulse animation */
@keyframes pulseActive {
    0% {
        box-shadow: 0 4px 12px rgba(241, 100, 30, 0.4);
    }
    50% {
        box-shadow: 0 4px 20px rgba(241, 100, 30, 0.6);
    }
    100% {
        box-shadow: 0 4px 12px rgba(241, 100, 30, 0.4);
    }
}

.thumbnail-item.active {
    animation: pulseActive 2s infinite;
}

@media (min-width: 768px) {
    .thumbnail-item {
        flex: 0 0 80px;
        height: 80px;
        min-width: 80px;
    }
    
    .thumbnail-item.active::after {
        bottom: -8px;
        height: 4px;
        width: 25px;
    }
}

/* 9.5. VIDEO THUMBNAIL */
.video-thumbnail-container {
    position: relative;
    cursor: pointer;
    border-radius: 10px;
    overflow: hidden;
    aspect-ratio: 1 / 1;
    width: 100%;
    max-width: 100%;
    margin-top: 15px;
}

.video-thumbnail-container::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.3);
    transition: background 0.3s ease;
}

.video-thumbnail-container:hover::after {
    background: rgba(0, 0, 0, 0.2);
}

.video-play-button {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 60px;
    height: 60px;
    background: rgba(255, 255, 255, 0.95);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 2;
    color: #f1641e;
    font-size: 1.5rem;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.15);
}

.video-thumbnail-container:hover .video-play-button {
    transform: translate(-50%, -50%) scale(1.1);
    background: white;
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.2);
}

.video-badge-label {
    position: absolute;
    bottom: 15px;
    left: 15px;
    background: rgba(0, 0, 0, 0.8);
    color: white;
    padding: 6px 12px;
    border-radius: 4px;
    font-size: 0.8rem;
    font-weight: 500;
    z-index: 2;
    display: flex;
    align-items: center;
    gap: 5px;
}

/* 9.6. PRODUCT INFORMATION */
.product-title-section h1 {
    font-size: 1.8rem;
    margin-bottom: 10px;
    line-height: 1.3;
    word-wrap: break-word;
    overflow-wrap: break-word;
    color: #222;
}

.product-maker {
    font-size: 0.9rem;
    color: #666;
    display: flex;
    align-items: center;
    gap: 8px;
    margin-bottom: 20px;
}

@media (min-width: 768px) {
    .product-title-section h1 {
        font-size: 2.2rem;
    }
}

/* 9.7. PRICE SECTION */
.product-price-section {
    margin: 20px 0;
    padding: 20px 0;
    border-top: 1px solid #f0f0f0;
    border-bottom: 1px solid #f0f0f0;
}

.etsy-price-display {
    display: flex;
    align-items: center;
    gap: 15px;
    margin-bottom: 8px;
    flex-wrap: wrap;
}

.main-price {
    font-size: 1.8rem;
    font-weight: 700;
    color: #222;
}

.sale-percentage {
    background: #f1641e;
    color: white;
    padding: 6px 14px;
    border-radius: 20px;
    font-size: 0.9rem;
    font-weight: 600;
}

.tax-shipping-note {
    font-size: 0.85rem;
    color: #666;
    font-style: italic;
}

@media (min-width: 768px) {
    .main-price {
        font-size: 2rem;
    }
}

/* 9.8. VARIANT SELECTION */
.variations-container {
    margin: 20px 0;
    padding: 20px 0;
    border-bottom: 1px solid #f0f0f0;
}

.variant-group {
    margin-bottom: 25px;
}

.variant-label {
    display: block;
    margin-bottom: 12px;
    font-weight: 600;
    color: #333;
    font-size: 1.1rem;
}

.variant-options {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
}

.variant-option {
    position: relative;
}

.variant-option input[type="radio"] {
    position: absolute;
    opacity: 0;
    width: 0;
    height: 0;
}

.variant-option label {
    display: inline-block;
    padding: 12px 20px;
    background: #f8f9fa;
    border: 2px solid #e9ecef;
    border-radius: 8px;
    cursor: pointer;
    transition: all 0.3s ease;
    font-size: 1rem;
    color: #555;
    min-width: 100px;
    text-align: center;
}

.variant-option input[type="radio"]:checked + label {
    background: #f1641e;
    color: white;
    border-color: #f1641e;
    box-shadow: 0 4px 12px rgba(241, 100, 30, 0.2);
    transform: translateY(-2px);
}

.variant-option label:hover {
    background: #e9ecef;
    transform: translateY(-2px);
    border-color: #ddd;
}

@media (max-width: 767px) {
    .variant-options {
        gap: 8px;
    }
    
    .variant-option label {
        padding: 10px 15px;
        min-width: 80px;
        font-size: 0.9rem;
    }
}

/* 9.9. ADD TO CART SECTION */
.add-to-cart-section {
    margin: 30px 0;
    padding: 25px 0;
    border-top: 1px solid #f0f0f0;
}

.shipping-note-simple {
    background: #f8f9fa;
    border-radius: 10px;
    padding: 15px;
    margin: 20px 0;
    display: flex;
    align-items: center;
    gap: 12px;
    color: #666666;
    font-size: 0.9rem;
    border: 1px solid #e1e3df;
}

.shipping-note-simple i {
    color: #f1641e;
    font-size: 1.2rem;
}

.quantity-selector {
    margin: 25px 0;
}

.quantity-label {
    display: block;
    margin-bottom: 12px;
    font-weight: 600;
    color: #333;
    font-size: 1.1rem;
}

.quantity-input {
    display: inline-flex;
    align-items: center;
    max-width: 180px;
    border: 2px solid #e1e3df;
    border-radius: 12px;
    overflow: hidden;
    background: #ffffff;
}


.quantity-btn {
    width: 48px;
    height: 48px;
    border: none;
    background: #f8f9fa;
    font-size: 1.4rem;
    cursor: pointer;
    transition: background 0.2s ease, color 0.2s ease;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #555;
}

.quantity-btn:hover {
    background: #f1641e;
    color: #ffffff;
}


.quantity-btn:hover {
    background: #f8f9fa;
    border-color: #f1641e;
    color: #f1641e;
}

.quantity-number {
    width: 70px;
    height: 48px;
    text-align: center;
    border: none;
    font-size: 1.1rem;
    font-weight: 600;
    outline: none;
    color: #222;
}

/* Chrome, Safari, Edge, Opera */
.quantity-number::-webkit-outer-spin-button,
.quantity-number::-webkit-inner-spin-button {
    -webkit-appearance: none;
    margin: 0;
}

/* Firefox */
.quantity-number[type=number] {
    -moz-appearance: textfield;
}



.add-to-cart-button {
    width: 100%;
    padding: 18px;
    background: #f1641e;
    color: white;
    border: none;
    border-radius: 12px;
    font-size: 1.2rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
    margin: 20px 0;
    box-shadow: 0 4px 15px rgba(241, 100, 30, 0.2);
}

.add-to-cart-button:hover {
    background: #d45600;
    transform: translateY(-3px);
    box-shadow: 0 8px 20px rgba(241, 100, 30, 0.3);
}

.wishlist-button {
    width: 100%;
    padding: 16px;
    background: #f8f9fa;
    color: #555;
    border: 2px solid #e1e3df;
    border-radius: 12px;
    font-size: 1.1rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
    margin-top: 15px;
}

.wishlist-button:hover {
    background: #e9ecef;
    border-color: #ddd;
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.05);
}

.wishlist-button.active {
    background: #fff5f5;
    color: #f1641e;
    border-color: #f1641e;
}

@media (min-width: 768px) {
    .add-to-cart-button {
        width: auto;
        min-width: 300px;
        display: inline-flex;
    }
    
    .wishlist-button {
        width: auto;
        min-width: 300px;
        display: inline-flex;
        margin-left: 20px;
    }
}

/* 9.10. OUT OF STOCK */
.out-of-stock-message {
    background: #fff5f5;
    color: #e53e3e;
    padding: 25px;
    border-radius: 12px;
    text-align: center;
    margin: 30px 0;
    display: flex;
    flex-direction: column;
    gap: 20px;
    border: 1px solid #fed7d7;
}

.out-of-stock-message i {
    font-size: 2.5rem;
    margin-bottom: 10px;
}

/* 9.11. PRODUCT DESCRIPTION */
.product-description {
    margin: 30px 0;
    padding: 30px 0;
    border-top: 1px solid #f0f0f0;
    border-bottom: 1px solid #f0f0f0;
}

.product-description p {
    line-height: 1.7;
    color: #555;
    font-size: 1rem;
    margin-bottom: 1.5em;
}

.product-description h2,
.product-description h3,
.product-description h4 {
    margin-top: 30px;
    margin-bottom: 15px;
    color: #222;
}

/* 9.12. PRODUCT META */
.product-meta-info {
    margin-top: 30px;
    padding-top: 25px;
    border-top: 1px solid #f0f0f0;
}

.meta-item {
    display: flex;
    align-items: center;
    gap: 15px;
    margin-bottom: 18px;
    font-size: 1rem;
    color: #555555;
}

.meta-item i {
    color: #f1641e;
    width: 24px;
    font-size: 1.1rem;
}

/* 9.13. RELATED PRODUCTS */
.related-products {
    margin-top: 60px;
    padding-top: 40px;
    border-top: 1px solid #f0f0f0;
}

.related-title {
    text-align: center;
    font-size: 1.8rem;
    margin-bottom: 40px;
    color: #222;
}

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

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

.etsy-product-card {
    background: white;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.05);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

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

.etsy-image-container {
    display: block;
    aspect-ratio: 1 / 1;
    overflow: hidden;
    background: #f9f9f9;
}

.etsy-image-container img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.etsy-product-card:hover .etsy-image-container img {
    transform: scale(1.05);
}

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

.etsy-product-title {
    font-size: 1rem;
    margin-bottom: 10px;
    color: #222;
    line-height: 1.4;
    height: 2.8em;
    overflow: hidden;
}

.etsy-product-price {
    margin-bottom: 15px;
}

.etsy-current-price {
    font-size: 1.2rem;
    font-weight: 700;
    color: #f1641e;
}

.etsy-add-to-cart {
    display: block;
    text-align: center;
    padding: 12px;
    background: #222;
    color: white;
    text-decoration: none;
    border-radius: 8px;
    font-weight: 600;
    transition: all 0.3s ease;
}

.etsy-add-to-cart:hover {
    background: #000;
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
}

/* 9.14. CART CONFIRMATION MODAL - IDENTIKE ME SHOP.PHP */
.cart-confirmation-modal {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.8);
    z-index: 9999;
    display: none;
    justify-content: center;
    align-items: center;
    padding: 20px;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.video-modal {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.9);
    z-index: 9999;
    display: none;
    justify-content: center;
    align-items: center;
    padding: 20px;
}

.cart-confirmation-content {
    background: white;
    border-radius: 12px;
    width: 100%;
    max-width: 500px;
    overflow: hidden;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.2);
    animation: modalSlideIn 0.3s ease;
}

.video-modal-content {
    background: transparent;
    width: 100%;
    max-width: 800px;
    position: relative;
}

@keyframes modalSlideIn {
    from {
        opacity: 0;
        transform: translateY(-20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.cart-confirmation-header {
    background: #f1641e;
    color: white;
    padding: 20px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    position: relative;
}

.cart-confirmation-header i.fa-check-circle {
    font-size: 2rem;
    margin-right: 15px;
}

.cart-confirmation-header h3 {
    font-size: 1.3rem;
    font-weight: 500;
    margin: 0;
    flex-grow: 1;
}

.cart-confirmation-close,
.video-modal-close {
    background: rgba(255, 255, 255, 0.2);
    border: none;
    color: white;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all 0.3s ease;
}

.cart-confirmation-close:hover,
.video-modal-close:hover {
    background: rgba(255, 255, 255, 0.3);
    transform: rotate(90deg);
}

.video-modal-close {
    position: absolute;
    top: -60px;
    right: 0;
    background: rgba(0, 0, 0, 0.7);
}

.cart-confirmation-body {
    padding: 25px;
}

.confirmation-product {
    display: flex;
    gap: 20px;
    margin-bottom: 25px;
    padding-bottom: 20px;
    border-bottom: 1px solid #f0f0f0;
}

.confirmation-image {
    width: 100px;
    height: 100px;
    border-radius: 8px;
    overflow: hidden;
    background: #f9f9f9;
    flex-shrink: 0;
}

.confirmation-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.confirmation-details {
    flex-grow: 1;
}

.confirmation-details h4 {
    font-size: 1.1rem;
    color: #222;
    margin-bottom: 8px;
    font-weight: 500;
}

.confirmation-variation {
    font-size: 0.9rem;
    color: #666;
    margin-bottom: 5px;
}

.confirmation-variation span {
    font-weight: 500;
    color: #555;
}

.confirmation-quantity {
    font-size: 0.9rem;
    color: #666;
    margin-bottom: 5px;
}

.confirmation-price {
    font-size: 1.1rem;
    font-weight: 600;
    color: #f1641e;
}

.cart-confirmation-actions {
    display: grid;
    grid-template-columns: 1fr;
    gap: 10px;
}

.confirmation-btn {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    padding: 14px 20px;
    border-radius: 8px;
    text-decoration: none;
    font-weight: 600;
    font-size: 0.95rem;
    transition: all 0.3s ease;
    border: none;
    cursor: pointer;
    text-align: center;
}

.continue-btn {
    background: #f8f8f8;
    color: #555;
    border: 1px solid #e1e3df;
}

.continue-btn:hover {
    background: #e8e8e8;
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.05);
}

.view-cart-btn {
    background: #222222;
    color: white;
}

.view-cart-btn:hover {
    background: #000000;
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
}

.checkout-btn {
    background: #f1641e;
    color: white;
}

.checkout-btn:hover {
    background: #d45600;
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(241, 100, 30, 0.2);
}

.cart-confirmation-footer {
    padding: 15px 25px;
    background: #f8f9fa;
    text-align: center;
    font-size: 0.9rem;
    color: #666;
    border-top: 1px solid #e1e3df;
}

.cart-confirmation-footer p {
    margin: 0;
}

#cartItemsCount {
    font-weight: 600;
    color: #f1641e;
}

/* 9.15. VIDEO MODAL */
#videoContainer video {
    width: 100%;
    height: auto;
    border-radius: 12px;
    background: #000;
}

/* 9.16. UTILITY CLASSES */
@media (max-width: 767px) {
    .mobile-hide-text {
        display: none;
    }
    
    .mobile-full-width {
        width: 100% !important;
    }
    
    .mobile-stack {
        flex-direction: column;
    }
    
    .mobile-center {
        text-align: center;
    }
    
    .video-modal-content {
        padding: 0 20px;
    }
}

/* 9.17. TOUCH FRIENDLY ELEMENTS */
@media (hover: none) and (pointer: coarse) {
    .gallery-arrow,
    .variant-option label,
    .quantity-btn,
    .add-to-cart-button,
    .wishlist-button,
    .confirmation-btn,
    .etsy-add-to-cart {
        min-height: 48px;
        min-width: 48px;
    }
    
    .thumbnail-item {
        min-width: 70px;
        min-height: 70px;
    }
    
    .variant-option label {
        padding: 12px 20px;
    }
    
    .gallery-arrow {
        width: 50px;
        height: 50px;
        font-size: 1.3rem;
    }
}

/* 9.18. MOBILE SPECIFIC FIXES */
@media (max-width: 767px) {
    .main-product-image {
        min-height: 350px;
        max-height: 60vh;
        border-radius: 8px;
    }
    
    .gallery-nav-arrows {
        padding: 0 10px;
    }
    
    .gallery-arrow {
        width: 40px;
        height: 40px;
        font-size: 1rem;
    }
    
    .image-counter {
        bottom: 10px;
        right: 10px;
        padding: 4px 10px;
        font-size: 0.8rem;
    }
    
    .product-page-layout {
        padding: 0 10px;
        gap: 25px;
    }
    
    .thumbnail-item {
        flex: 0 0 65px;
        height: 65px;
        min-width: 65px;
    }
    
    .thumbnail-item.active::after {
        bottom: -7px;
        height: 4px;
        width: 22px;
    }
    
    .related-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 15px;
    }
    
    .etsy-product-info {
        padding: 15px;
    }
    
    .etsy-product-title {
        font-size: 0.9rem;
    }
    
    .etsy-current-price {
        font-size: 1.1rem;
    }
    
    .confirmation-product {
        flex-direction: column;
        align-items: center;
        text-align: center;
    }
    
    .confirmation-image {
        width: 120px;
        height: 120px;
    }
}

/* 9.19. EXTRA MOBILE OPTIMIZATIONS */
@media (max-width: 480px) {
    .main-product-image {
        min-height: 300px;
        max-height: 50vh;
    }
    
    .thumbnail-item {
        flex: 0 0 60px;
        height: 60px;
        min-width: 60px;
    }
    
    .variant-options {
        gap: 6px;
    }
    
    .variant-option label {
        padding: 10px 12px;
        min-width: 70px;
        font-size: 0.85rem;
    }
    
    .add-to-cart-button,
    .wishlist-button {
        padding: 16px;
        font-size: 1.1rem;
    }
    
    .related-grid {
        grid-template-columns: 1fr;
    }
    
    .cart-confirmation-content {
        max-width: 100%;
    }
    
    .cart-confirmation-header {
        padding: 15px;
    }
    
    .cart-confirmation-body {
        padding: 20px 15px;
    }
}

/* 9.20. SWIPE INDICATORS FOR MOBILE */
.main-product-image::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 20px;
    width: 30px;
    height: 30px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 50%;
    transform: translateY(-50%);
    opacity: 0;
    transition: opacity 0.3s ease;
    pointer-events: none;
}

.main-product-image::after {
    content: '';
    position: absolute;
    top: 50%;
    right: 20px;
    width: 30px;
    height: 30px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 50%;
    transform: translateY(-50%);
    opacity: 0;
    transition: opacity 0.3s ease;
    pointer-events: none;
}

@media (max-width: 767px) {
    .main-product-image::before,
    .main-product-image::after {
        opacity: 0.3;
    }
}

/* 9.21. ENSURE ARROWS ARE ALWAYS VISIBLE */
.gallery-nav-arrows .prev-arrow,
.gallery-nav-arrows .next-arrow {
    opacity: 1 !important;
    visibility: visible !important;
    display: flex !important;
    background: rgba(255, 255, 255, 0.95) !important;
    border: 1px solid rgba(0, 0, 0, 0.1) !important;
}

/* 9.22. HORIZONTAL SCROLL PREVENTION */
html, body {
    overflow-x: hidden;
    position: relative;
}

.handmade-homepage {
    overflow-x: hidden;
    width: 100%;
}

/* 9.23. SAFE AREA FOR NOTCHED PHONES */
@supports (padding: max(0px)) {
    .product-page-layout,
    .single-product-container {
        padding-left: max(15px, env(safe-area-inset-left));
        padding-right: max(15px, env(safe-area-inset-right));
    }
    
    .main-product-image {
        margin-left: max(0px, env(safe-area-inset-left) * -1);
        margin-right: max(0px, env(safe-area-inset-right) * -1);
        width: calc(100% + max(0px, env(safe-area-inset-left)) + max(0px, env(safe-area-inset-right)));
    }
}

/* 9.24. FINAL TOUCHES FOR GALLERY */
.main-product-image {
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
}


/* ======================================================= */
/* ===== CART PAGE ===== */
/* ======================================================= */

/* CART PAGE STYLES - ETSY STYLE */

/* Cart Layout */
.cart-page-layout {
    display: grid;
    grid-template-columns: 1fr 350px;
    gap: 30px;
    margin-top: 20px;
}

/* Cart Items Section */
.cart-items-section {
    background: white;
    border-radius: 12px;
    padding: 25px;
    border: 1px solid #e1e3df;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.05);
}

.cart-items-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 25px;
    padding-bottom: 15px;
    border-bottom: 1px solid #f0f0f0;
}

.cart-items-header h2 {
    font-size: 1.4rem;
    color: #222222;
    font-weight: 600;
    margin: 0;
}

.update-cart-btn {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    padding: 8px 16px;
    background: #f8f8f8;
    color: #555555;
    border: 1px solid #e1e3df;
    border-radius: 20px;
    text-decoration: none;
    font-size: 0.85rem;
    font-weight: 500;
    transition: all 0.3s ease;
    border: none;
    cursor: pointer;
    font-family: inherit;
}

.update-cart-btn:hover {
    background: #f1641e;
    color: white;
    border-color: #f1641e;
}

/* Cart Item Card */
.cart-item-card {
    display: grid;
    grid-template-columns: 120px 1fr 120px;
    gap: 20px;
    padding: 20px;
    border: 1px solid #f0f0f0;
    border-radius: 10px;
    margin-bottom: 15px;
    transition: all 0.3s ease;
    background: white;
}

.cart-item-card:hover {
    border-color: #e1e3df;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.05);
    transform: translateY(-2px);
}

.cart-item-image {
    width: 120px;
    height: 120px;
    border-radius: 8px;
    overflow: hidden;
    background: #f9f9f9;
}

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

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

.cart-item-details {
    flex-grow: 1;
}

.cart-item-title {
    font-size: 1.1rem;
    color: #222222;
    margin-bottom: 10px;
    font-weight: 600;
    line-height: 1.4;
}

.cart-item-title a {
    color: inherit;
    text-decoration: none;
    transition: color 0.3s ease;
}

.cart-item-title a:hover {
    color: #f1641e;
}

.cart-item-meta {
    display: flex;
    gap: 15px;
    margin-bottom: 15px;
}

.cart-item-maker,
.cart-item-sale {
    display: flex;
    align-items: center;
    gap: 5px;
    font-size: 0.85rem;
    color: #666666;
    font-weight: 500;
}

.cart-item-maker i {
    color: #2a5c8b;
}

.cart-item-sale {
    color: #f1641e;
}

.cart-item-sale i {
    font-size: 0.8rem;
}

.cart-item-quantity {
    display: flex;
    align-items: center;
    gap: 20px;
    margin-top: 15px;
}

.cart-item-quantity .quantity {
    display: flex;
    align-items: center;
    border: 1px solid #ddd;
    border-radius: 6px;
    overflow: hidden;
    background: white;
}

.cart-item-quantity .qty {
    width: 60px;
    height: 40px;
    text-align: center;
    border: none;
    border-left: 1px solid #ddd;
    border-right: 1px solid #ddd;
    font-size: 1rem;
    font-weight: 500;
    color: #222;
}

.cart-item-quantity .qty:focus {
    outline: none;
    background: #f9f9f9;
}

.cart-item-remove a {
    display: inline-flex;
    align-items: center;
    gap: 5px;
    color: #e53e3e;
    text-decoration: none;
    font-size: 0.85rem;
    font-weight: 500;
    transition: all 0.3s ease;
    padding: 8px 12px;
    border-radius: 6px;
    background: #fff5f5;
    border: 1px solid #fed7d7;
}

.cart-item-remove a:hover {
    background: #fed7d7;
    color: #c53030;
}

.cart-item-price {
    text-align: right;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.price-amount {
    font-size: 1.2rem;
    color: #222222;
    font-weight: 600;
    margin-bottom: 5px;
}

.price-subtotal {
    font-size: 1rem;
    color: #666666;
    font-weight: 500;
}

/* Cart Actions */
.cart-actions {
    display: flex;
    justify-content: space-between;
    margin-top: 30px;
    padding-top: 20px;
    border-top: 1px solid #f0f0f0;
}

.continue-shopping-btn,
.update-cart-full-btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 12px 24px;
    border-radius: 6px;
    text-decoration: none;
    font-weight: 600;
    font-size: 0.95rem;
    transition: all 0.3s ease;
    border: none;
    cursor: pointer;
    font-family: inherit;
}

.continue-shopping-btn {
    background: #f8f8f8;
    color: #555555;
    border: 1px solid #e1e3df;
}

.continue-shopping-btn:hover {
    background: #e8e8e8;
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.05);
}

.update-cart-full-btn {
    background: #222222;
    color: white;
}

.update-cart-full-btn:hover {
    background: #000000;
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
}

/* Order Summary */
.order-summary-section {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.order-summary-card {
    background: white;
    border-radius: 12px;
    padding: 25px;
    border: 1px solid #e1e3df;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.05);
}

.order-summary-title {
    font-size: 1.3rem;
    color: #222222;
    margin-bottom: 25px;
    display: flex;
    align-items: center;
    gap: 10px;
    font-weight: 600;
}

.order-summary-details {
    margin-bottom: 25px;
}

.summary-row {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 12px 0;
    border-bottom: 1px solid #f8f8f8;
}

.summary-label {
    color: #666666;
    font-size: 0.95rem;
}

.summary-value {
    color: #222222;
    font-weight: 500;
}

.total-row {
    border-top: 2px solid #f0f0f0;
    margin-top: 10px;
    padding-top: 15px;
    border-bottom: none;
}

.total-row .summary-label {
    font-size: 1.1rem;
    font-weight: 600;
    color: #222222;
}

.total-row .summary-value {
    font-size: 1.3rem;
    font-weight: 700;
    color: #f1641e;
}

/* Shipping Note */
.shipping-note {
    background: #f0f7ff;
    border-radius: 8px;
    padding: 15px;
    margin: 20px 0;
    display: flex;
    align-items: center;
    gap: 10px;
    color: #2a5c8b;
    font-size: 0.9rem;
    font-weight: 500;
}

.shipping-note i {
    font-size: 1.1rem;
}

/* Checkout Action */
.checkout-action {
    margin-top: 25px;
}

.checkout-btn {
    display: block;
    width: 100%;
    background: #f1641e;
    color: white;
    padding: 16px;
    border-radius: 8px;
    text-decoration: none;
    text-align: center;
    font-weight: 600;
    font-size: 1.1rem;
    transition: all 0.3s ease;
    border: none;
    margin-bottom: 15px;
    cursor: pointer;
    font-family: inherit;
}

.checkout-btn:hover {
    background: #d45600;
    transform: translateY(-3px);
    box-shadow: 0 6px 20px rgba(241, 100, 30, 0.2);
}

.secure-checkout-note {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    color: #666666;
    font-size: 0.85rem;
    margin-top: 10px;
}

.secure-checkout-note i {
    color: #2a5c8b;
}

/* Payment Methods */
.payment-methods {
    margin-top: 25px;
    padding-top: 20px;
    border-top: 1px solid #f0f0f0;
    text-align: center;
}

.payment-methods-title {
    color: #666666;
    font-size: 0.9rem;
    margin-bottom: 10px;
    font-weight: 500;
}

.payment-icons {
    display: flex;
    justify-content: center;
    gap: 15px;
    font-size: 1.8rem;
    color: #555555;
}

.payment-icons i {
    opacity: 0.8;
    transition: opacity 0.3s ease;
}

.payment-icons i:hover {
    opacity: 1;
}

/* Trust Badges */
.trust-badges {
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.trust-badge {
    display: flex;
    align-items: center;
    gap: 15px;
    padding: 15px;
    background: white;
    border-radius: 8px;
    border: 1px solid #e1e3df;
    transition: all 0.3s ease;
}

.trust-badge:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.05);
}

.trust-badge i {
    font-size: 1.5rem;
    color: #f1641e;
    width: 40px;
    text-align: center;
}

.trust-badge-content {
    flex-grow: 1;
}

.trust-badge-title {
    font-weight: 600;
    color: #222222;
    margin-bottom: 3px;
    font-size: 0.95rem;
}

.trust-badge-desc {
    font-size: 0.85rem;
    color: #666666;
}

/* Empty Cart Section */
.empty-cart-section {
    text-align: center;
    padding: 50px 20px;
    background: white;
    border-radius: 12px;
    border: 1px solid #e1e3df;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.05);
}

.empty-cart-content {
    max-width: 500px;
    margin: 0 auto;
}

.empty-cart-icon {
    font-size: 4rem;
    color: #f1641e;
    margin-bottom: 20px;
    opacity: 0.8;
}

.empty-cart-content h2 {
    font-size: 1.8rem;
    color: #222222;
    margin-bottom: 15px;
    font-weight: 600;
}

.empty-cart-content p {
    color: #666666;
    font-size: 1rem;
    line-height: 1.6;
    margin-bottom: 25px;
}

.browse-btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 12px 30px;
    background: #f1641e;
    color: white;
    border-radius: 6px;
    text-decoration: none;
    font-weight: 600;
    font-size: 1rem;
    transition: all 0.3s ease;
    border: none;
    cursor: pointer;
}

.browse-btn:hover {
    background: #d45600;
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(241, 100, 30, 0.2);
}

/* Animation for cart items */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.cart-item-card {
    animation: fadeInUp 0.5s ease forwards;
    opacity: 0;
}

.cart-item-card:nth-child(1) { animation-delay: 0.1s; }
.cart-item-card:nth-child(2) { animation-delay: 0.2s; }
.cart-item-card:nth-child(3) { animation-delay: 0.3s; }
.cart-item-card:nth-child(4) { animation-delay: 0.4s; }
.cart-item-card:nth-child(5) { animation-delay: 0.5s; }

/* Responsive styles for cart page */
@media (max-width: 1024px) {
    .cart-page-layout {
        grid-template-columns: 1fr;
        gap: 20px;
    }
}

@media (max-width: 768px) {
    .cart-item-card {
        grid-template-columns: 1fr;
        gap: 15px;
        text-align: center;
    }
    
    .cart-item-image {
        width: 100%;
        height: 200px;
        margin: 0 auto;
    }
    
    .cart-item-meta {
        justify-content: center;
    }
    
    .cart-item-quantity {
        justify-content: center;
        flex-wrap: wrap;
    }
    
    .cart-item-price {
        text-align: center;
    }
    
    .cart-actions {
        flex-direction: column;
        gap: 10px;
    }
    
    .cart-items-header {
        flex-direction: column;
        align-items: flex-start;
        gap: 10px;
    }
    
    .cart-items-header h2 {
        font-size: 1.2rem;
    }
}

@media (max-width: 576px) {
    .cart-items-section,
    .order-summary-card {
        padding: 15px;
    }
    
    .cart-item-card {
        padding: 15px;
    }
    
    .empty-cart-icon {
        font-size: 3rem;
    }
    
    .empty-cart-content h2 {
        font-size: 1.5rem;
    }
}

/* Hide Update Cart buttons (keep them for WooCommerce logic) */
button[name="update_cart"],
input[name="update_cart"] {
    display: none !important;
}


/* ======================================================= */
/* ===== CHECKOUT PAGE ===== */
/* ======================================================= */

/* CHECKOUT PAGE STYLES - ETSY STYLE */

/* SHOW ONLY IMPORTANT NOTICES */
.woocommerce-notices-wrapper {
    display: block !important;
    margin-bottom: 20px;
}

/* Hide only certain notices if needed */
.woocommerce-message.woocommerce-message--info,
.woocommerce-info {
    display: none !important;
}

/* Keep error messages visible */
.woocommerce-error {
    display: block !important;
    background: #f8d7da;
    color: #721c24;
    padding: 15px;
    border-radius: 8px;
    margin-bottom: 20px;
    border: 1px solid #f5c6cb;
}


.woocommerce-info { display:none }
.woocommerce-message--info { display:none }


/* (Ruani të gjitha CSS e ekzistueshme tjetër) */

/* Style for hidden order_review */


/* Ensure payment methods display correctly */
.wc_payment_methods {
    list-style: none;
    padding: 0;
    margin: 0;
}

.wc_payment_method {
    margin-bottom: 15px;
    padding-bottom: 15px;
    border-bottom: 1px solid #e1e3df;
}

.wc_payment_method:last-child {
    margin-bottom: 0;
    padding-bottom: 0;
    border-bottom: none;
}

.wc_payment_method label {
    display: flex;
    align-items: center;
    gap: 10px;
    cursor: pointer;
    font-weight: 500;
    color: #222;
}

.wc_payment_method input[type="radio"] {
    margin-right: 8px;
}

.payment_box {
    background: white;
    border-radius: 6px;
    padding: 15px;
    margin-top: 10px;
    border: 1px solid #e1e3df;
}

/* PayPal specific styling */
.payment_method_paypal img,
.payment_method_ppec_paypal img {
    max-height: 25px;
    vertical-align: middle;
    margin-left: 10px;
}

/* (Ruani të gjithë CSS tjetër ekzistues) */


/* =========================================== */
/* HIDE CART NOTICES IN CHECKOUT PAGE */
/* =========================================== */

/* Hide all cart-related success messages in checkout */
.woocommerce-message a.added_to_cart,
.woocommerce-message .button.wc-forward,
.woocommerce-message[role="alert"] {
    display: none !important;
}

/* Hide the entire message if it only contains cart links */
.woocommerce-message:has(a.added_to_cart),
.woocommerce-message:has(a.wc-forward[href*="cart"]) {
    display: none !important;
}

/* Alternative: Hide all non-error notices in checkout */
.checkout-page-layout .woocommerce-notices-wrapper .woocommerce-message:not(.woocommerce-error) {
    display: none !important;
}




/* Hide product list and totals but keep payment methods */
#order_review table.woocommerce-checkout-review-order-table thead,
#order_review table.woocommerce-checkout-review-order-table tbody,
#order_review table.woocommerce-checkout-review-order-table tfoot tr:not(.order-total) {
    display: none !important;
}

/* Alternatively, hide specific sections */
#order_review .shop_table .cart_item,
#order_review .shop_table .cart-subtotal,
#order_review .shop_table .shipping,
#order_review .shop_table .tax-rate {
    display: none !important;
}

/* But keep the order total row */
#order_review .shop_table .order-total {
    display: table-row !important;
}


/* CHECKOUT PAGE STYLES - ETSY STYLE */


/* Checkout Layout */
.checkout-page-layout {
    display: grid;
    grid-template-columns: 1fr 380px;
    gap: 30px;
    margin-top: 20px;
}

/* Checkout Progress Steps */
.checkout-progress-steps {
    display: flex;
    justify-content: center;
    align-items: center;
    margin-top: 30px;
    padding: 20px 0;
}

.progress-step {
    display: flex;
    flex-direction: column;
    align-items: center;
    position: relative;
    flex: 1;
}

.progress-step .step-icon {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    background: #f8f8f8;
    border: 2px solid #e1e3df;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #999;
    font-size: 1.2rem;
    margin-bottom: 10px;
    transition: all 0.3s ease;
}

.progress-step .step-label {
    font-size: 0.9rem;
    color: #999;
    font-weight: 500;
}

.progress-step .step-line {
    position: absolute;
    top: 25px;
    left: 60%;
    width: 80%;
    height: 2px;
    background: #e1e3df;
    z-index: -1;
}

.progress-step:last-child .step-line {
    display: none;
}

.progress-step.completed .step-icon {
    background: #f1641e;
    border-color: #f1641e;
    color: white;
}

.progress-step.completed .step-label {
    color: #f1641e;
}

.progress-step.completed .step-line {
    background: #f1641e;
}

.progress-step.active .step-icon {
    background: white;
    border-color: #f1641e;
    color: #f1641e;
    box-shadow: 0 4px 12px rgba(241, 100, 30, 0.2);
}

.progress-step.active .step-label {
    color: #222;
    font-weight: 600;
}

/* Checkout Form */
.checkout-left-column {
    background: white;
    border-radius: 12px;
    padding: 25px;
    border: 1px solid #e1e3df;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.05);
}

.checkout-form-section {
    margin-bottom: 30px;
}

.checkout-form-section:last-child {
    margin-bottom: 0;
}

.checkout-form-section h3 {
    font-size: 1.3rem;
    color: #222;
    margin-bottom: 20px;
    display: flex;
    align-items: center;
    gap: 12px;
    padding-bottom: 15px;
    border-bottom: 1px solid #f0f0f0;
}

.checkout-form-section h4 {
    font-size: 1.1rem;
    color: #222;
    margin-bottom: 15px;
    display: flex;
    align-items: center;
    gap: 10px;
}

/* Contact Information Section - EXACTLY LIKE FIRST/LAST NAME */
.contact-fields-wrapper {
    margin-top: 10px;
}

.contact-fields-wrapper .woocommerce-billing-fields__field-wrapper {
    display: flex;
    gap: 4%;
}

.contact-fields-wrapper .form-row {
    width: 48%;
    float: none;
    margin-bottom: 20px;
    clear: none;
}

.contact-fields-wrapper .form-row-first {
    margin-right: 4%;
}

.contact-fields-wrapper .form-row-last {
    margin-right: 0;
}

.contact-fields-wrapper label {
    display: block;
    margin-bottom: 8px;
    font-weight: 500;
    color: #333;
    font-size: 0.9rem;
}

.contact-fields-wrapper label .required {
    color: #f1641e;
}

.contact-fields-wrapper label .optional {
    color: #666;
    font-size: 0.85rem;
    font-weight: normal;
}

.contact-fields-wrapper .input-text {
    width: 100%;
    padding: 12px 15px;
    border: 1px solid #e1e3df;
    border-radius: 8px;
    font-family: inherit;
    font-size: 0.95rem;
    transition: all 0.3s ease;
    background: #f8f9fa;
    box-sizing: border-box;
}

.contact-fields-wrapper .input-text:focus {
    outline: none;
    border-color: #f1641e;
    background: white;
    box-shadow: 0 0 0 3px rgba(241, 100, 30, 0.1);
}

/* Shipping Different Address */
.shipping-different-address {
    padding: 20px;
    background: #f8f9fa;
    border-radius: 8px;
    border: 1px solid #e1e3df;
}

.shipping-different-address-toggle {
    margin-bottom: 0;
}

.shipping-different-address-toggle label {
    display: flex;
    align-items: center;
    gap: 10px;
    cursor: pointer;
    font-weight: 500;
    color: #333;
    margin-bottom: 0;
}

.shipping-different-address-toggle input[type="checkbox"] {
    margin-right: 8px;
    width: auto;
}

.shipping-different-address-toggle i {
    color: #f1641e;
}

.shipping-address-fields {
    margin-top: 20px;
    padding-top: 20px;
    border-top: 1px solid #e1e3df;
}

/* WooCommerce Form Styles */
.woocommerce-checkout .form-row {
    margin-bottom: 20px;
}

.woocommerce-checkout label {
    display: block;
    margin-bottom: 8px;
    font-weight: 500;
    color: #333;
    font-size: 0.9rem;
}

.woocommerce-checkout label .required {
    color: #f1641e;
}

.woocommerce-checkout label .optional {
    color: #666;
    font-size: 0.85rem;
    font-weight: normal;
}

.woocommerce-checkout .input-text,
.woocommerce-checkout select,
.woocommerce-checkout textarea {
    width: 100%;
    padding: 12px 15px;
    border: 1px solid #e1e3df;
    border-radius: 8px;
    font-family: inherit;
    font-size: 0.95rem;
    transition: all 0.3s ease;
    background: #f8f9fa;
    box-sizing: border-box;
}

.woocommerce-checkout .input-text:focus,
.woocommerce-checkout select:focus,
.woocommerce-checkout textarea:focus {
    outline: none;
    border-color: #f1641e;
    background: white;
    box-shadow: 0 0 0 3px rgba(241, 100, 30, 0.1);
}

.woocommerce-checkout .form-row.form-row-first,
.woocommerce-checkout .form-row.form-row-last {
    width: 48%;
    float: left;
    margin-right: 4%;
    clear: none;
}

.woocommerce-checkout .form-row.form-row-last {
    margin-right: 0;
    float: right;
}

.woocommerce-checkout .form-row.form-row-wide {
    width: 100%;
    clear: both;
}

/* Hide default WooCommerce coupon form */
.woocommerce-form-coupon-toggle {
    display: none !important;
}

/* Hide radio buttons in shipping methods */
.shipping-methods-list input[type="radio"] {
    display: none !important;
}

/* Right Column */
.checkout-right-column {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.order-items-summary {
    background: white;
    border-radius: 12px;
    padding: 25px;
    border: 1px solid #e1e3df;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.05);
}

.summary-title {
    font-size: 1.2rem;
    color: #222;
    margin-bottom: 20px;
    display: flex;
    align-items: center;
    gap: 10px;
}

.order-items-list {
    max-height: 300px;
    overflow-y: auto;
    margin-bottom: 20px;
    padding-right: 10px;
}

.order-item {
    display: flex;
    gap: 15px;
    padding: 15px 0;
    border-bottom: 1px solid #f8f8f8;
}

.order-item:last-child {
    border-bottom: none;
}

.order-item-image {
    width: 60px;
    height: 60px;
    border-radius: 8px;
    overflow: hidden;
    background: #f9f9f9;
    flex-shrink: 0;
}

.order-item-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.order-item-details {
    flex: 1;
}

.order-item-title {
    font-size: 0.95rem;
    color: #222;
    margin-bottom: 5px;
    line-height: 1.4;
}

.order-item-meta {
    display: flex;
    justify-content: space-between;
    font-size: 0.85rem;
    color: #666;
}

.item-quantity {
    font-weight: 500;
}

.item-price {
    font-weight: 600;
    color: #f1641e;
}

/* Shipping Method Section - SIMPLIFIED VERSION */
.shipping-method-section {
    margin-top: 0;
    margin-bottom: 20px;
    padding: 20px;
    background: #f8f9fa;
    border-radius: 8px;
}

.shipping-method-section h4 {
    font-size: 1.1rem;
    color: #222;
    margin-bottom: 15px;
    display: flex;
    align-items: center;
    gap: 10px;
}

.shipping-methods-list ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.shipping-methods-list li {
    padding: 12px 15px;
    background: white;
    border: 2px solid #e1e3df;
    border-radius: 8px;
    margin-bottom: 10px;
    transition: all 0.3s ease;
    cursor: pointer;
    min-height: 60px; /* Increased by ~3mm */
    height: 60px;
    display: flex;
    align-items: center;
}

.shipping-methods-list li:hover {
    border-color: #ccc;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.05);
}

.shipping-methods-list li.selected {
    border-color: #f1641e;
    background: #fef6f2;
    box-shadow: 0 3px 10px rgba(241, 100, 30, 0.1);
}

.shipping-methods-list label {
    cursor: pointer;
    margin: 0;
    display: flex;
    align-items: center;
    gap: 12px;
    width: 100%;
    height: 100%;
}

.shipping-method-content {
    flex: 1;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.shipping-method-title {
    font-weight: 600;
    color: #222;
    font-size: 0.95rem;
    margin: 0;
}

.shipping-method-price {
    font-weight: 700;
    color: #f1641e;
    font-size: 1rem;
    margin: 0;
}

/* Small text inside button - delivery time info */
.shipping-method-delivery {
    display: block;
    font-size: 0.75rem;
    color: #666;
    margin-top: 2px;
    font-weight: normal;
}

/* Remove the radio button indicator */
.shipping-method-content::before {
    display: none;
}

/* Remove all tooltip styles */
.shipping-method-tooltip {
    display: none;
}

/* Order Totals */
.order-totals-summary {
    margin: 0 0 20px 0;
    padding: 20px;
    background: #f8f9fa;
    border-radius: 8px;
    position: relative;
}

.order-totals-summary.updating::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(255, 255, 255, 0.8);
    border-radius: 8px;
    z-index: 1;
}

.order-totals-summary.updating::after {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 20px;
    height: 20px;
    border: 3px solid #f3f3f3;
    border-top: 3px solid #f1641e;
    border-radius: 50%;
    animation: spin 1s linear infinite;
    z-index: 2;
}

@keyframes spin {
    0% { transform: translate(-50%, -50%) rotate(0deg); }
    100% { transform: translate(-50%, -50%) rotate(360deg); }
}

.total-row {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 10px 0;
    border-bottom: 1px solid #e9ecef;
    position: relative;
    z-index: 3;
}

.total-row:last-child {
    border-bottom: none;
}

.total-label {
    color: #666;
    font-size: 0.95rem;
}

.total-value {
    color: #222;
    font-weight: 500;
}

.grand-total {
    border-top: 2px solid #e9ecef;
    margin-top: 10px;
    padding-top: 15px;
}

.grand-total .total-label {
    font-size: 1.1rem;
    font-weight: 600;
    color: #222;
}

.grand-total .total-value {
    font-size: 1.3rem;
    font-weight: 700;
    color: #f1641e;
}

/* Coupon Section */
.coupon-section-checkout {
    margin: 0 0 20px 0;
    padding: 20px;
    background: #f8f9fa;
    border-radius: 8px;
    border: 1px dashed #e1e3df;
}

.coupon-toggle {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 0.95rem;
    color: #333;
    cursor: pointer;
}

.coupon-toggle i {
    color: #f1641e;
}

.coupon-toggle a {
    color: #2a5c8b;
    text-decoration: none;
    font-weight: 500;
}

.coupon-toggle a:hover {
    text-decoration: underline;
}

.coupon-form {
    margin-top: 15px;
    padding-top: 15px;
    border-top: 1px solid #e1e3df;
}

.coupon-form p {
    margin-bottom: 12px;
    color: #666;
    font-size: 0.9rem;
}

.coupon-input-group {
    display: flex;
    gap: 10px;
}

.coupon-code-input {
    flex: 1;
    padding: 12px 15px;
    border: 1px solid #e1e3df;
    border-radius: 8px;
    font-size: 0.95rem;
    background: white;
}

.coupon-code-input:focus {
    outline: none;
    border-color: #f1641e;
    box-shadow: 0 0 0 3px rgba(241, 100, 30, 0.1);
}

.apply-coupon-btn {
    background: #222;
    color: white;
    border: none;
    padding: 12px 20px;
    border-radius: 8px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    white-space: nowrap;
}

.apply-coupon-btn:hover {
    background: #444;
    transform: translateY(-2px);
}

/* Payment Methods */
.payment-methods-section {
    margin-top: 0;
    padding-top: 20px;
    border-top: 1px solid #f0f0f0;
}

.payment-methods-header {
    margin-bottom: 20px;
}

.payment-methods-header h4 {
    font-size: 1.1rem;
    color: #222;
    display: flex;
    align-items: center;
    gap: 10px;
}

.woocommerce-checkout-payment {
    background: #f8f9fa;
    border-radius: 8px;
    padding: 20px;
    margin-bottom: 15px;
}

.wc_payment_methods {
    list-style: none;
    padding: 0;
    margin: 0;
}

.wc_payment_method {
    margin-bottom: 15px;
    padding-bottom: 15px;
    border-bottom: 1px solid #e1e3df;
}

.wc_payment_method:last-child {
    margin-bottom: 0;
    padding-bottom: 0;
    border-bottom: none;
}

.wc_payment_method label {
    display: flex;
    align-items: center;
    gap: 10px;
    cursor: pointer;
    font-weight: 500;
    color: #222;
}

.wc_payment_method input[type="radio"] {
    margin-right: 8px;
}

.payment_box {
    background: white;
    border-radius: 6px;
    padding: 15px;
    margin-top: 10px;
    border: 1px solid #e1e3df;
}

/* Payment Icons */
.payment-icons {
    display: flex;
    justify-content: center;
    gap: 20px;
    font-size: 2rem;
    color: #555;
    padding: 15px;
    background: white;
    border-radius: 8px;
    border: 1px solid #e1e3df;
    margin-top: 15px;
}

/* Place Order Section */
.place-order-section {
    margin-top: 25px;
    padding-top: 20px;
    border-top: 1px solid #f0f0f0;
}

.place-order-btn {
    display: block;
    width: 100%;
    background: #f1641e;
    color: white;
    padding: 18px;
    border-radius: 8px;
    border: none;
    font-weight: 600;
    font-size: 1.1rem;
    cursor: pointer;
    transition: all 0.3s ease;
    margin-bottom: 15px;
}

.place-order-btn:hover {
    background: #d45600;
    transform: translateY(-3px);
    box-shadow: 0 6px 20px rgba(241, 100, 30, 0.2);
}

.secure-checkout-note {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    color: #666;
    font-size: 0.85rem;
    margin-bottom: 15px;
}

.return-policy-note {
    text-align: center;
    font-size: 0.8rem;
    color: #888;
    line-height: 1.5;
}

.return-policy-note a {
    color: #2a5c8b;
    text-decoration: none;
}

.return-policy-note a:hover {
    text-decoration: underline;
}

/* Trust Badges */
.trust-badges-checkout {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.trust-badge {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 12px;
    background: white;
    border-radius: 8px;
    border: 1px solid #e1e3df;
}

.trust-badge i {
    font-size: 1.2rem;
    color: #f1641e;
    width: 30px;
    text-align: center;
}

.trust-badge-content {
    flex: 1;
}

.trust-badge-title {
    font-weight: 600;
    color: #222;
    margin-bottom: 2px;
    font-size: 0.9rem;
}

.trust-badge-desc {
    font-size: 0.8rem;
    color: #666;
}

/* Responsive */
@media (max-width: 1024px) {
    .checkout-page-layout {
        grid-template-columns: 1fr;
        gap: 25px;
    }
}

@media (max-width: 768px) {
    .woocommerce-checkout .form-row.form-row-first,
    .woocommerce-checkout .form-row.form-row-last {
        width: 100%;
        float: none;
        margin-right: 0;
    }
    
    .contact-fields-wrapper .woocommerce-billing-fields__field-wrapper {
        flex-direction: column;
        gap: 0;
    }
    
    .contact-fields-wrapper .form-row {
        width: 100%;
        margin-right: 0;
    }
    
    .checkout-left-column,
    .order-items-summary {
        padding: 20px;
    }
    
    .payment-icons {
        font-size: 1.5rem;
        gap: 15px;
    }
    
    .checkout-progress-steps {
        flex-direction: column;
        gap: 15px;
    }
    
    .progress-step {
        flex-direction: row;
        width: 100%;
        gap: 10px;
    }
    
    .progress-step .step-line {
        display: none;
    }
    
    .shipping-methods-list li {
        min-height: 65px;
        height: auto;
        padding: 12px 15px;
    }
}

@media (max-width: 576px) {
    .place-order-btn {
        padding: 15px;
        font-size: 1rem;
    }
    
    .coupon-input-group {
        flex-direction: column;
    }
    
    .coupon-code-input,
    .apply-coupon-btn {
        width: 100%;
    }
    
    .shipping-methods-list li {
        min-height: 65px;
    }
}


/* ======================================================= */
/* ===== THANK YOU PAGE ===== */
/* ======================================================= */

/* THANK YOU PAGE STYLES - ME STIL TË NJËJTË SI FAQET E TJERA */

/* Order Confirmation Banner */
.order-confirmation-banner {
    display: flex;
    align-items: center;
    gap: 25px;
    background: linear-gradient(135deg, #38a169 0%, #2f855a 100%);
    color: white;
    padding: 30px;
    border-radius: 12px;
    margin-top: 30px;
    box-shadow: 0 8px 25px rgba(56, 161, 105, 0.3);
}

.confirmation-icon {
    font-size: 3.5rem;
    animation: bounce 2s infinite;
}

.confirmation-content h3 {
    font-size: 1.8rem;
    margin-bottom: 15px;
    color: white;
    font-weight: 600;
}

.confirmation-content p {
    margin-bottom: 8px;
    opacity: 0.95;
    font-size: 1.05rem;
}

.confirmation-note {
    margin-top: 15px;
    padding-top: 15px;
    border-top: 1px solid rgba(255, 255, 255, 0.3);
    font-size: 1rem;
}

@keyframes bounce {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-12px); }
}

/* Thank You Layout */
.thank-you-layout {
    display: grid;
    grid-template-columns: 1fr 400px;
    gap: 35px;
    margin-top: 20px;
}

/* Order Items Section */
.order-items-section {
    background: white;
    border-radius: 12px;
    padding: 25px;
    margin-bottom: 25px;
    border: 1px solid #e1e3df;
}

.order-items-section h2 {
    font-size: 1.4rem;
    color: #222;
    margin-bottom: 25px;
    display: flex;
    align-items: center;
    gap: 12px;
}

.order-items-list {
    max-height: 500px;
    overflow-y: auto;
    padding-right: 10px;
}

.order-item-card {
    display: flex;
    gap: 20px;
    padding: 20px;
    margin-bottom: 15px;
    background: #f8f9fa;
    border-radius: 10px;
    border: 1px solid #e1e3df;
    transition: all 0.3s ease;
}

.order-item-card:hover {
    transform: translateY(-3px);
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
}

.order-item-image {
    width: 100px;
    height: 100px;
    border-radius: 8px;
    overflow: hidden;
    flex-shrink: 0;
}

.order-item-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.order-item-details {
    flex: 1;
}

.order-item-title {
    font-size: 1.1rem;
    color: #222;
    margin-bottom: 10px;
}

.order-item-title a {
    color: inherit;
    text-decoration: none;
}

.order-item-title a:hover {
    color: #f1641e;
}

.order-item-meta {
    display: flex;
    justify-content: space-between;
    margin-bottom: 8px;
    font-size: 0.95rem;
}

.item-quantity {
    color: #666;
    font-weight: 500;
}

.item-price {
    color: #f1641e;
    font-weight: 600;
}

.order-item-maker {
    color: #2a5c8b;
    font-size: 0.9rem;
    display: flex;
    align-items: center;
    gap: 6px;
}

.no-items-message {
    text-align: center;
    padding: 40px 20px;
    color: #666;
}

.no-items-message i {
    font-size: 2rem;
    color: #999;
    margin-bottom: 15px;
}

/* Shipping Information */
.shipping-info-section {
    background: white;
    border-radius: 12px;
    padding: 25px;
    margin-bottom: 25px;
    border: 1px solid #e1e3df;
}

.shipping-info-section h2 {
    font-size: 1.4rem;
    color: #222;
    margin-bottom: 25px;
    display: flex;
    align-items: center;
    gap: 12px;
}

.shipping-info-card {
    background: linear-gradient(135deg, #f0f7ff 0%, #e3f2fd 100%);
    border-radius: 10px;
    padding: 25px;
    border: 1px solid #cfe2ff;
}

.shipping-info-row {
    display: flex;
    margin-bottom: 18px;
    padding-bottom: 18px;
    border-bottom: 1px solid rgba(42, 92, 139, 0.1);
}

.shipping-info-row:last-child {
    margin-bottom: 0;
    padding-bottom: 0;
    border-bottom: none;
}

.info-label {
    flex: 0 0 150px;
    display: flex;
    align-items: center;
    gap: 10px;
    color: #2a5c8b;
    font-weight: 600;
}

.info-label i {
    width: 20px;
    text-align: center;
}

.info-value {
    flex: 1;
    color: #222;
    font-weight: 500;
}

.shipping-address {
    white-space: pre-line;
    line-height: 1.6;
}

.shipping-note {
    margin-top: 20px;
    padding: 15px;
    background: #fff3cd;
    border: 1px solid #ffeaa7;
    border-radius: 8px;
    display: flex;
    align-items: flex-start;
    gap: 12px;
    color: #856404;
}

.shipping-note i {
    font-size: 1.2rem;
    margin-top: 2px;
}

/* Contact Information */
.contact-info-section {
    background: white;
    border-radius: 12px;
    padding: 25px;
    border: 1px solid #e1e3df;
}

.contact-info-section h2 {
    font-size: 1.4rem;
    color: #222;
    margin-bottom: 25px;
    display: flex;
    align-items: center;
    gap: 12px;
}

.contact-info-card {
    background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
    border-radius: 10px;
    padding: 25px;
    border: 1px solid #dee2e6;
}

.contact-info-row {
    display: flex;
    margin-bottom: 18px;
    padding-bottom: 18px;
    border-bottom: 1px solid rgba(108, 117, 125, 0.1);
}

.contact-info-row:last-child {
    margin-bottom: 0;
    padding-bottom: 0;
    border-bottom: none;
}

.contact-link {
    color: #2a5c8b;
    text-decoration: none;
    font-weight: 600;
}

.contact-link:hover {
    text-decoration: underline;
}

/* Thank You Order Summary */
.thank-you-order-summary {
    background: white;
    border-radius: 12px;
    padding: 25px;
    margin-bottom: 25px;
    border: 1px solid #e1e3df;
}

.thank-you-order-summary h3 {
    font-size: 1.3rem;
    color: #222;
    margin-bottom: 25px;
    display: flex;
    align-items: center;
    gap: 12px;
}

.order-summary-details {
    background: #f8f9fa;
    border-radius: 10px;
    padding: 20px;
    margin-bottom: 25px;
}

.summary-row {
    display: flex;
    justify-content: space-between;
    padding: 12px 0;
    border-bottom: 1px solid #e9ecef;
}

.summary-row:last-child {
    border-bottom: none;
}

.summary-label {
    color: #666;
    font-weight: 500;
}

.summary-value {
    color: #222;
    font-weight: 600;
}

.total-row {
    border-top: 2px solid #dee2e6;
    margin-top: 10px;
    padding-top: 15px;
}

.total-amount {
    color: #f1641e;
    font-size: 1.3rem;
}

/* Shipping Timeline */
.shipping-timeline {
    background: white;
    border-radius: 10px;
    padding: 20px;
    border: 1px solid #e1e3df;
}

.shipping-timeline h4 {
    font-size: 1.1rem;
    color: #222;
    margin-bottom: 20px;
    display: flex;
    align-items: center;
    gap: 10px;
}

.timeline-steps {
    position: relative;
    padding-left: 40px;
}

.timeline-steps::before {
    content: '';
    position: absolute;
    left: 20px;
    top: 0;
    bottom: 0;
    width: 2px;
    background: #e1e3df;
}

.timeline-step {
    position: relative;
    margin-bottom: 25px;
}

.timeline-step:last-child {
    margin-bottom: 0;
}

.timeline-step .step-icon {
    position: absolute;
    left: -40px;
    top: 0;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: white;
    border: 2px solid #e1e3df;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #999;
    font-size: 1rem;
    z-index: 2;
}

.timeline-step.active .step-icon {
    background: #f1641e;
    border-color: #f1641e;
    color: white;
    animation: pulse 2s infinite;
}

.step-content {
    padding-left: 10px;
}

.step-content h5 {
    font-size: 1rem;
    color: #222;
    margin-bottom: 5px;
}

.step-content p {
    color: #666;
    font-size: 0.9rem;
}

@keyframes pulse {
    0% { box-shadow: 0 0 0 0 rgba(241, 100, 30, 0.4); }
    70% { box-shadow: 0 0 0 10px rgba(241, 100, 30, 0); }
    100% { box-shadow: 0 0 0 0 rgba(241, 100, 30, 0); }
}

/* Action Buttons */
.thank-you-actions {
    display: flex;
    flex-direction: column;
    gap: 15px;
    margin-bottom: 25px;
}

.action-btn {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
    padding: 16px;
    border-radius: 8px;
    text-decoration: none;
    font-weight: 600;
    font-size: 1rem;
    transition: all 0.3s ease;
    text-align: center;
    border: none;
    cursor: pointer;
}

.primary-btn {
    background: #f1641e;
    color: white;
}

.primary-btn:hover {
    background: #d45600;
    transform: translateY(-3px);
    box-shadow: 0 6px 20px rgba(241, 100, 30, 0.2);
}

.secondary-btn {
    background: #2a5c8b;
    color: white;
}

.secondary-btn:hover {
    background: #1e4a75;
    transform: translateY(-3px);
    box-shadow: 0 6px 20px rgba(42, 92, 139, 0.2);
}

.outline-btn {
    background: white;
    color: #555;
    border: 2px solid #e1e3df;
}

.outline-btn:hover {
    background: #f8f8f8;
    transform: translateY(-3px);
}

/* Customer Message Box */
.customer-message-box {
    background: linear-gradient(135deg, #fff5f5 0%, #fed7d7 100%);
    border-radius: 12px;
    padding: 25px;
    margin-bottom: 25px;
    border: 1px solid #fc8181;
}

.message-header {
    display: flex;
    align-items: center;
    gap: 15px;
    margin-bottom: 15px;
}

.message-header i {
    color: #e53e3e;
    font-size: 1.5rem;
}

.message-header h4 {
    color: #222;
    margin: 0;
    font-size: 1.2rem;
}

.message-content p {
    color: #555;
    margin-bottom: 10px;
    line-height: 1.6;
}

.message-content p:last-child {
    margin-bottom: 0;
}

/* Social Share / Follow Me */
.social-share-section {
    background: white;
    border-radius: 12px;
    padding: 25px;
    border: 1px solid #e1e3df;
}

.social-share-section h4 {
    font-size: 1.1rem;
    color: #222;
    margin-bottom: 20px;
    display: flex;
    align-items: center;
    gap: 10px;
}

.social-share-buttons {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.social-share-btn {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
    padding: 14px;
    border-radius: 8px;
    text-decoration: none;
    font-weight: 600;
    font-size: 0.95rem;
    transition: all 0.3s ease;
    border: none;
    cursor: pointer;
}

.facebook {
    background: #1877f2;
    color: white;
}

.facebook:hover {
    background: #166fe5;
    transform: translateY(-2px);
}

.instagram {
    background: linear-gradient(45deg, #405de6, #833ab4, #c13584, #e1306c);
    color: white;
}

.instagram:hover {
    transform: translateY(-2px);
}

.twitter {
    background: #1da1f2;
    color: white;
}

.twitter:hover {
    background: #1a94da;
    transform: translateY(-2px);
}

.etsy {
    background: #f56400;
    color: white;
}

.etsy:hover {
    background: #e05b00;
    transform: translateY(-2px);
}

.ebay {
    background: #0064d2;
    color: white;
}

.ebay:hover {
    background: #0056b8;
    transform: translateY(-2px);
}

/* Related Products - ETSY STYLE */
.related-products-section {
    background: #f8f9fa;
    padding: 60px 0;
    margin-top: 60px;
    border-top: 1px solid #e1e3df;
}

.section-title {
    text-align: center;
    font-size: 2rem;
    color: #222;
    margin-bottom: 40px;
}

.etsy-style-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
    gap: 25px;
    margin-top: 30px;
}

.etsy-product-card {
    background: white;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.05);
    transition: all 0.3s ease;
    border: 1px solid #e1e3df;
}

.etsy-product-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.1);
}

.etsy-image-container {
    display: block;
    position: relative;
    width: 100%;
    height: 250px;
    overflow: hidden;
}

.etsy-image-container img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.etsy-product-card:hover .etsy-image-container img {
    transform: scale(1.05);
}

.sale-badge-etsy {
    position: absolute;
    top: 10px;
    right: 10px;
    background: #f1641e;
    color: white;
    padding: 5px 10px;
    border-radius: 4px;
    font-size: 0.8rem;
    font-weight: 600;
    z-index: 1;
}

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

.etsy-product-title-link {
    text-decoration: none;
    color: inherit;
    display: block;
}

.etsy-product-title-link:hover .etsy-product-title {
    color: #f1641e;
}

.etsy-product-title {
    font-size: 0.95rem;
    color: #222222;
    font-weight: 400;
    line-height: 1.4;
    margin-bottom: 8px;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
    min-height: 2.8em;
    flex-grow: 1;
    transition: color 0.3s ease;
}

.etsy-product-maker {
    color: #2a5c8b;
    font-size: 0.85rem;
    display: flex;
    align-items: center;
    gap: 6px;
    margin-bottom: 10px;
}

.etsy-product-maker i {
    font-size: 0.9rem;
}

.etsy-product-price {
    margin-bottom: 10px;
}

.etsy-current-price {
    font-size: 1.1rem;
    font-weight: 600;
    color: #222;
    margin-right: 8px;
}

.etsy-original-price {
    font-size: 0.9rem;
    color: #999;
    text-decoration: line-through;
    margin-right: 8px;
}

.etsy-sale-percent {
    font-size: 0.85rem;
    color: #f1641e;
    font-weight: 600;
    background: rgba(241, 100, 30, 0.1);
    padding: 2px 6px;
    border-radius: 4px;
}

.etsy-reviews {
    display: flex;
    align-items: center;
    gap: 5px;
    margin-bottom: 15px;
}

.etsy-star-rating {
    color: #ffc107;
    font-size: 0.85rem;
}

.etsy-review-count {
    font-size: 0.8rem;
    color: #666;
}

.etsy-product-actions {
    padding: 0 20px 20px 20px;
}

.etsy-add-to-cart[data-product-id] {
    display: block;
    width: 100%;
    background: #f1641e;
    color: white;
    padding: 10px 15px;
    border-radius: 6px;
    text-decoration: none;
    text-align: center;
    font-weight: 600;
    font-size: 0.9rem;
    border: none;
    cursor: pointer;
    transition: all 0.3s ease;
    font-family: inherit;
}

.etsy-add-to-cart[data-product-id]:hover {
    background: #d45600;
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(241, 100, 30, 0.15);
}

.etsy-view-options {
    display: block;
    width: 100%;
    background: #2a5c8b;
    color: white;
    padding: 10px 15px;
    border-radius: 6px;
    text-decoration: none;
    text-align: center;
    font-weight: 600;
    font-size: 0.9rem;
    border: none;
    cursor: pointer;
    transition: all 0.3s ease;
    font-family: inherit;
}

.etsy-view-options:hover {
    background: #1e4a75;
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(42, 92, 139, 0.15);
}

/* Modal styles - EXACTLY LIKE SHOP PAGE */
.cart-confirmation-modal {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.8);
    z-index: 9999;
    display: none;
    justify-content: center;
    align-items: center;
    padding: 20px;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.cart-confirmation-content {
    background: white;
    border-radius: 12px;
    width: 100%;
    max-width: 500px;
    overflow: hidden;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.2);
}

.cart-confirmation-header {
    background: #f1641e;
    color: white;
    padding: 20px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    position: relative;
}

.cart-confirmation-header i.fa-check-circle {
    font-size: 2rem;
    margin-right: 15px;
}

.cart-confirmation-header h3 {
    font-size: 1.3rem;
    font-weight: 500;
    margin: 0;
    flex-grow: 1;
}

.cart-confirmation-close {
    background: rgba(255, 255, 255, 0.2);
    border: none;
    color: white;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all 0.3s ease;
}

.cart-confirmation-close:hover {
    background: rgba(255, 255, 255, 0.3);
    transform: rotate(90deg);
}

.cart-confirmation-body {
    padding: 25px;
}

.confirmation-product {
    display: flex;
    gap: 20px;
    margin-bottom: 25px;
    padding-bottom: 20px;
    border-bottom: 1px solid #f0f0f0;
}

.confirmation-image {
    width: 100px;
    height: 100px;
    border-radius: 8px;
    overflow: hidden;
    background: #f9f9f9;
    flex-shrink: 0;
}

.confirmation-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.confirmation-details {
    flex-grow: 1;
}

.confirmation-details h4 {
    font-size: 1.1rem;
    color: #222;
    margin-bottom: 8px;
    font-weight: 500;
}

.confirmation-variation {
    font-size: 0.9rem;
    color: #666;
    margin-bottom: 5px;
}

.confirmation-variation span {
    font-weight: 500;
    color: #555;
}

.confirmation-quantity {
    font-size: 0.9rem;
    color: #666;
    margin-bottom: 5px;
}

.confirmation-price {
    font-size: 1.1rem;
    font-weight: 600;
    color: #f1641e;
}

.cart-confirmation-actions {
    display: grid;
    grid-template-columns: 1fr;
    gap: 10px;
}

.confirmation-btn {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    padding: 14px 20px;
    border-radius: 8px;
    text-decoration: none;
    font-weight: 600;
    font-size: 0.95rem;
    transition: all 0.3s ease;
    border: none;
    cursor: pointer;
    text-align: center;
}

.continue-btn {
    background: #f8f8f8;
    color: #555;
    border: 1px solid #e1e3df;
}

.continue-btn:hover {
    background: #e8e8e8;
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.05);
}

.view-cart-btn {
    background: #222222;
    color: white;
}

.view-cart-btn:hover {
    background: #000000;
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
}

.checkout-btn {
    background: #f1641e;
    color: white;
}

.checkout-btn:hover {
    background: #d45600;
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(241, 100, 30, 0.2);
}

.cart-confirmation-footer {
    padding: 15px 25px;
    background: #f8f9fa;
    text-align: center;
    font-size: 0.9rem;
    color: #666;
    border-top: 1px solid #e1e3df;
}

.cart-confirmation-footer p {
    margin: 0;
}

#thankYouCartItemsCount {
    font-weight: 600;
    color: #f1641e;
}

/* Responsive */
@media (max-width: 1200px) {
    .thank-you-layout {
        grid-template-columns: 1fr;
        gap: 25px;
    }
    
    .thank-you-right-column {
        order: -1;
    }
    
    .etsy-style-grid {
        grid-template-columns: repeat(auto-fill, minmax(230px, 1fr));
        gap: 20px;
    }
}

@media (max-width: 768px) {
    .order-confirmation-banner {
        flex-direction: column;
        text-align: center;
        gap: 20px;
        padding: 25px;
    }
    
    .order-item-card {
        flex-direction: column;
        text-align: center;
    }
    
    .order-item-image {
        width: 150px;
        height: 150px;
        margin: 0 auto;
    }
    
    .order-item-meta {
        flex-direction: column;
        gap: 5px;
    }
    
    .shipping-info-row,
    .contact-info-row {
        flex-direction: column;
        gap: 5px;
    }
    
    .info-label {
        flex: none;
        margin-bottom: 5px;
    }
    
    .timeline-steps {
        padding-left: 30px;
    }
    
    .timeline-step .step-icon {
        left: -30px;
        width: 30px;
        height: 30px;
        font-size: 0.9rem;
    }
    
    .etsy-style-grid {
        grid-template-columns: repeat(auto-fill, minmax(200px, 1fr));
        gap: 15px;
    }
    
    .etsy-image-container {
        height: 200px;
    }
    
    .confirmation-product {
        flex-direction: column;
        align-items: center;
        text-align: center;
    }
    
    .confirmation-image {
        width: 120px;
        height: 120px;
    }
    
    .cart-confirmation-actions {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 576px) {
    .order-summary-details .summary-row {
        flex-direction: column;
        gap: 5px;
    }
    
    .social-share-buttons {
        flex-direction: row;
        flex-wrap: wrap;
    }
    
    .social-share-btn {
        flex: 1;
        min-width: 120px;
        padding: 12px;
        font-size: 0.9rem;
    }
    
    .etsy-style-grid {
        grid-template-columns: 1fr;
    }
}
/* Left/Right columns - implicit grid children of .thank-you-layout */
.thank-you-left-column,
.thank-you-right-column {
    min-width: 0; /* prevent grid blowout */
}

/* ── CHECKOUT: Hide WooCommerce privacy policy text & default Place Order button ── */
#order_review .woocommerce-privacy-policy-text,
#order_review #place_order,
#order_review .woocommerce-terms-and-conditions-wrapper {
    display: none !important;
}