/*
Theme Name: S2S Theme Showcase
Theme URI: https://themes.skilltosky.com
Description: An elegant WordPress theme showcase for selling premium themes - S2S Prime, S2S Core Light, S2S Core Dark, and S2S Care
Version: 1.0.0
Author: SkillToSky
Author URI: https://skilltosky.com
Text Domain: s2s-showcase
WC requires at least: 5.0
WC tested up to: 8.0
Requires at least: 6.0
Tested up to: 6.4
Requires PHP: 7.4
License: GNU General Public License v2 or later
License URI: http://www.gnu.org/licenses/gpl-2.0.html
*/

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

/* Bootstrap Icons */
.bi {
    display: inline-block;
    vertical-align: middle;
    line-height: 1;
}

/* @import url('https://fonts.googleapis.com/css2?family=Roboto:ital,wght@0,100..900;1,100..900&display=swap'); */
@import url('https://fonts.googleapis.com/css2?family=Schibsted+Grotesk:ital,wght@0,400..900;1,400..900&display=swap');
@import url('https://fonts.googleapis.com/css2?family=Source+Sans+3:ital,wght@0,200..900;1,200..900&display=swap');

:root {
    --primary-color: #11a2d7;
    --secondary-color: #da308d;
    --accent-color: #F7DC6F;
    --text-color: #1f2937;
    --text-light: #6b7280;
    --bg-color: #ffffff;
    --bg-light: #fef6f0;
    --bg-peach: #f5d4c8;
    --bg-dark: #4a1a2c;
    --border-color: #e5e7eb;
    --success-color: #10b981;
    --error-color: var(--secondary-color);
    --warning-color: #f59e0b;
    --font-primary: "Source Sans 3", sans-serif;
    --font-heading: "Schibsted Grotesk", sans-serif;
    --border-radius: 16px;
    --border-radius-lg: 24px; 
    --transition: all 0.3s ease;
    --shadow-sm: 0 1px 2px 0 rgba(0, 0, 0, 0.05);
    --shadow-md: 0 4px 6px -1px rgba(0, 0, 0, 0.1);
    --shadow-lg: 0 10px 15px -3px rgba(0, 0, 0, 0.1);
    --shadow-xl: 0 20px 25px -5px rgba(0, 0, 0, 0.1);
    --light-gradient: linear-gradient(135deg, rgba(17, 162, 215, 0.1) 0%, rgba(218, 48, 141, 0.1) 100%);
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: var(--font-primary);
    font-size: 16px;
    line-height: 1.6;
    color: var(--text-color);
    background-color: var(--bg-color);
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    overflow-x: hidden;
}

/* Remove WooCommerce default spacing */
.woocommerce-notices-wrapper {
    margin: 0;
    padding: 0;
}

.woocommerce-notices-wrapper:empty {
    display: none;
}

/* Remove extra spacing on Cart and Checkout pages */
.woocommerce-cart .woocommerce-notices-wrapper,
.woocommerce-checkout .woocommerce-notices-wrapper {
    margin-bottom: 0;
}

.woocommerce-cart > .woocommerce-notices-wrapper:first-child,
.woocommerce-checkout > .woocommerce-notices-wrapper:first-child {
    margin-top: 0;
}

h1, h2, h3, h4, h5, h6 {
    font-family: var(--font-heading);
    font-weight: 700;
    line-height: 1.2;
    margin-bottom: 1rem;
    color: var(--text-color);
}

h1 { font-size: 2.5rem; }
h2 { font-size: 2rem; }
h3 { font-size: 1.75rem; }
h4 { font-size: 1.5rem; }
h5 { font-size: 1.25rem; }
h6 { font-size: 1rem; }

a {
    color: var(--primary-color);
    text-decoration: none;
    transition: var(--transition);
}

a:hover {
    color: var(--secondary-color-color);
}

img {
    max-width: 100%;
    height: auto;
    display: block;
}

.container {
    max-width: 1280px;
    margin: 0 auto;
    padding: 0 1.5rem;
}

.container-wide {
    max-width: 1440px;
    margin: 0 auto;
    padding: 0 1.5rem;
}

/* ===================================
   Header Styles
=================================== */
.site-header {
    background: white;
    box-shadow: 0 2px 12px rgba(0, 0, 0, 0.06);
    position: sticky;
    top: 0;
    z-index: 1000;
    transition: all 0.3s ease;
    border-bottom: 1px solid rgba(0, 0, 0, 0.06);
}

.site-header.scrolled {
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
}

.header-top {
    background: linear-gradient(135deg, var(--primary-color) 0%, var(--secondary-color) 100%);
    border-bottom: none;
    padding: 0.5rem 0;
    font-size: 0.8rem;
    transition: all 0.3s ease;
    overflow: hidden;
    max-height: 50px;
}

.site-header.scrolled .header-top {
    max-height: 0;
    padding: 0;
    opacity: 0;
}

.header-top .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.header-top-left,
.header-top-right {
    color: white;
}

.header-top-left span {
    font-weight: 500;
}

.header-top-right a {
    color: white;
    font-weight: 600;
    transition: all 0.2s ease;
    text-decoration: none;
}

.header-top-right a:hover {
    opacity: 0.85;
    transform: translateX(2px);
}

.header-top-right {
    display: flex;
    align-items: center;
    gap: 0.75rem;
}

.currency-indicator {
    display: inline-flex;
    align-items: center;
    gap: 0.25rem;
    font-weight: 600;
    font-size: 0.8rem;
    background: rgba(255, 255, 255, 0.15);
    padding: 0.25rem 0.6rem;
    border-radius: 50px;
    cursor: default;
}

.currency-indicator i {
    font-size: 0.9rem;
}

.header-top-divider {
    opacity: 0.4;
    font-weight: 300;
}

/* .header-main {
    padding: 1rem 0;
} */

.header-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 3rem;
}

.site-branding a {
    text-decoration: none;
}

.site-logo {
    font-size: 1.65rem;
    font-weight: 900;
    background: linear-gradient(135deg, var(--primary-color) 0%, var(--secondary-color) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    text-decoration: none;
    display: flex;
    align-items: center;
    gap: 0.5rem;
    transition: all 0.3s ease;
    letter-spacing: -0.02em;
}
.custom-logo-link img {
    max-height: 85px !important;
    width: auto;
}

.site-logo svg {
    fill: var(--primary-color);
    transition: all 0.3s ease;
    width: 32px;
    height: 32px;
}

.site-logo:hover {
    opacity: 0.85;
    transform: translateY(-1px);
}

.site-logo:hover svg {
    transform: rotate(-5deg);
}

/* Navigation */
.main-navigation {
    flex: 1;
}

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

.main-navigation a {
    color: var(--text-color);
    font-weight: 600;
    font-size: 0.95rem;
    padding: 0.35rem 0;
    position: relative;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    text-decoration: none;
}

.main-navigation a:hover {
    color: var(--primary-color);
}

.main-navigation a::after {
    content: '';
    position: absolute;
    bottom: -2px;
    left: 50%;
    transform: translateX(-50%);
    width: 0;
    height: 3px;
    background: linear-gradient(135deg, var(--primary-color) 0%, var(--secondary-color) 100%);
    border-radius: 3px;
    transition: width 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.main-navigation a:hover::after,
.main-navigation a.current::after {
    width: 100%;
}

/* Header Icons */
.header-icons {
    display: flex;
    gap: 1rem;
    align-items: center;
}

/* Mobile Menu Toggle - Hidden on desktop */
.mobile-menu-toggle {
    display: none;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    width: 40px;
    height: 40px;
    padding: 8px;
    background: transparent;
    border: none;
    cursor: pointer;
    gap: 5px;
    border-radius: 8px;
    transition: all 0.3s ease;
}

.mobile-menu-toggle:hover {
    background: rgba(17, 162, 215, 0.1);
}

.hamburger-line {
    display: block;
    width: 22px;
    height: 2.5px;
    background: var(--text-color);
    border-radius: 2px;
    transition: all 0.3s ease;
}

/* Hamburger animation when active */
.mobile-menu-toggle.active .hamburger-line:nth-child(1) {
    transform: rotate(45deg) translate(5px, 5px);
}

.mobile-menu-toggle.active .hamburger-line:nth-child(2) {
    opacity: 0;
}

.mobile-menu-toggle.active .hamburger-line:nth-child(3) {
    transform: rotate(-45deg) translate(5px, -5px);
}

.header-icon-wrapper {
    position: relative;
}

.header-icon {
    position: relative;
    cursor: pointer;
    padding: 0.5rem;
    border-radius: 10px;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    background: transparent;
    border: none;
    color: var(--text-color);
    display: flex;
    align-items: center;
    justify-content: center;
}

.header-icon:hover {
    background: linear-gradient(135deg, rgba(17, 162, 215, 0.1) 0%, rgba(218, 48, 141, 0.1) 100%);
    color: var(--primary-color);
    transform: translateY(-2px);
}

.header-icon i {
    font-size: 22px;
    transition: transform 0.3s ease;
}

.header-icon:hover i {
    transform: scale(1.1);
}

.icon-badge {
    position: absolute;
    top: -2px;
    right: -2px;
    background-color: var(--secondary-color);
    color: white;
    font-size: 0.7rem;
    font-weight: 700;
    padding: 0.2rem 0.45rem;
    border-radius: 9999px;
    min-width: 20px;
    text-align: center;
    border: 2px solid white;
    box-shadow: 0 2px 6px rgba(17, 162, 215, 0.4);
    line-height: 1;
}

/* Mini Cart Dropdown */
.mini-cart-dropdown,
.mini-wishlist-dropdown {
    position: absolute;
    top: calc(100% + 1.25rem);
    right: 0;
    width: 420px;
    background: white;
    border-radius: 12px;
    border: 1px solid #e0e0e0;
    opacity: 0;
    visibility: hidden;
    transform: translateY(-10px);
    transition: all 0.3s ease;
    z-index: 1000;
    max-height: 600px;
    min-height: 200px;
    display: flex;
    flex-direction: column;
}

.mini-cart-dropdown.active,
.mini-wishlist-dropdown.active {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.mini-cart-header,
.mini-wishlist-header {
    padding: 1.25rem 1.5rem;
    border-bottom: 1px solid #f0f0f0;
    font-weight: 600;
    font-size: 1.125rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
    background: #fafafa;
    flex-shrink: 0;
}

.close-dropdown {
    background: none;
    border: none;
    font-size: 1.5rem;
    color: var(--text-light);
    cursor: pointer;
    padding: 0;
    width: 30px;
    height: 30px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    transition: all 0.2s ease;
}

.close-dropdown:hover {
    background: rgba(0, 0, 0, 0.1);
    color: var(--text-color);
}

.mini-cart-items,
.mini-wishlist-items {
    overflow-y: auto;
    max-height: 400px;
    padding: 1rem;
    flex: 1 1 auto;
}

.mini-cart-item,
.mini-wishlist-item {
    display: flex;
    gap: 0.75rem;
    padding: 0.75rem;
    border-radius: 8px;
    transition: all 0.2s ease;
    margin-bottom: 0.5rem;
    border: 1px solid #f0f0f0;
    background: #fafafa;
    position: relative;
}

.mini-cart-item:last-child,
.mini-wishlist-item:last-child {
    margin-bottom: 0;
}

.mini-cart-item:hover,
.mini-wishlist-item:hover {
    background: #f5f5f5;
    border-color: #e0e0e0;
}

.mini-cart-item-image,
.mini-wishlist-item-image {
    width: 60px;
    height: 60px;
    border-radius: 6px;
    overflow: hidden;
    flex-shrink: 0;
    background: white;
    border: 1px solid #e0e0e0;
}

.mini-cart-item-image img,
.mini-wishlist-item-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.mini-cart-item-details,
.mini-wishlist-item-details {
    flex: 1;
    display: flex;
    flex-direction: column;
    gap: 0.35rem;
    min-width: 0;
}

.mini-cart-item-title,
.mini-wishlist-item-title {
    font-weight: 600;
    font-size: 0.875rem;
    color: #2c3e50;
    line-height: 1.3;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
}

.mini-cart-item-price,
.mini-wishlist-item-price {
    color: var(--primary-color);
    font-weight: 700;
    font-size: 0.95rem;
}

/* Wishlist item price and button row */
.mini-wishlist-item-details {
    gap: 0.25rem;
}

.mini-wishlist-item-price {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 0.5rem;
}

.mini-wishlist-add-to-cart {
    padding: 0.35rem 0.6rem;
    background: var(--primary-color);
    color: white;
    border: none;
    border-radius: 50px;
    font-weight: 600;
    font-size: 0.7rem;
    cursor: pointer;
    transition: all 0.2s ease;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.2rem;
    white-space: nowrap;
    flex-shrink: 0;
}

.mini-wishlist-add-to-cart:hover {
    background: #0d8bbf;
}

.mini-wishlist-add-to-cart:active {
    transform: scale(0.98);
}

.mini-wishlist-add-to-cart.loading {
    opacity: 0.7;
    cursor: not-allowed;
}

.mini-wishlist-add-to-cart svg,
.mini-wishlist-add-to-cart i {
    font-size: 1rem;
}

.mini-cart-item-qty {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    margin-top: 0.25rem;
}

.mini-cart-item-qty .qty-text {
    font-size: 0.875rem;
    color: #757575;
    font-weight: 500;
}

/* Search Dropdown */
.search-wrapper {
    position: relative;
}

.search-dropdown {
    position: absolute;
    top: calc(100% + 1rem);
    right: -100px;
    width: 400px;
    background: white;
    border-radius: 16px;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.15);
    border: 1px solid rgba(0, 0, 0, 0.08);
    opacity: 0;
    visibility: hidden;
    transform: translateY(-10px) scale(0.95);
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    z-index: 1001;
    padding: 1rem;
}

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

.search-dropdown .search-form {
    display: flex;
    align-items: center;
    gap: 0.75rem;
}

.search-input-wrapper {
    flex: 1;
    position: relative;
    display: flex;
    align-items: center;
}

.search-input-icon {
    position: absolute;
    left: 1rem;
    color: var(--text-light);
    font-size: 1.1rem;
    pointer-events: none;
}

.search-dropdown .search-input {
    width: 100%;
    padding: 0.875rem 3rem 0.875rem 2.75rem;
    border: 2px solid #e5e7eb;
    border-radius: 12px;
    font-size: 0.95rem;
    transition: all 0.3s ease;
    background: #f8fafc;
}

.search-dropdown .search-input:focus {
    outline: none;
    border-color: var(--primary-color);
    background: white;
    box-shadow: 0 0 0 4px rgba(17, 162, 215, 0.1);
}

.search-dropdown .search-input::placeholder {
    color: #9ca3af;
}

.search-dropdown .search-submit-btn {
    position: absolute;
    right: 0.5rem;
    width: 36px;
    height: 36px;
    background: linear-gradient(135deg, var(--primary-color) 0%, var(--secondary-color) 100%);
    border: none;
    border-radius: 10px;
    color: white;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
}

.search-dropdown .search-submit-btn:hover {
    transform: scale(1.05);
    box-shadow: 0 4px 12px rgba(17, 162, 215, 0.4);
}

.search-dropdown .search-submit-btn i {
    font-size: 1rem;
}

.close-search {
    width: 36px;
    height: 36px;
    background: #f3f4f6;
    border: none;
    border-radius: 10px;
    color: var(--text-light);
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
    flex-shrink: 0;
}

.close-search:hover {
    background: #fee2e2;
    color: #ef4444;
}

/* Search Dropdown Arrow */
.search-dropdown::before {
    content: '';
    position: absolute;
    top: -8px;
    right: 120px;
    width: 16px;
    height: 16px;
    background: white;
    border: 1px solid rgba(0, 0, 0, 0.08);
    border-bottom: none;
    border-right: none;
    transform: rotate(45deg);
}

.qty-control {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    background: var(--bg-light);
    /* border-radius: var(--border-radius); */
    padding: 0.25rem;
}

.qty-btn {
    width: 24px;
    height: 24px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: white;
    border: 1px solid var(--border-color);
    /* border-radius: 4px; */
    cursor: pointer;
    transition: var(--transition);
    font-size: 0.875rem;
    font-weight: 600;
    color: var(--text-color);
}

.qty-btn:hover {
    background: var(--primary-color);
    color: white;
    border-color: var(--primary-color);
}

.qty-input {
    width: 32px;
    text-align: center;
    border: none;
    background: transparent;
    font-weight: 500;
    font-size: 0.875rem;
}

.mini-cart-item-remove,
.mini-wishlist-item-remove {
    position: absolute;
    top: 0.5rem;
    right: 0.5rem;
    width: 24px;
    height: 24px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: white;
    border: none;
    border-radius: 50%;
    color: #9e9e9e;
    cursor: pointer;
    font-size: 1.125rem;
    font-weight: normal;
    line-height: 1;
    transition: all 0.2s ease;
}

.mini-cart-item-remove:hover,
.mini-wishlist-item-remove:hover {
    background: #fee;
    color: var(--secondary-color);
}

.mini-cart-footer {
    padding: 1.25rem 1.5rem;
    border-top: 1px solid #e0e0e0;
    background: #fafafa;
    flex-shrink: 0;
    margin-top: auto;
}

.mini-cart-total {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 1rem;
    font-size: 1.125rem;
    font-weight: 700;
    color: #2c3e50;
}

.mini-cart-total .total-amount {
    color: var(--primary-color);
    font-size: 1.25rem;
}

.mini-cart-buttons {
    display: flex;
    gap: 0.75rem;
}

.mini-cart-buttons .btn {
    flex: 1;
    padding: 0.575rem 1.5rem;
    font-size: 0.9375rem;
    font-weight: 600;
    border-radius: 24px;
    border: none;
    cursor: pointer;
    transition: all 0.2s ease;
    text-decoration: none;
    text-align: center;
}

.mini-cart-buttons .btn-secondary {
    background: white;
    color: var(--primary-color);
    border: 1px solid var(--primary-color);
}

.mini-cart-buttons .btn-secondary:hover {
    background: #f0f9ff;
}

.mini-cart-buttons .btn-primary {
    background: var(--primary-color);
    color: white;
}

.mini-cart-buttons .btn-primary:hover {
    background: #0d8bbf;
}

/* Empty Cart/Wishlist Message */
.mini-cart-empty,
.mini-wishlist-empty {
    text-align: center;
    padding: 3rem 2rem;
    color: #9e9e9e;
    font-size: 0.9375rem;
}

/* WooCommerce Button Overrides */
.woocommerce button.button,
.woocommerce a.button,
.woocommerce input.button,
.woocommerce #respond input#submit {
    padding: 1rem 2.25rem !important;
    background: linear-gradient(135deg, var(--primary-color) 0%, var(--secondary-color) 100%);
    color: white;
    border: none;
    border-radius: 50px;
    font-weight: 700;
    font-size: 1rem;
    cursor: pointer;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    box-shadow: 0 4px 14px rgba(17, 162, 215, 0.3);
    text-decoration: none;
}

.woocommerce button.button:hover,
.woocommerce a.button:hover,
.woocommerce input.button:hover,
.woocommerce #respond input#submit:hover {
    background: linear-gradient(135deg, #0d8bbf 0%, #b52571 100%);
    transform: translateY(-3px) scale(1.02);
    box-shadow: 0 8px 24px rgba(218, 48, 141, 0.4);
    color: white;
}

.woocommerce button.button.alt,
.woocommerce a.button.alt {
    background: var(--primary-color);
}

.woocommerce button.button.alt:hover,
.woocommerce a.button.alt:hover {
    background: linear-gradient(135deg, #b52571 0%, #0d8bbf 100%);
}

/* Secondary WooCommerce Buttons */
.woocommerce .button.button-secondary,
.woocommerce button.button-secondary {
    background: white;
    color: var(--text-color);
    border: 2px solid var(--border-color);
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08);
}

.woocommerce .button.button-secondary:hover,
.woocommerce button.button-secondary:hover {
    border-color: var(--primary-color);
    color: var(--primary-color);
    background: rgba(17, 162, 215, 0.05);
}

.btn {
    padding: 1rem 2.25rem;
    border-radius: 50px;
    font-weight: 700;
    text-align: center;
    cursor: pointer;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    border: none;
    font-size: 1rem;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    letter-spacing: 0.02em;
    text-decoration: none;
    position: relative;
    overflow: hidden;
}

.btn::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(255, 255, 255, 0.1);
    transform: translateX(-100%);
    transition: transform 0.3s ease;
}

.btn:hover::before {
    transform: translateX(0);
}

.btn-primary {
    background: var(--primary-color);
    color: white;
    box-shadow: 0 4px 14px rgba(17, 162, 215, 0.3);
    border: 2px solid transparent;
}

.btn-primary:hover {
    background: #0d8bbf;
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(17, 162, 215, 0.4);
    color: white;
}

.btn-primary:active {
    transform: translateY(-1px) scale(1);
}

.btn-secondary {
    background: white;
    color: var(--text-color);
    border: 2px solid var(--border-color);
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08);
}

.btn-secondary:hover {
    border-color: var(--primary-color);
    color: var(--primary-color);
    background: rgba(17, 162, 215, 0.05);
    transform: translateY(-3px) scale(1.02);
    box-shadow: 0 6px 18px rgba(17, 162, 215, 0.25);
}

.btn-outline {
    background: transparent;
    color: var(--primary-color);
    border: 2px solid var(--primary-color);
    box-shadow: none;
}

.btn-outline:hover {
    background: var(--primary-color);
    color: white;
    transform: translateY(-3px) scale(1.02);
    box-shadow: 0 6px 18px rgba(17, 162, 215, 0.3);
}

.btn-block {
    width: 100%;
    display: flex;
}

.mini-cart-empty,
.mini-wishlist-empty {
    padding: 3rem 1.5rem;
    text-align: center;
    color: var(--text-light);
}

/* ===================================
   Front Page Sections
=================================== */
.hero-section {
    position: relative;
    background: linear-gradient(180deg, #ffffff 0%, var(--bg-light) 100%);
    color: var(--text-color);
    padding: 7rem 0 5rem;
    overflow: hidden;
    text-align: center;
}

.hero-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: radial-gradient(circle at 20% 50%, rgba(17, 162, 215, 0.08) 0%, transparent 50%),
                radial-gradient(circle at 80% 50%, rgba(218, 48, 141, 0.08) 0%, transparent 50%);
    z-index: 1;
}

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

.hero-text h1 {
    font-size: 4.5rem;
    margin-bottom: 1.5rem;
    color: var(--text-color);
    line-height: 1.15;
    font-weight: 900;
    letter-spacing: -0.02em;
}

/* Text Carousel Animation */
.text-carousel {
    display: block;
    position: relative;
    height: 1.3em;
    overflow: hidden;
    margin: 0.5rem 0;
}

.text-carousel-item {
    display: block;
    animation: textSlide 9s infinite;
    opacity: 0;
    position: absolute;
    width: 100%;
    left: 0;
    font-weight: 900;
    background: linear-gradient(135deg, var(--primary-color) 0%, var(--secondary-color) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.text-carousel-item:nth-child(1) {
    animation-delay: 0s;
}

.text-carousel-item:nth-child(2) {
    animation-delay: 3s;
}

.text-carousel-item:nth-child(3) {
    animation-delay: 6s;
}

.text-carousel-item.primary {
    background: linear-gradient(135deg, var(--primary-color) 0%, #0d8bbf 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.text-carousel-item.secondary {
    background: linear-gradient(135deg, var(--secondary-color) 0%, #b52571 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.text-carousel-item.accent {
    background: linear-gradient(135deg, #F7DC6F 0%, #f5c842 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

@keyframes textSlide {
    0%, 27% {
        opacity: 1;
        transform: translateY(0) scale(1);
    }
    33%, 100% {
        opacity: 0;
        transform: translateY(-30px) scale(0.95);
    }
}

.hero-text p {
    font-size: 1.2rem;
    margin-bottom: 3rem;
    color: var(--text-light);
    line-height: 1.7;
    max-width: 650px;
    margin-left: auto;
    margin-right: auto;
    font-weight: 400;
}

.hero-buttons {
    display: flex;
    gap: 1rem;
    flex-wrap: wrap;
    justify-content: center;
    margin-top: 2.5rem;
}

.btn-large {
    padding: 1.2rem 3rem;
    font-size: 1.125rem;
    border-radius: 50px;
    font-weight: 700;
    letter-spacing: 0.02em;
}

.btn-small {
    padding: 0.65rem 1.5rem;
    font-size: 0.9rem;
    border-radius: 50px;
}

.btn-white {
    background: white;
    color: var(--primary-color);
    border: 2px solid white;
    box-shadow: 0 4px 14px rgba(0, 0, 0, 0.15);
}

.btn-white:hover {
    background: rgba(255, 255, 255, 0.95);
    transform: translateY(-3px) scale(1.02);
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.2);
    color: var(--primary-color);
}

.btn-icon {
    display: inline-flex;
    align-items: center;
    gap: 0.65rem;
}

.btn-icon svg,
.btn-icon i {
    width: 20px;
    height: 20px;
    transition: transform 0.3s ease;
}

.btn-icon:hover svg,
.btn-icon:hover i {
    transform: translateX(4px);
}

/* Floating Icons Animation */
.floating-icons {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    overflow: hidden;
    z-index: 1;
    pointer-events: none;
}

.floating-icon {
    position: absolute;
    opacity: 0.1;
    animation: float 20s infinite ease-in-out;
}

.floating-icon:nth-child(1) { left: 10%; top: 20%; animation-delay: 0s; }
.floating-icon:nth-child(2) { right: 10%; top: 40%; animation-delay: 2s; }
.floating-icon:nth-child(3) { left: 20%; bottom: 30%; animation-delay: 4s; }
.floating-icon:nth-child(4) { right: 20%; top: 60%; animation-delay: 6s; }
.floating-icon:nth-child(5) { left: 50%; top: 10%; animation-delay: 3s; }

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

/* Themes Showcase Section */
.themes-showcase {
    padding: 5rem 0 6rem;
    background: var(--bg-light);
}

.showcase-section {
    padding: 3rem 0;
}

.section-title {
    text-align: center;
    margin-bottom: 4.5rem;
}

.section-title h2 {
    font-size: 3.5rem;
    margin-bottom: 1rem;
    font-weight: 900;
    letter-spacing: -0.02em;
    color: var(--text-color);
}

.section-title p {
    color: var(--text-light);
    font-size: 1.2rem;
    font-weight: 400;
}

/* Large Theme Showcase Cards */
.theme-showcase-grid {
    display: flex;
    flex-direction: column;
    gap: 3.5rem;
    max-width: 1200px;
    margin: 0 auto;
}

.theme-card-large {
    background: white;
    border-radius: var(--border-radius-lg);
    overflow: hidden;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    display: grid;
    grid-template-columns: 1fr 1fr;
    min-height: 480px;
    border: 1px solid rgba(0, 0, 0, 0.05);
}

.theme-card-large:hover {
    transform: translateY(-10px);
    box-shadow: 0 30px 60px -12px rgba(0, 0, 0, 0.18);
    border-color: rgba(17, 162, 215, 0.2);
}

.theme-card-large.reverse {
    grid-template-columns: 1fr 1fr;
}

.theme-card-large.reverse .theme-card-image {
    order: 2;
}

.theme-card-large.reverse .theme-card-content {
    order: 1;
}

.theme-card-image {
    position: relative;
    overflow: hidden;
    background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 2rem;
    min-height: 400px;
}

.theme-card-image img {
    width: 100%;
    height: auto;
    object-fit: contain;
    transition: transform 0.6s cubic-bezier(0.4, 0, 0.2, 1);
    border-radius: 8px;
    box-shadow: 0 8px 16px rgba(0, 0, 0, 0.1);
    max-height: 500px;
}

.theme-card-large:hover .theme-card-image img {
    transform: scale(1.03);
}

.theme-card-content {
    padding: 3.5rem;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.theme-badge {
    display: inline-block;
    padding: 0.5rem 1.25rem;
    background: linear-gradient(135deg, rgba(17, 162, 215, 0.1) 0%, rgba(218, 48, 141, 0.1) 100%);
    color: var(--primary-color);
    border-radius: 50px;
    font-size: 0.8rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1.2px;
    margin-bottom: 1.5rem;
    width: fit-content;
    border: 1px solid rgba(17, 162, 215, 0.2);
}

.theme-card-content h3 {
    font-size: 2.75rem;
    margin-bottom: 1.25rem;
    font-weight: 900;
    color: var(--text-color);
    letter-spacing: -0.02em;
    line-height: 1.2;
}

.theme-card-content p {
    font-size: 1.1rem;
    line-height: 1.7;
    color: var(--text-light);
    margin-bottom: 2rem;
}

.theme-features {
    list-style: none;
    margin-bottom: 2.5rem;
    display: grid;
    gap: 1rem;
}

.theme-features li {
    padding: 0.85rem 0;
    color: var(--text-color);
    font-size: 1rem;
    display: flex;
    align-items: center;
    gap: 1rem;
    font-weight: 500;
}

.theme-features li::before {
    content: '✓';
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 28px;
    height: 28px;
    background: var(--primary-color);
    color: white;
    border-radius: 50%;
    font-weight: bold;
    flex-shrink: 0;
    font-size: 0.875rem;
    box-shadow: 0 2px 8px rgba(17, 162, 215, 0.3);
}

.theme-card-footer {
    display: flex;
    flex-direction: column;
    gap: 1rem;
    margin-top: auto;
    padding-top: 1rem;
}

.theme-price {
    font-size: 2.5rem;
    font-weight: 900;
    color: var(--primary-color);
    letter-spacing: -0.02em;
}

.theme-card-actions {
    display: flex;
    align-items: center;
    gap: 1rem;
}

/* Wishlist Heart Button */
.theme-wishlist-btn {
    width: 44px;
    height: 44px;
    border-radius: 50%;
    padding-top: 5px;
    border: 2px solid var(--border-color);
    background: var(--bg-color);
    color: var(--text-color);
    display: inline-flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    font-size: 1.4rem;
    flex-shrink: 0;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08);
}

.theme-wishlist-btn:hover {
    border-color: var(--error-color);
    color: var(--error-color);
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(239, 68, 68, 0.2);
}

.theme-wishlist-btn.active {
    background: var(--error-color);
    border-color: var(--error-color);
    color: white;
}

.theme-wishlist-btn.active:hover {
    background: #dc2626;
    border-color: #dc2626;
    box-shadow: 0 4px 12px rgba(239, 68, 68, 0.3);
}

/* Add to Cart Button - Gradient */
.theme-cart-btn {
    flex: 1;
    padding: 0.875rem 1.5rem;
    background: var(--light-gradient);
    /* background: linear-gradient(135deg, #11a2d7 0%, #da308d 100%); */
    color: white;
    border: none;
    border-radius: 50px;
    font-weight: 700;
    font-size: 0.875rem;
    cursor: pointer;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.4rem;
    letter-spacing: 0.02em;
    text-decoration: none;
    white-space: nowrap;
    min-width: fit-content;
}

.theme-cart-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(17, 162, 215, 0.5);
        background: linear-gradient(135deg, #11a2d7 0%, #da308d 100%) !important;
    color: #FFFFFF;
}

.theme-cart-btn i {
    font-size: 1rem;
}

/* Checkout Button - Success Green */
.theme-cart-btn.checkout {
    background: linear-gradient(135deg, #10b981 0%, #059669 100%);
    box-shadow: 0 4px 14px rgba(16, 185, 129, 0.4);
}

.theme-cart-btn.checkout:hover {
    box-shadow: 0 6px 20px rgba(16, 185, 129, 0.5);
}

/* View Details Button */
.theme-details-btn {
    padding: 0.75rem 1.5rem !important;
    background: white;
    color: var(--primary-color);
    border: 2px solid var(--border-color);
    border-radius: 50px;
    font-weight: 600;
    font-size: 0.875rem;
    cursor: pointer;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.4rem;
    text-decoration: none;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.06);
    white-space: nowrap;
}

.theme-details-btn:hover {
    background: var(--bg-light);
    border-color: var(--primary-color);
    color: var(--primary-color);
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
}

.theme-details-btn i {
    font-size: 0.9rem;
    transition: transform 0.3s ease;
}

.theme-details-btn:hover i {
    transform: translateX(4px);
}

.theme-price del {
    font-size: 1.35rem;
    color: var(--text-light);
    margin-right: 0.75rem;
    font-weight: 400;
}

.btn-view-theme {
    padding: 0.8rem 2.5rem;
    /* background: var(--primary-color); */
    /* background: linear-gradient(135deg, var(--primary-color) 0%, var(--secondary-color) 100%); */
    color: var(--primary-color);
    border: none;
    border-radius: 50px;
    font-weight: 700;
    font-size: 1rem;
    cursor: pointer;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    box-shadow: 0 4px 14px rgba(17, 162, 215, 0.35);
    letter-spacing: 0.02em;
    position: relative;
    overflow: hidden;
}

.btn-view-theme::after {
    content: '→';
    margin-left: 0.25rem;
    transition: transform 0.3s ease;
}

.btn-view-theme:hover {
    background: linear-gradient(135deg, #0d8bbf 0%, #b52571 100%);
    transform: translateY(-3px) scale(1.02);
    box-shadow: 0 8px 24px rgba(218, 48, 141, 0.45);
    color: white;
}

.btn-view-theme:hover::after {
    transform: translateX(4px);
}

/* Two Column Layout */
.theme-card-large.two-column {
    grid-template-columns: 1fr 1fr;
}

.theme-grid-two-columns {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 2.5rem;
    max-width: 1200px;
    margin: 0 auto 0;
    background: var(--light-gradient);
}

.theme-card-medium {
    background: white;
    border-radius: var(--border-radius-lg);
    overflow: hidden;
    /* box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08); */
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    display: flex;
    flex-direction: column;
    border: 1px solid rgba(0, 0, 0, 0.05);
}

.theme-card-medium:hover {
    transform: translateY(-10px);
    box-shadow: 0 30px 60px -12px rgba(0, 0, 0, 0.18);
    border-color: rgba(218, 48, 141, 0.2);
}

.theme-card-medium .theme-card-image {
    min-height: 300px;
    height: auto;
    padding: 1.5rem;
    background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
}

.theme-card-medium .theme-card-image img {
    max-height: 350px;
}

.theme-card-medium .theme-card-content {
    padding: 2.5rem;
}

.theme-card-medium h3 {
    font-size: 2.25rem;
    font-weight: 900;
    letter-spacing: -0.02em;
}

/* ===================================
   MODERN SHOWCASE DESIGN
=================================== */

.themes-showcase-modern {
    padding: 4rem 0 6rem;
    background: #fafafa;
}

.showcase-header {
    margin-bottom: 3rem;
}

.showcase-header h2 {
    font-size: 2.5rem;
    font-weight: 900;
    color: #1a1a1a;
    margin-bottom: 1rem;
}

.showcase-header p {
    font-size: 1.125rem;
    color: #666;
    margin-bottom: 0;
}

/* Modern Card Styles */
.showcase-card {
    border-radius: 24px;
    padding: 2rem;
    position: relative;
    overflow: hidden;
    transition: all 0.4s ease;
    display: flex;
    flex-direction: column;
    box-shadow: 0 2px 12px rgba(0, 0, 0, 0.06);
    height: 100%;
}

.showcase-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 12px 32px rgba(0, 0, 0, 0.12);
}

/* Card Header Section */
.card-header-section {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-bottom: 1.5rem;
}

/* Card Icon */
.card-icon {
    width: 48px;
    height: 48px;
    background: rgba(255, 255, 255, 0.95);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.12);
    border: 1px solid rgba(0, 0, 0, 0.08);
    flex-shrink: 0;
}

.card-icon svg {
    color: #1a1a1a;
}

/* Card Category */
.card-category {
    font-size: 0.75rem;
    font-weight: 700;
    color: rgba(0, 0, 0, 0.5);
    text-transform: uppercase;
    letter-spacing: 1px;
}

/* Card Image Wrapper */
.card-image-wrapper {
    width: 100%;
    height: 280px;
    border-radius: 16px;
    overflow: hidden;
    margin-bottom: 1.5rem;
    position: relative;
}

.card-image {
    width: 100%;
    height: 100%;
    transition: transform 3s ease-out;
}

.showcase-card:hover .card-image {
    transform: translateY(-30%);
}

.card-image img {
    width: 100%;
    height: auto;
    object-fit: cover;
    object-position: top;
    display: block;
}

/* Card Content */
.card-content {
    flex: 1;
    display: flex;
    flex-direction: column;
}

.card-badge {
    font-size: 0.75rem;
    font-weight: 700;
    color: rgba(0, 0, 0, 0.5);
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 1rem;
}

.card-title {
    font-size: 1.75rem;
    font-weight: 900;
    color: #1a1a1a;
    margin-bottom: 0.75rem;
    line-height: 1.2;
}

.card-description {
    font-size: 0.9375rem;
    line-height: 1.6;
    color: #666;
    margin-bottom: 1.5rem;
}

/* Card Features */
.card-features {
    list-style: none;
    margin: 1.5rem 0;
    padding: 0;
}

.card-features li {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-size: 0.875rem;
    color: #333;
    margin-bottom: 0.75rem;
}

.card-features li i {
    color: #10b981;
    font-size: 1rem;
}

/* Card Footer */
.card-footer {
    margin-top: auto;
    padding-top: 1.5rem;
}

.card-price {
    font-size: 2rem;
    font-weight: 900;
    color: #000;
    margin-bottom: 1.25rem;
    letter-spacing: -0.02em;
}

.card-actions {
    display: flex;
    gap: 0.75rem;
    margin-bottom: 1.25rem;
}

/* Card Buttons */
.card-wishlist-btn {
    width: 48px;
    height: 48px;
    border-radius: 50%;
    border: none;
    padding-top: 3px;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all 0.3s ease;
    font-size: 1.25rem;
    box-shadow: 0 4px 12px rgba(239, 68, 68, 0.3);
}

.card-wishlist-btn:hover {
    background: #dc2626;
    transform: scale(1.1);
    box-shadow: 0 6px 16px rgba(239, 68, 68, 0.4);
    color: white;
}

.card-wishlist-btn.active {
    background: var(--secondary-color);
    color: white;
}

.card-cart-btn {
    flex: 1;
    padding: 0.875rem 1.75rem;
    background: linear-gradient(135deg, #3b82f6 0%, #8b5cf6 100%);
    color: white;
    border: none;
    border-radius: 24px;
    font-weight: 700;
    font-size: 0.9375rem;
    cursor: pointer;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    box-shadow: 0 4px 12px rgba(59, 130, 246, 0.3);
}

.card-cart-btn:hover {
    background: linear-gradient(135deg, #2563eb 0%, #7c3aed 100%);
    transform: translateY(-2px);
    box-shadow: 0 6px 16px rgba(59, 130, 246, 0.4);
}

.card-cart-btn i {
    font-size: 0.875rem;
}

.card-view-link {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    color: #1a1a1a;
    font-size: 0.875rem;
    font-weight: 700;
    text-decoration: none;
    transition: all 0.3s ease;
    opacity: 0.8;
}

.card-view-link:hover {
    gap: 0.75rem;
    color: #000;
    opacity: 1;
}

.card-view-link i {
    font-size: 0.75rem;
}


.no-products-message {
    grid-column: 1 / -1;
    text-align: center;
    padding: 4rem 2rem;
    color: #666;
}

/* ===================================
   MODERN PRODUCT CARDS (Shop/Archive)
=================================== */

.modern-product-card {
    border-radius: 20px;
    position: relative;
    overflow: hidden;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    box-shadow: 0 2px 12px rgba(0, 0, 0, 0.08);
    height: 100%;
    display: flex;
    flex-direction: column;
    width: 100%;
    min-width: 0;
}

.modern-product-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 12px 32px rgba(0, 0, 0, 0.15);
}

/* Image Wrapper - Full Width at Top */
.modern-card-image-wrapper {
    width: 100%;
    height: 300px;
    overflow: hidden;
    position: relative;
    flex-shrink: 0;
}

.modern-card-image-wrapper img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: top center;
    display: block;
    transition: object-position 5s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.modern-product-card:hover .modern-card-image-wrapper img {
    object-position: bottom center;
}

/* Overlay Content */
.modern-card-overlay {
    padding: 2rem;
    flex: 0 0 auto;
    display: flex;
    flex-direction: column;
    position: relative;
}

.modern-card-icon {
    width: 48px;
    height: 48px;
    background: rgba(255, 255, 255, 0.95);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1.25rem;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.12);
    border: 1px solid rgba(0, 0, 0, 0.08);
}

.modern-card-icon svg {
    color: #1a1a1a;
    width: 24px;
    height: 24px;
}

.modern-card-content {
    flex: 1;
    display: flex;
    flex-direction: column;
}

.modern-card-badge {
    font-size: 0.75rem;
    font-weight: 700;
    color: rgba(0, 0, 0, 0.5);
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 0.75rem;
}

.modern-card-title {
    font-size: 1.5rem;
    font-weight: 800;
    color: #1a1a1a;
    margin-bottom: 0.75rem;
    line-height: 1.3;
}

.modern-card-title a {
    color: #1a1a1a;
    text-decoration: none;
    transition: color 0.3s ease;
}

.modern-card-title a:hover {
    color: #000;
}

.modern-card-description {
    font-size: 0.9375rem;
    line-height: 1.6;
    color: #555;
    margin-bottom: 1.5rem;
}

.modern-card-footer {
    margin-top: auto;
    padding-top: 0.75rem;
}

.modern-card-price {
    font-size: 1.75rem;
    font-weight: 900;
    color: var(--primary-color);
    margin-bottom: 1rem;
    letter-spacing: -0.02em;
}

.modern-card-actions {
    display: flex;
    gap: 0.75rem;
    margin-bottom: 1rem;
}

.modern-card-wishlist-btn {
    width: 44px;
    height: 44px;
    padding-top: 5px;
    border-radius: 50%;
    border: 2px solid rgba(0, 0, 0, 0.25);
    background: white;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all 0.3s ease;
    font-size: 1.125rem;
    color: #333;
    box-shadow: 0 2px 6px rgba(0, 0, 0, 0.1);
}

.modern-card-wishlist-btn:hover {
    border-color: var(--secondary-color);
    color: var(--secondary-color);
    transform: scale(1.1);
}

.modern-card-wishlist-btn.active {
    background: var(--secondary-color);
    border-color: var(--secondary-color);
    color: white;
}

.modern-card-cart-btn {
    flex: 1;
    padding: 0.75rem 1.5rem;
    background: linear-gradient(135deg, var(--primary-color) 0%, var(--secondary-color) 100%);
    color: white;
    border: none;
    border-radius: 22px;
    font-weight: 700;
    font-size: 0.875rem;
    cursor: pointer;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    box-shadow: 0 4px 12px rgba(17, 162, 215, 0.3);
}

.modern-card-cart-btn:hover {
    background: linear-gradient(135deg, #0d8bbf 0%, #b8246f 100%);
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(17, 162, 215, 0.4);
}

.modern-card-cart-btn i {
    font-size: 0.875rem;
}

.modern-card-view-link {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    color: #1a1a1a;
    font-size: 0.875rem;
    font-weight: 700;
    text-decoration: none;
    transition: all 0.3s ease;
    opacity: 0.8;
}

.modern-card-view-link:hover {
    gap: 0.75rem;
    color: #000;
    opacity: 1;
}

.modern-card-view-link i {
    font-size: 0.75rem;
}

/* Features Section - Modern Design */
.features-section {
    padding: 6rem 0;
    background: linear-gradient(180deg, #f8fafc 0%, #ffffff 100%);
    position: relative;
    overflow: hidden;
}

.features-bg-pattern {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-image:
        radial-gradient(circle at 20% 80%, rgba(17, 162, 215, 0.05) 0%, transparent 50%),
        radial-gradient(circle at 80% 20%, rgba(218, 48, 141, 0.05) 0%, transparent 50%),
        radial-gradient(circle at 40% 40%, rgba(247, 220, 111, 0.03) 0%, transparent 30%);
    pointer-events: none;
}

/* Section Header */
.section-header {
    margin-bottom: 4rem;
    position: relative;
    z-index: 1;
}

.section-badge {
    display: inline-block;
    padding: 0.5rem 1.25rem;
    background: linear-gradient(135deg, rgba(17, 162, 215, 0.1) 0%, rgba(218, 48, 141, 0.1) 100%);
    color: var(--primary-color);
    font-size: 0.875rem;
    font-weight: 600;
    border-radius: 50px;
    margin-bottom: 1rem;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.section-title-main {
    font-size: 2.75rem;
    font-weight: 800;
    color: var(--text-color);
    margin-bottom: 1rem;
    line-height: 1.2;
}

.section-subtitle {
    font-size: 1.125rem;
    color: var(--text-light);
    max-width: 600px;
    margin: 0 auto;
    line-height: 1.7;
}

/* Features Grid Modern */
.features-grid-modern {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
    max-width: 1200px;
    margin: 0 auto 4rem;
    position: relative;
    z-index: 1;
}

/* Feature Card Modern */
.feature-card-modern {
    background: white;
    padding: 2.5rem 2rem;
    border-radius: 20px;
    position: relative;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    border: 1px solid rgba(0, 0, 0, 0.06);
    overflow: hidden;
}

.feature-card-modern::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, var(--primary-color), var(--secondary-color));
    opacity: 0;
    transition: opacity 0.3s ease;
}

.feature-card-modern:hover {
    transform: translateY(-10px);
    box-shadow: 0 25px 50px rgba(0, 0, 0, 0.1);
    border-color: transparent;
}

.feature-card-modern:hover::before {
    opacity: 1;
}

/* Feature Icon Wrapper */
.feature-icon-wrapper {
    position: relative;
    width: 80px;
    height: 80px;
    margin-bottom: 1.5rem;
}

.feature-icon-inner {
    width: 80px;
    height: 80px;
    border-radius: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2rem;
    position: relative;
    z-index: 2;
    transition: all 0.3s ease;
}

.feature-icon-ring {
    position: absolute;
    top: -8px;
    left: -8px;
    width: 96px;
    height: 96px;
    border-radius: 24px;
    opacity: 0.15;
    z-index: 1;
    transition: all 0.3s ease;
}

.feature-card-modern:hover .feature-icon-ring {
    transform: scale(1.1);
    opacity: 0.25;
}

.feature-card-modern:hover .feature-icon-inner {
    transform: scale(1.05);
}

/* Icon Color Variants */
.feature-icon-primary .feature-icon-inner {
    background: linear-gradient(135deg, #e0f4fc 0%, #b8e6f7 100%);
    color: var(--primary-color);
}
.feature-icon-primary .feature-icon-ring {
    background: var(--primary-color);
}

.feature-icon-secondary .feature-icon-inner {
    background: linear-gradient(135deg, #fce8f4 0%, #f8c8e4 100%);
    color: var(--secondary-color);
}
.feature-icon-secondary .feature-icon-ring {
    background: var(--secondary-color);
}

.feature-icon-accent .feature-icon-inner {
    background: linear-gradient(135deg, #fef9e7 0%, #fcf0c8 100%);
    color: #d4a818;
}
.feature-icon-accent .feature-icon-ring {
    background: var(--accent-color);
}

.feature-icon-success .feature-icon-inner {
    background: linear-gradient(135deg, #d4edda 0%, #b8dfbe 100%);
    color: #28a745;
}
.feature-icon-success .feature-icon-ring {
    background: #28a745;
}

.feature-icon-info .feature-icon-inner {
    background: linear-gradient(135deg, #e7f1ff 0%, #cce0ff 100%);
    color: #0056b3;
}
.feature-icon-info .feature-icon-ring {
    background: #0056b3;
}

.feature-icon-warning .feature-icon-inner {
    background: linear-gradient(135deg, #fff3e0 0%, #ffe0b3 100%);
    color: #e65100;
}
.feature-icon-warning .feature-icon-ring {
    background: #e65100;
}

/* Feature Content */
.feature-content h3 {
    font-size: 1.25rem;
    font-weight: 700;
    color: var(--text-color);
    margin-bottom: 0.75rem;
}

.feature-content p {
    color: var(--text-light);
    font-size: 0.9375rem;
    line-height: 1.7;
    margin: 0;
}

/* Feature Number */
.feature-number {
    position: absolute;
    top: 1.5rem;
    right: 1.5rem;
    font-size: 3rem;
    font-weight: 800;
    color: rgba(0, 0, 0, 0.03);
    line-height: 1;
    transition: all 0.3s ease;
}

.feature-card-modern:hover .feature-number {
    color: rgba(17, 162, 215, 0.1);
}

/* Features Stats */
.features-stats {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 3rem;
    padding: 3rem;
    background: white;
    border-radius: 20px;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.06);
    max-width: 900px;
    margin: 0 auto;
    position: relative;
    z-index: 1;
}

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

.stat-number {
    font-size: 2.5rem;
    font-weight: 800;
    background: linear-gradient(135deg, var(--primary-color) 0%, var(--secondary-color) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    line-height: 1.2;
    margin-bottom: 0.25rem;
}

.stat-label {
    font-size: 0.9375rem;
    color: var(--text-light);
    font-weight: 500;
}

.stat-divider {
    width: 1px;
    height: 50px;
    background: linear-gradient(180deg, transparent, rgba(0,0,0,0.1), transparent);
}

/* Legacy Feature Card Support */
.features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
    gap: 2.5rem;
    max-width: 1200px;
    margin: 0 auto;
}

.feature-card {
    background: var(--bg-light);
    padding: 2.5rem 2rem;
    border-radius: var(--border-radius-lg);
    text-align: center;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.05);
    border: 1px solid rgba(0, 0, 0, 0.05);
}

.feature-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 12px 32px rgba(0, 0, 0, 0.12);
    background: white;
    border-color: rgba(17, 162, 215, 0.15);
}

.feature-icon {
    width: 72px;
    height: 72px;
    margin: 0 auto 1.75rem;
    background: linear-gradient(135deg, var(--primary-color) 0%, var(--secondary-color) 100%);
    border-radius: 18px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 2rem;
    box-shadow: 0 4px 16px rgba(17, 162, 215, 0.3);
}

.feature-card h3 {
    font-size: 1.35rem;
    margin-bottom: 1rem;
    font-weight: 800;
    color: var(--text-color);
}

.feature-card p {
    color: var(--text-light);
    line-height: 1.7;
    font-size: 1rem;
}

/* Features Section Responsive */
@media (max-width: 991.98px) {
    .features-grid-modern {
        grid-template-columns: repeat(2, 1fr);
    }

    .section-title-main {
        font-size: 2.25rem;
    }

    .features-stats {
        gap: 2rem;
        padding: 2rem;
    }

    .stat-number {
        font-size: 2rem;
    }
}

@media (max-width: 767.98px) {
    .features-section {
        padding: 4rem 0;
    }

    .features-grid-modern {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }

    .section-title-main {
        font-size: 1.875rem;
    }

    .section-subtitle {
        font-size: 1rem;
    }

    .feature-card-modern {
        padding: 2rem 1.5rem;
    }

    .features-stats {
        flex-wrap: wrap;
        gap: 1.5rem;
        padding: 1.5rem;
    }

    .stat-divider {
        display: none;
    }

    .stat-item {
        flex: 1 1 40%;
    }

    .stat-number {
        font-size: 1.75rem;
    }
}

/* Products Section */
.products-section {
    padding: 5rem 0;
}

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

/* CTA Section */
.cta-section {
    padding: 7rem 0;
    background: linear-gradient(135deg, var(--bg-dark) 0%, #3a1528 100%);
    color: white;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.cta-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background:
        radial-gradient(circle at 30% 50%, rgba(17, 162, 215, 0.15) 0%, transparent 50%),
        radial-gradient(circle at 70% 50%, rgba(218, 48, 141, 0.15) 0%, transparent 50%);
    z-index: 1;
}

.cta-section .container {
    position: relative;
    z-index: 2;
}

.cta-section h2 {
    color: white;
    font-size: 3.5rem;
    margin-bottom: 1.25rem;
    font-weight: 900;
    letter-spacing: -0.02em;
}

.cta-section p {
    font-size: 1.3rem;
    margin-bottom: 3rem;
    opacity: 0.95;
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
    line-height: 1.7;
}
.cta-section .btn-view-theme {
    background-color: var(--primary-color);
    color: #FFFFFF;
}

/* ===================================
   Product Card Styles
=================================== */
.product-card {
    background: white;
    border-radius: var(--border-radius);
    overflow: hidden;
    transition: var(--transition);
    box-shadow: var(--shadow-sm);
    position: relative;
    display: flex;
    flex-direction: column;
}

.product-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-lg);
}

.product-image-wrapper {
    position: relative;
    overflow: hidden;
    aspect-ratio: 1;
    background: var(--bg-light);
}

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

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

.product-badge {
    position: absolute;
    top: 1rem;
    left: 1rem;
    background: var(--primary-color);
    color: white;
    padding: 0.375rem 0.75rem;
    border-radius: var(--border-radius);
    font-size: 0.875rem;
    font-weight: 600;
}

.product-badge.sale {
    background: var(--error-color);
}

.product-actions {
    position: absolute;
    top: 1rem;
    right: 1rem;
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
    opacity: 0;
    transform: translateX(10px);
    transition: var(--transition);
}

.product-card:hover .product-actions {
    opacity: 1;
    transform: translateX(0);
}

.product-action-btn {
    width: 40px;
    height: 40px;
    background: white;
    border: none;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    box-shadow: var(--shadow-md);
    transition: var(--transition);
    color: var(--text-color);
}

.product-action-btn:hover {
    background: var(--primary-color);
    color: white;
    transform: scale(1.1);
}

.product-action-btn.active {
    background: var(--error-color);
    color: white;
}

.product-action-btn.active svg,
.wishlist-btn.active svg {
    fill: currentColor;
}

.btn-add-to-wishlist.active {
    background: var(--error-color);
    color: white;
    border-color: var(--error-color);
}

.btn-add-to-wishlist.active svg {
    fill: currentColor;
}

.product-info {
    padding: 1.5rem;
    flex: 1;
    display: flex;
    flex-direction: column;
}

.product-category {
    color: var(--text-light);
    font-size: 0.875rem;
    margin-bottom: 0.5rem;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.product-title {
    font-size: 1.125rem;
    font-weight: 600;
    margin-bottom: 0.75rem;
    line-height: 1.4;
}

.product-title a {
    color: var(--text-color);
}

.product-title a:hover {
    color: var(--primary-color);
}

.product-rating {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    margin-bottom: 0.75rem;
}

.stars {
    color: var(--warning-color);
    font-size: 0.875rem;
}

.rating-count {
    color: var(--text-light);
    font-size: 0.875rem;
}

.product-price {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--primary-color);
    margin-bottom: 1rem;
}

.product-price del {
    color: var(--text-light);
    font-size: 1.125rem;
    margin-right: 0.5rem;
    font-weight: 400;
}

.product-card-footer {
    padding: 0 1.5rem 1.5rem;
}

.add-to-cart-btn {
    width: 100%;
    padding: 0.6rem !important;
    background: var(--primary-color);
    color: #FFFFFF;
    border: 1px solid #cccccc;
    /* border: none; */
    border-radius: 50px;
    font-weight: 700;
    cursor: pointer;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    font-size: 1rem;
    /* box-shadow: 0 4px 14px rgba(17, 162, 215, 0.3); */
}

.add-to-cart-btn:hover {
    transform: translateY(-2px);
    background: linear-gradient(135deg, var(--primary-color) 0%, var(--secondary-color) 100%);
    box-shadow: 0 6px 20px rgba(17, 162, 215, 0.4);
}

.add-to-cart-btn:active {
    transform: translateY(-1px) scale(1);
}

.add-to-cart-btn svg {
    width: 20px;
    height: 20px;
}

/* ===================================
   Shop Page Styles
=================================== */
.shop-container {
    padding: 3rem 0;
    background: #fafafa;
    min-height: 100vh;
}

.shop-header {
    margin-bottom: 2rem;
    padding-bottom: 0;
    border-bottom: 2px solid var(--border-color);
}

.shop-header h1 {
    margin-bottom: 0.5rem;
}

.shop-header-top {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 2rem;
    margin-bottom: 1rem;
}

.shop-search-box {
    display: flex;
    gap: 0.5rem;
    align-items: center;
    max-width: 400px;
    flex-shrink: 0;
}

.shop-search-box .product-search-input {
    width: 100%;
    padding: 0.75rem 1rem;
    border: 2px solid var(--border-color);
    border-radius: 8px;
    font-size: 0.9375rem;
    transition: all 0.3s ease;
}

.shop-search-box .product-search-input:focus {
    outline: none;
    border-color: var(--primary-color);
    box-shadow: 0 0 0 3px rgba(99, 102, 241, 0.1);
}

.shop-search-box .search-submit-btn {
    padding: 0.75rem 1.25rem;
    background: var(--primary-color);
    color: white;
    border: none;
    border-radius: 8px;
    cursor: pointer;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
}

.shop-search-box .search-submit-btn:hover {
    background: var(--primary-dark);
    transform: translateY(-2px);
}

.shop-search-box .search-submit-btn i {
    font-size: 1.125rem;
}

.breadcrumbs {
    display: flex;
    gap: 0.5rem;
    font-size: 0.875rem;
    color: var(--text-light);
    margin-bottom: 2rem;
    padding: 1rem 1.5rem;
    background: white;
    border-radius: 12px;
    box-shadow: 0 1px 3px rgba(0, 0, 0, 0.04);
}

.breadcrumbs a {
    color: var(--text-light);
    transition: color 0.2s ease;
}

.breadcrumbs a:hover {
    color: var(--primary-color);
}

.shop-sidebar {
    position: sticky;
    top: 100px;
    height: fit-content;
    padding-right: 2rem;
}

/* Shop Title Row - For mobile filter button alignment */
.shop-title-row {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 1rem;
}

/* Mobile Filter Toggle Button - Hidden on desktop */
.mobile-filter-toggle {
    display: none;
    align-items: center;
    gap: 0.4rem;
    background: linear-gradient(135deg, var(--primary-color) 0%, var(--secondary-color) 100%);
    color: white;
    border: none;
    padding: 0.6rem 1rem;
    border-radius: 10px;
    font-size: 0.85rem;
    font-weight: 600;
    cursor: pointer;
    box-shadow: 0 3px 10px rgba(17, 162, 215, 0.25);
    transition: all 0.3s ease;
    white-space: nowrap;
    flex-shrink: 0;
}

.mobile-filter-toggle:hover {
    transform: translateY(-1px);
    box-shadow: 0 4px 15px rgba(17, 162, 215, 0.35);
}

.mobile-filter-toggle i {
    font-size: 1rem;
}

/* Mobile Filter Overlay */
.mobile-filter-overlay {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.5);
    z-index: 1040;
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
}

.mobile-filter-overlay.active {
    opacity: 1;
    visibility: visible;
}

/* Mobile Sidebar Header - Hidden on desktop */
.mobile-sidebar-header {
    display: none;
    justify-content: space-between;
    align-items: center;
    padding: 1.25rem 1.5rem;
    border-bottom: 1px solid #e5e7eb;
    background: #f8fafc;
    margin: -1.5rem -1.5rem 1.5rem -1.5rem;
}

.mobile-sidebar-header h3 {
    font-size: 1.1rem;
    font-weight: 700;
    color: var(--text-color);
    margin: 0;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.mobile-sidebar-header h3 i {
    color: var(--primary-color);
}

.close-mobile-filters {
    width: 36px;
    height: 36px;
    background: white;
    border: 1px solid #e5e7eb;
    border-radius: 10px;
    color: var(--text-light);
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
}

.close-mobile-filters:hover {
    background: #fee2e2;
    border-color: #fecaca;
    color: #ef4444;
}

.shop-main {
    padding-left: 1rem;
}

/* Search Box in Sidebar */
.search-box {
    display: flex;
    gap: 0.5rem;
    align-items: center;
}

.product-search-input {
    flex: 1;
    padding: 0.75rem 1rem;
    border: 1px solid #e0e0e0;
    border-radius: 6px;
    font-size: 0.9375rem;
    transition: all 0.2s ease;
    background: #fafafa;
}

.product-search-input:focus {
    outline: none;
    border-color: var(--primary-color);
    background: white;
}

.search-submit-btn {
    width: 44px;
    height: 44px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--primary-color);
    color: white;
    border: none;
    border-radius: 6px;
    cursor: pointer;
    transition: all 0.2s ease;
    flex-shrink: 0;
}

.search-submit-btn:hover {
    background: #0d8bbf;
}

.search-submit-btn i {
    font-size: 1.125rem;
}

/* Active Filters */
.active-filters {
    background: #f0f9ff;
    border: 1px solid var(--primary-color);
    border-radius: 8px;
    padding: 1rem 1.25rem;
    margin-bottom: 1.5rem;
}

.active-filters-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.active-filters-title {
    font-weight: 600;
    color: var(--primary-color);
    font-size: 0.9375rem;
}

.clear-filters {
    background: white;
    color: var(--primary-color);
    border: 1px solid var(--primary-color);
    padding: 0.375rem 0.875rem;
    border-radius: 6px;
    font-size: 0.8125rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.2s ease;
}

.clear-filters:hover {
    background: var(--primary-color);
    color: white;
}

/* Sidebar Widgets */
.sidebar-widget {
    background: white;
    padding: 1.5rem;
    border-radius: 8px;
    margin-bottom: 1.5rem;
    border: 1px solid #e0e0e0;
}

.sidebar-widget h3 {
    font-size: 1rem;
    font-weight: 700;
    margin-bottom: 1.25rem;
    padding-bottom: 0.875rem;
    border-bottom: 2px solid #f0f0f0;
    color: #2c3e50;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.sidebar-widget h3 i {
    color: var(--primary-color);
    font-size: 1.125rem;
}

.filter-group {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

.filter-option {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    padding: 0.75rem;
    cursor: pointer;
    transition: all 0.2s ease;
    border-radius: 6px;
    background: #fafafa;
    border: 1px solid transparent;
}

.filter-option:hover {
    background: #f0f9ff;
    border-color: var(--primary-color);
}

.filter-option input[type="checkbox"] {
    width: 18px;
    height: 18px;
    cursor: pointer;
    accent-color: var(--primary-color);
    flex-shrink: 0;
}

.filter-label {
    flex: 1;
    font-size: 0.9375rem;
    color: #2c3e50;
    font-weight: 500;
}

.filter-count {
    font-size: 0.8125rem;
    color: #9e9e9e;
    background: white;
    padding: 0.25rem 0.5rem;
    border-radius: 12px;
    font-weight: 600;
}

.filter-option input[type="checkbox"]:checked ~ .filter-label {
    color: var(--primary-color);
    font-weight: 600;
}

.filter-option input[type="checkbox"]:checked ~ .filter-count {
    background: var(--primary-color);
    color: white;
}

.shop-toolbar {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1.25rem;
    background: white;
    border-radius: var(--border-radius);
    margin-bottom: 2rem;
    box-shadow: var(--shadow-sm);
}

.shop-results {
    color: var(--text-light);
}

.shop-controls {
    display: flex;
    gap: 1rem;
    align-items: center;
}

.view-toggle {
    display: flex;
    gap: 0.5rem;
}

.view-btn {
    width: 36px;
    height: 36px;
    border: 1px solid var(--border-color);
    background: white;
    border-radius: 4px;
    cursor: pointer;
    transition: var(--transition);
    display: flex;
    align-items: center;
    justify-content: center;
}

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

.shop-sort select {
    padding: 0.5rem 1rem;
    border: 1px solid var(--border-color);
    border-radius: var(--border-radius);
    background: white;
    cursor: pointer;
}

/* Shop Products Row */
.products-row {
    margin-top: 1.5rem;
    min-height: 400px;
    transition: opacity 0.3s ease;
    row-gap: 2rem;
}

/* No Products Found */
.no-products-found {
    text-align: center;
    padding: 4rem 2rem;
}

.no-products-found i {
    font-size: 4rem;
    color: #e0e0e0;
    margin-bottom: 1rem;
}

.no-products-found h3 {
    color: #2c3e50;
    margin-bottom: 0.5rem;
    font-size: 1.5rem;
}

.no-products-found p {
    color: #9e9e9e;
    font-size: 1rem;
}

.products-row .col-lg-6,
.products-row .col-md-6,
.products-row .col-sm-12 {
    display: flex;
}

.products-row .modern-product-card {
    width: 100%;
    margin: 0;
}

.products-row .product {
    width: 100%;
    margin: 0;
}

/* Remove default WooCommerce list styling */
ul.products {
    list-style: none;
    margin: 0;
    padding: 0;
}

ul.products li.product {
    margin: 0;
}

/* ===================================
   Single Product Page
=================================== */
.single-product-container {
    padding: 3rem 0;
    background: #f8f9fa;
    overflow-x: hidden;
}

.single-product-container .container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 1.5rem;
    overflow: hidden;
}

.product-layout {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    margin-bottom: 4rem;
    overflow: hidden;
}

.product-gallery {
    position: sticky;
    top: 100px;
    height: fit-content;
    min-width: 0;
    overflow: hidden;
}

.main-product-image {
    aspect-ratio: 1;
    border-radius: var(--border-radius);
    overflow: hidden;
    margin-bottom: 1rem;
    background: var(--bg-light);
}

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

.product-thumbnails {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 1rem;
}

.thumbnail {
    aspect-ratio: 1;
    border-radius: var(--border-radius);
    overflow: hidden;
    cursor: pointer;
    border: 2px solid transparent;
    transition: var(--transition);
}

.thumbnail:hover,
.thumbnail.active {
    border-color: var(--primary-color);
}

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

.product-details {
    padding-top: 1rem;
    min-width: 0;
    overflow: hidden;
}

.product-meta {
    margin-bottom: 1.5rem;
}

.product-meta .product-category {
    display: inline-block;
    margin-bottom: 0.75rem;
}

.product-details h1 {
    font-size: 2.25rem;
    margin-bottom: 1rem;
}

.product-details .product-rating {
    margin-bottom: 1.5rem;
}

.product-details .product-price {
    font-size: 2rem;
    margin-bottom: 1.5rem;
}
.woocommerce:where(body:not(.woocommerce-uses-block-theme)) div.product span.price {
    color: var(--primary-color);
}

.product-description {
    color: var(--text-light);
    line-height: 1.8;
    margin-bottom: 2rem;
    padding-bottom: 2rem;
    border-bottom: 1px solid var(--border-color);
}

.product-options {
    margin-bottom: 2rem;
}

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

.option-group label {
    display: block;
    font-weight: 600;
    margin-bottom: 0.75rem;
}

.size-options,
.color-options {
    display: flex;
    gap: 0.75rem;
    flex-wrap: wrap;
}

.size-option,
.color-option {
    padding: 0.625rem 1.25rem;
    border: 2px solid var(--border-color);
    border-radius: var(--border-radius);
    cursor: pointer;
    transition: var(--transition);
    background: white;
    font-weight: 500;
}

.size-option:hover,
.color-option:hover {
    border-color: var(--primary-color);
}

.size-option.selected,
.color-option.selected {
    background: var(--primary-color);
    color: white;
    border-color: var(--primary-color);
}

.color-option {
    width: 40px;
    height: 40px;
    padding: 0;
    border-radius: 50%;
    position: relative;
}

.color-option.selected::after {
    content: '✓';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    color: white;
    font-weight: bold;
}

/* Generic variation options */
.generic-options {
    display: flex;
    gap: 0.75rem;
    flex-wrap: wrap;
}

.generic-option {
    padding: 0.525rem 1.25rem;
    border: 2px solid var(--border-color);
    border-radius: 50px;
    cursor: pointer;
    transition: var(--transition);
    background: white;
    font-weight: 500;
    text-align: center;
}


.generic-option:hover {
    border-color: var(--primary-color);
}

.generic-option.selected {
    background: var(--primary-color);
    color: white;
    border-color: var(--primary-color);
}

/* Variation buttons mobile styles */
@media (max-width: 576px) {
    .generic-options {
        flex-direction: column;
        gap: 0.5rem;
    }

    .generic-option {
        width: 100%;
        padding: 0.75rem 1rem;
        font-size: 0.9rem;
        border-radius: 8px;
        display: flex;
        align-items: center;
        justify-content: center;
    }

    .generic-option.selected {
        box-shadow: 0 2px 8px rgba(17, 162, 215, 0.3);
    }

    .size-options,
    .color-options {
        flex-wrap: wrap;
        gap: 0.5rem;
    }

    .size-option {
        padding: 0.6rem 1rem;
        font-size: 0.85rem;
    }
}

/* Variation description */
.variation-description {
    margin-top: 1rem;
    padding: 0.875rem 1rem;
    background-color: #e5f5fb;
    border-radius: 0 var(--border-radius, 4px) var(--border-radius, 4px) 0;
    font-size: 0.9rem;
    line-height: 1.5;
    color: var(--text-color, #333);
}

.variation-description:empty {
    display: none;
}

/* Variation stock status messages */
.variation-stock-status {
    margin-top: 1rem;
    font-size: 0.9rem;
}

.variation-stock-status .in-stock {
    color: #22c55e;
    font-weight: 500;
}

.variation-stock-status .out-of-stock {
    color: #ef4444;
    font-weight: 500;
}

.variation-stock-status .select-options {
    color: #6b7280;
    font-style: italic;
}

.variation-stock-status .unavailable {
    color: #f59e0b;
    font-weight: 500;
}

/* Disabled add to cart button for variable products */
.add-to-cart-btn.disabled {
    opacity: 0.6;
    cursor: not-allowed;
}

.product-quantity {
    margin-bottom: 2rem;
}

.quantity-selector {
    display: inline-flex;
    align-items: center;
    gap: 1rem;
    background: var(--bg-light);
    padding: 0.5rem;
    border-radius: var(--border-radius);
}

.quantity-selector .qty-btn {
    width: 40px;
    height: 40px;
    font-size: 1.25rem;
    padding-bottom: 3px;
}
.qty-minus {
    border-top-left-radius: 7px;
    border-bottom-left-radius: 7px;
}
.qty-plus {
    border-top-right-radius: 7px;
    border-bottom-right-radius: 7px;
}
.quantity-selector .qty-btn:hover {
    background-color: var(--primary-color);
}

.quantity-selector .qty-input {
    width: 60px;
    font-size: 1.125rem;
}

.product-actions-group {
    display: flex;
    gap: 1rem;
    margin-bottom: 2rem;
}

.product-actions-group .btn {
    flex: 1;
    padding: 0.775rem 1.25rem;
    font-size: 0.9375rem;
    white-space: nowrap;
}

.btn-add-to-wishlist {
    background: white;
    color: var(--text-color);
    border: 2px solid var(--border-color);
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
}

.btn-add-to-wishlist:hover {
    border-color: var(--error-color);
    color: var(--error-color);
}

.btn-live-demo {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: white;
    border: none;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    transition: all 0.3s ease;
}

.btn-live-demo:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(102, 126, 234, 0.3);
    color: white;
}

.btn-live-demo svg {
    flex-shrink: 0;
}

.product-info-tabs {
    margin-top: 4rem;
    background: white;
    border-radius: var(--border-radius);
    box-shadow: var(--shadow-sm);
    overflow: hidden;
}

.tabs-nav {
    display: flex;
    border-bottom: 2px solid var(--border-color);
}

.tab-link {
    padding: 1.25rem 2rem;
    border: none;
    background: transparent;
    font-weight: 600;
    cursor: pointer;
    transition: var(--transition);
    border-bottom: 3px solid transparent;
    color: var(--text-light);
}

.tab-link:hover,
.tab-link.active {
    color: var(--primary-color);
    border-bottom-color: var(--primary-color);
}

.tab-content {
    padding: 2rem;
    display: none;
}

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

/* ===================================
   Related Products Section
=================================== */
.related-products {
    margin-top: 4rem;
    padding-top: 3rem;
    border-top: 1px solid var(--border-color);
}

.cart-suggestions {
    margin-top: 3rem;
    padding-top: 2rem;
    border-top: none;
}

.cart-empty-content + .cart-suggestions {
    margin-top: 4rem;
}

.related-products-header {
    text-align: center;
    margin-bottom: 2.5rem;
}

.related-products-header h2 {
    font-size: 2rem;
    font-weight: 700;
    color: var(--text-color);
    margin-bottom: 0.5rem;
}

.related-products-header p {
    color: var(--text-light);
    font-size: 1rem;
}

.related-products-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 1.5rem;
}

.related-product-card {
    background: var(--card-bg, #f8f9fa);
    border-radius: 16px;
    overflow: hidden;
    transition: all 0.3s ease;
    display: flex;
    flex-direction: column;
}

.related-product-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.1);
}

.related-product-image {
    position: relative;
    aspect-ratio: 4/3;
    overflow: hidden;
}

.related-product-image a {
    display: block;
    width: 100%;
    height: 100%;
}

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

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

.related-wishlist-btn {
    position: absolute;
    top: 0.75rem;
    right: 0.75rem;
    width: 36px;
    height: 36px;
    border-radius: 50%;
    background: white;
    border: none;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
    color: var(--text-light);
    opacity: 0;
    transform: translateY(-10px);
}

.related-product-card:hover .related-wishlist-btn {
    opacity: 1;
    transform: translateY(0);
}

.related-wishlist-btn:hover {
    background: var(--secondary-color);
    color: white;
    transform: scale(1.1);
}

.related-wishlist-btn.active {
    background: var(--secondary-color);
    color: white;
    opacity: 1;
    transform: translateY(0);
}

.related-wishlist-btn.active svg {
    fill: currentColor;
}

.related-product-info {
    padding: 1.25rem;
    display: flex;
    flex-direction: column;
    flex-grow: 1;
}

.related-product-title {
    font-size: 1rem;
    font-weight: 600;
    margin-bottom: 0.5rem;
    line-height: 1.4;
}

.related-product-title a {
    color: var(--text-color);
    text-decoration: none;
    transition: color 0.3s ease;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.related-product-title a:hover {
    color: var(--primary-color);
}

.related-product-price {
    font-size: 1.125rem;
    font-weight: 700;
    color: var(--primary-color);
    margin-bottom: 1rem;
}

.related-product-price del {
    color: var(--text-light);
    font-size: 0.875rem;
    font-weight: 400;
    margin-right: 0.5rem;
}

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

.related-cart-btn {
    width: 100%;
    padding: 0.75rem 1rem;
    border: none;
    border-radius: 50px;
    background: var(--primary-color);
    color: white;
    font-size: 0.875rem;
    font-weight: 600;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    transition: all 0.3s ease;
    margin-top: auto;
}

.related-cart-btn:hover {
    transform: translateY(-2px);
    background: linear-gradient(135deg, var(--primary-color) 0%, var(--secondary-color) 100%);
    box-shadow: 0 5px 15px rgba(17, 162, 215, 0.3);
}

.related-cart-btn svg {
    flex-shrink: 0;
}

/* Related Products Responsive */
@media (max-width: 1024px) {
    .related-products-grid {
        grid-template-columns: repeat(3, 1fr);
    }
}

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

    .related-products-header h2 {
        font-size: 1.5rem;
    }

    .related-product-info {
        padding: 1rem;
    }

    .related-product-title {
        font-size: 0.9rem;
    }

    .related-product-price {
        font-size: 1rem;
    }

    .related-wishlist-btn {
        opacity: 1;
        transform: translateY(0);
    }
}

@media (max-width: 480px) {
    .related-products-grid {
        grid-template-columns: 1fr;
        max-width: 320px;
        margin: 0 auto;
    }

    .related-product-card {
        flex-direction: row;
    }

    .related-product-image {
        width: 120px;
        min-width: 120px;
        aspect-ratio: 1;
    }

    .related-product-info {
        padding: 1rem;
        justify-content: center;
    }

    .related-cart-btn {
        padding: 0.6rem 0.75rem;
        font-size: 0.8rem;
    }
}

/* ===================================
   WooCommerce Reviews Section
=================================== */
#reviews {
    padding: 0;
}

#reviews .woocommerce-Reviews-title {
    font-size: 1.75rem;
    font-weight: 700;
    color: var(--text-color);
    margin-bottom: 1.5rem;
    display: flex;
    align-items: center;
    gap: 0.75rem;
}

#reviews .woocommerce-Reviews-title::before {
    content: '\f4b1';
    font-family: 'bootstrap-icons';
    font-size: 1.5rem;
    color: var(--primary-color);
}

/* No Reviews Message */
#reviews .woocommerce-noreviews {
    background: linear-gradient(135deg, rgba(17, 162, 215, 0.05) 0%, rgba(218, 48, 141, 0.05) 100%);
    border: 1px dashed rgba(17, 162, 215, 0.3);
    border-radius: 16px;
    padding: 2rem;
    text-align: center;
    color: var(--text-light);
    font-size: 1rem;
    margin-bottom: 2rem;
}

/* Review Form Container */
#review_form_wrapper {
    background: #f8fafc;
    border-radius: 20px;
    padding: 2rem;
    margin-top: 1.5rem;
}

#review_form .comment-reply-title {
    font-size: 1.35rem;
    font-weight: 700;
    color: var(--text-color);
    margin-bottom: 0.5rem;
}

#review_form .comment-notes {
    color: var(--text-light);
    font-size: 0.9rem;
    margin-bottom: 1.5rem;
}

/* Star Rating Selection */
#review_form .comment-form-rating {
    margin-bottom: 1.5rem;
}

#review_form .comment-form-rating label {
    display: block;
    font-weight: 600;
    color: var(--text-color);
    margin-bottom: 0.75rem;
    font-size: 0.95rem;
}

#review_form .stars {
    display: inline-flex;
    gap: 0.25rem;
    margin-bottom: 0;
}

#review_form .stars a {
    color: #d1d5db;
    font-size: 1.75rem;
    text-decoration: none;
    transition: all 0.2s ease;
}

#review_form .stars a:hover,
#review_form .stars a.active,
#review_form .stars.selected a {
    color: #fbbf24;
}

#review_form .stars.selected a.active ~ a {
    color: #d1d5db;
}

/* Form Fields */
#review_form .comment-form-comment {
    margin-bottom: 1.5rem;
}

#review_form .comment-form-comment label {
    display: block;
    font-weight: 600;
    color: var(--text-color);
    margin-bottom: 0.75rem;
    font-size: 0.95rem;
}

#review_form .comment-form-comment textarea,
#review_form textarea#comment {
    width: 100%;
    min-height: 140px;
    padding: 1rem 1.25rem;
    border: 2px solid #e5e7eb;
    border-radius: 14px;
    font-size: 0.95rem;
    font-family: inherit;
    transition: all 0.3s ease;
    background: white;
    resize: vertical;
}

#review_form textarea:focus {
    outline: none;
    border-color: var(--primary-color);
    box-shadow: 0 0 0 4px rgba(17, 162, 215, 0.1);
}

#review_form textarea::placeholder {
    color: #9ca3af;
}

/* Author Fields (Name, Email) */
#review_form .comment-form-author,
#review_form .comment-form-email {
    margin-bottom: 1.25rem;
}

#review_form .comment-form-author label,
#review_form .comment-form-email label {
    display: block;
    font-weight: 600;
    color: var(--text-color);
    margin-bottom: 0.5rem;
    font-size: 0.95rem;
}

#review_form .comment-form-author input,
#review_form .comment-form-email input {
    width: 100%;
    max-width: 400px;
    padding: 0.875rem 1.25rem;
    border: 2px solid #e5e7eb;
    border-radius: 12px;
    font-size: 0.95rem;
    transition: all 0.3s ease;
    background: white;
}

#review_form .comment-form-author input:focus,
#review_form .comment-form-email input:focus {
    outline: none;
    border-color: var(--primary-color);
    box-shadow: 0 0 0 4px rgba(17, 162, 215, 0.1);
}

/* Cookies Checkbox */
#review_form .comment-form-cookies-consent {
    display: flex;
    align-items: flex-start;
    gap: 0.75rem;
    margin-bottom: 1.5rem;
    padding: 1rem;
    background: white;
    border-radius: 12px;
    border: 1px solid #e5e7eb;
}

#review_form .comment-form-cookies-consent input[type="checkbox"] {
    width: 20px;
    height: 20px;
    accent-color: var(--primary-color);
    cursor: pointer;
    flex-shrink: 0;
    margin-top: 2px;
}

#review_form .comment-form-cookies-consent label {
    font-size: 0.875rem;
    color: var(--text-light);
    cursor: pointer;
    line-height: 1.5;
}

/* Submit Button */
#review_form .form-submit {
    margin-top: 1.5rem;
}

#review_form .form-submit input[type="submit"],
#review_form input#submit {
    background: linear-gradient(135deg, var(--primary-color) 0%, var(--secondary-color) 100%);
    color: white;
    border: none;
    padding: 1rem 2.5rem;
    font-size: 1rem;
    font-weight: 600;
    border-radius: 14px;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(17, 162, 215, 0.3);
}

#review_form .form-submit input[type="submit"]:hover,
#review_form input#submit:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(17, 162, 215, 0.4);
}

/* Required Field Asterisk */
#review_form .required {
    color: #ef4444;
    margin-left: 2px;
}

/* Existing Reviews List */
#reviews .commentlist {
    list-style: none;
    padding: 0;
    margin: 0 0 2rem;
}

#reviews .commentlist li.review {
    background: white;
    border-radius: 16px;
    padding: 1.5rem;
    margin-bottom: 1rem;
    border: 1px solid #e5e7eb;
    transition: all 0.3s ease;
}

#reviews .commentlist li.review:hover {
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
    border-color: rgba(17, 162, 215, 0.2);
}

#reviews .commentlist .comment_container {
    display: flex;
    gap: 1.25rem;
}

#reviews .commentlist .avatar {
    width: 56px;
    height: 56px;
    border-radius: 50%;
    flex-shrink: 0;
}

#reviews .commentlist .comment-text {
    flex: 1;
}

#reviews .commentlist .meta {
    display: flex;
    align-items: center;
    flex-wrap: wrap;
    gap: 0.75rem;
    margin-bottom: 0.75rem;
}

#reviews .commentlist .woocommerce-review__author {
    font-weight: 700;
    color: var(--text-color);
    font-size: 1rem;
}

#reviews .commentlist .woocommerce-review__published-date {
    color: var(--text-light);
    font-size: 0.85rem;
}

#reviews .commentlist .star-rating {
    font-size: 0.9rem;
}

#reviews .commentlist .description p {
    color: var(--text-color);
    line-height: 1.7;
    margin: 0;
}

/* Star Rating Display */
.star-rating {
    overflow: hidden;
    position: relative;
    height: 1.2em;
    line-height: 1.2;
    font-size: 1rem;
    width: 5.4em;
    font-family: 'star';
}

.star-rating::before {
    content: '★★★★★';
    color: #d1d5db;
    float: left;
    top: 0;
    left: 0;
    position: absolute;
    letter-spacing: 0.1em;
}

.star-rating span {
    overflow: hidden;
    float: left;
    top: 0;
    left: 0;
    position: absolute;
    padding-top: 1.5em;
}

.star-rating span::before {
    content: '★★★★★';
    top: 0;
    position: absolute;
    left: 0;
    color: #fbbf24;
    letter-spacing: 0.1em;
}

/* Responsive Reviews */
@media (max-width: 768px) {
    #review_form_wrapper {
        padding: 1.5rem;
    }

    #reviews .commentlist .comment_container {
        flex-direction: column;
        gap: 1rem;
    }

    #reviews .commentlist .avatar {
        width: 48px;
        height: 48px;
    }

    #review_form .comment-form-author input,
    #review_form .comment-form-email input {
        max-width: 100%;
    }
}

/* ===================================
   Order Received / Thank You Page
=================================== */

/* Hide duplicate/default WooCommerce elements */
.woocommerce-order-received .entry-header,
.woocommerce-order-received .entry-title {
    display: none !important;
}

/* Hide the default order details table that appears after our custom layout */
.woocommerce-order-received .woocommerce-order-details,
.woocommerce-order-received .woocommerce-customer-details,
.woocommerce-order-received .woocommerce-order-details__title,
.woocommerce-order-received .woocommerce-column__title {
    display: none !important;
}

.order-received-container {
    padding: 2rem 0 4rem;
    background: linear-gradient(180deg, #ffffff 0%, var(--bg-light) 100%);
    min-height: 100vh;
}

.order-success-header {
    text-align: center;
    margin-bottom: 2.5rem;
    padding: 3rem 2rem;
    background: white;
    border-radius: var(--border-radius-lg);
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
    border: 1px solid rgba(0, 0, 0, 0.05);
    animation: fadeInUp 0.6s ease-out;
}

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

.success-icon {
    width: 100px;
    height: 100px;
    margin: 0 auto 2rem;
    background: linear-gradient(135deg, var(--success-color) 0%, #059669 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 8px 24px rgba(16, 185, 129, 0.3);
    animation: successPulse 2s ease-in-out infinite;
}

@keyframes successPulse {
    0%, 100% {
        transform: scale(1);
        box-shadow: 0 8px 24px rgba(16, 185, 129, 0.3);
    }
    50% {
        transform: scale(1.05);
        box-shadow: 0 12px 32px rgba(16, 185, 129, 0.4);
    }
}

.success-icon svg {
    color: white;
}

.order-success-header h1 {
    font-size: 2.5rem;
    margin-bottom: 1rem;
    color: var(--text-color);
}

.success-message {
    font-size: 1.2rem;
    color: var(--text-light);
    margin-bottom: 0;
}

.order-summary-cards {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 1.5rem;
    margin-bottom: 2.5rem;
}

.summary-card {
    background: white;
    padding: 2rem;
    border-radius: var(--border-radius);
    box-shadow: 0 2px 12px rgba(0, 0, 0, 0.06);
    text-align: center;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    border: 2px solid var(--border-color);
    animation: fadeInUp 0.6s ease-out;
    animation-fill-mode: both;
}

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

.summary-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.1);
    border-color: var(--primary-color);
}

.card-label {
    font-size: 0.875rem;
    color: var(--text-light);
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 0.75rem;
    font-weight: 600;
}

.card-value {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--primary-color);
}

.order-details-layout {
    display: grid;
    grid-template-columns: 1.5fr 1fr;
    gap: 2rem;
    margin-bottom: 2.5rem;
}

.order-section {
    background: white;
    padding: 2rem;
    border-radius: var(--border-radius-lg);
    box-shadow: 0 2px 12px rgba(0, 0, 0, 0.06);
    margin-bottom: 1.5rem;
    border: 1px solid rgba(0, 0, 0, 0.05);
    transition: all 0.3s ease;
}

.order-section:hover {
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
    transform: translateY(-2px);
}

.order-section h2 {
    font-size: 1.5rem;
    margin-bottom: 1.5rem;
    padding-bottom: 1rem;
    border-bottom: 2px solid var(--border-color);
    display: flex;
    align-items: center;
    gap: 0.75rem;
}

.order-section h2 svg {
    color: var(--primary-color);
}

/* Bootstrap Table Customizations for Order Details */
.order-items-table.table-responsive {
    margin-top: 1rem;
}

.order-items-table .table {
    margin-bottom: 0;
}

.order-items-table .table thead th {
    font-weight: 700;
    font-size: 0.875rem;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    border-bottom: 2px solid var(--border-color);
    padding: 1rem;
}

.order-items-table .table tbody td {
    padding: 1.25rem 1rem;
}

.order-items-table .table tfoot th,
.order-items-table .table tfoot td {
    padding: 1rem;
    font-size: 1rem;
}

.order-items-table .table tfoot .table-primary th {
    font-size: 1.25rem;
}

.order-items-table .table tfoot .table-primary td {
    font-size: 1.5rem;
}

/* Product Thumbnail Styling */
.product-thumbnail {
    width: 80px;
    height: 80px;
    border-radius: var(--border-radius);
    overflow: hidden;
    background: var(--bg-light);
    border: 2px solid var(--border-color);
    transition: all 0.3s ease;
    display: inline-block;
}

.product-thumbnail:hover {
    border-color: var(--primary-color);
    transform: scale(1.05);
}

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

/* Override Bootstrap primary color with theme colors */
.order-items-table .text-primary {
    color: var(--primary-color) !important;
}

.order-items-table .table-primary {
    --bs-table-bg: var(--bg-light);
    --bs-table-border-color: var(--border-color);
}

.customer-details,
.address-block {
    line-height: 1.8;
    color: var(--text-color);
}

.detail-item {
    padding: 0.75rem 0;
    border-bottom: 1px solid var(--border-color);
}

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

.detail-label {
    font-size: 0.875rem;
    color: var(--text-light);
    margin-bottom: 0.25rem;
    font-weight: 500;
}

.detail-value {
    font-size: 1rem;
    color: var(--text-color);
    font-weight: 500;
}

.address-block {
    padding: 1rem;
    background: var(--bg-light);
    border-radius: var(--border-radius);
    border-left: 4px solid var(--primary-color);
}

.order-actions {
    display: flex;
    gap: 1rem;
    justify-content: center;
    flex-wrap: wrap;
    padding: 2rem 0 1rem;
}

.order-actions .btn {
    min-width: 220px;
    box-shadow: 0 4px 14px rgba(0, 0, 0, 0.1);
}

.order-actions .btn:hover {
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.15);
}
/* ===================================
   Cart Page - Modern Bootstrap Design
=================================== */
.cart-page-container {
    padding: 1.5rem 0 3rem;
    background: #fafbfc;
    min-height: 80vh;
}

.cart-page-container .container {
    max-width: 1320px;
}

/* Cart Header */
.cart-page-container .shop-header {
    margin-bottom: 1.25rem;
    padding-bottom: 0;
    text-align: center;
}

.cart-page-container .shop-header h1 {
    font-size: 2rem;
    font-weight: 800;
    background: linear-gradient(135deg, var(--primary-color) 0%, var(--secondary-color) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin-bottom: 0.25rem;
}

.cart-page-container .breadcrumbs {
    display: flex;
    justify-content: center;
    gap: 0.5rem;
    font-size: 0.9rem;
    color: var(--text-light);
    margin-top: 0.5rem;
}

.cart-page-container .breadcrumbs a {
    color: var(--primary-color);
    text-decoration: none;
    transition: color 0.3s ease;
}

.cart-page-container .breadcrumbs a:hover {
    color: var(--secondary-color);
}

/* Cart Page Notices */
.cart-page-container .woocommerce-notices-wrapper {
    margin: 2rem 0;
}

.cart-page-container .woocommerce-message,
.cart-page-container .woocommerce-error,
.cart-page-container .woocommerce-info {
    background: white;
    border-radius: 12px;
    padding: 1.25rem 1.5rem;
    margin-bottom: 1rem;
    border-left: 4px solid;
    box-shadow: 0 2px 12px rgba(0, 0, 0, 0.08);
    display: flex !important;
    align-items: flex-start !important;
    gap: 1rem;
    position: relative;
    padding-left: 4rem !important;
}

.cart-page-container .woocommerce-message {
    border-left-color: var(--success-color);
    background: rgba(16, 185, 129, 0.05);
}

.cart-page-container .woocommerce-message::before {
    content: '✓';
    position: absolute;
    left: 1.5rem;
    top: 1.25rem;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 28px;
    height: 28px;
    border-radius: 50%;
    background: var(--success-color);
    color: white;
    font-weight: 700;
    font-size: 14px;
}

.cart-page-container .woocommerce-error {
    border-left-color: var(--error-color);
    background: rgba(239, 68, 68, 0.05);
}

.cart-page-container .woocommerce-error::before {
    content: '!';
    position: absolute;
    left: 1.5rem;
    top: 1.25rem;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 28px;
    height: 28px;
    border-radius: 50%;
    background: var(--error-color);
    color: white;
    font-weight: 700;
    font-size: 14px;
}

.cart-page-container .woocommerce-info {
    border-left-color: var(--primary-color);
    background: rgba(17, 162, 215, 0.05);
}

.cart-page-container .woocommerce-info::before {
    content: 'i';
    position: absolute;
    left: 1.5rem;
    top: 1.25rem;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 28px;
    height: 28px;
    border-radius: 50%;
    background: var(--primary-color);
    color: white;
    font-weight: 700;
    font-size: 14px;
}

.cart-page-container .woocommerce-message a,
.cart-page-container .woocommerce-error a,
.cart-page-container .woocommerce-info a {
    color: var(--primary-color);
    font-weight: 600;
    text-decoration: none;
    border-bottom: 1px solid transparent;
    transition: border-color 0.3s ease;
}

.cart-page-container .woocommerce-message a:hover,
.cart-page-container .woocommerce-error a:hover,
.cart-page-container .woocommerce-info a:hover {
    border-bottom-color: var(--primary-color);
}

/* Empty Cart Styles */
.cart-empty-content {
    background: white;
    border-radius: 20px;
    padding: 4rem 2rem;
    text-align: center;
    margin: 3rem 0;
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.08);
    animation: fadeInUp 0.6s ease-out;
}

.cart-empty-icon {
    margin-bottom: 2rem;
    display: flex;
    justify-content: center;
}

.cart-empty-icon svg {
    width: 120px;
    height: 120px;
}

.cart-empty-message {
    font-size: 1.25rem;
    color: var(--text-color);
    margin-bottom: 2rem;
    font-weight: 500;
}

.btn-return-shop {
    padding: 1rem 2.5rem;
    font-size: 1rem;
    font-weight: 600;
    border-radius: 12px;
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    transition: all 0.3s ease;
}

.btn-return-shop:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(17, 162, 215, 0.3);
}

/* Cart Items Wrapper */
.cart-items-wrapper {
    animation: fadeInUp 0.6s ease-out;
}

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

/* Individual Cart Item */
.cart-item {
    background: white;
    border-radius: 12px;
    padding: 1.75rem;
    margin-bottom: 1rem;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.04);
    border: 1px solid #e5e7eb;
    transition: all 0.3s ease;
}

.cart-item:hover {
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
    border-color: rgba(17, 162, 215, 0.2);
}

/* Cart Item Remove Button */
.cart-item-remove {
    width: 32px;
    height: 32px;
    border-radius: 50%;
    border: 1px solid #e5e7eb;
    background: white;
    color: #9ca3af;
    font-size: 1.25rem;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all 0.3s ease;
    padding: 0;
}

.cart-item-remove:hover {
    background: rgba(239, 68, 68, 0.1);
    border-color: var(--secondary-color);
    color: var(--secondary-color);
    transform: scale(1.1);
}

/* Cart Item Removing State */
.cart-item.removing {
    opacity: 0.5;
    pointer-events: none;
    position: relative;
}

.cart-item.removing::after {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 24px;
    height: 24px;
    margin: -12px 0 0 -12px;
    border: 3px solid rgba(17, 162, 215, 0.2);
    border-top-color: var(--primary-color);
    border-radius: 50%;
    animation: cart-item-spin 0.8s linear infinite;
}

@keyframes cart-item-spin {
    to {
        transform: rotate(360deg);
    }
}

/* Cart Empty Message */
.cart-empty-message {
    background: white;
    border-radius: 12px;
    padding: 3rem 2rem;
    text-align: center;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.04);
    border: 1px solid #e5e7eb;
}

.cart-empty-message h3 {
    color: var(--text-color);
    font-weight: 700;
}

.cart-empty-message p {
    color: var(--text-light);
}

/* Cart Item Image */
.cart-item-image {
    width: 100px;
    height: 100px;
    border-radius: 8px;
    overflow: hidden;
    border: 1px solid #e5e7eb;
}

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

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

/* Cart Item Details */
.cart-item-details {
    flex: 1;
}

.cart-item-name {
    font-size: 1.125rem;
    font-weight: 600;
    margin-bottom: 0.5rem;
    line-height: 1.4;
}

.cart-item-name a {
    color: var(--text-color);
    text-decoration: none;
    transition: color 0.3s ease;
}

.cart-item-name a:hover {
    color: var(--primary-color);
}

.cart-item-price {
    font-size: 1rem;
    color: var(--text-light);
}

.cart-item-price .amount {
    font-weight: 600;
    color: var(--primary-color);
}

/* Cart Item Quantity */
.cart-item-quantity {
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.cart-item-quantity .qty-label {
    font-size: 0.9rem;
    font-weight: 600;
    color: var(--text-light);
    white-space: nowrap;
}

.cart-item-quantity .quantity {
    display: inline-flex;
    align-items: center;
    border: 1px solid #e5e7eb;
    border-radius: 8px;
    overflow: hidden;
}

.cart-item-quantity input[type="number"] {
    width: 60px;
    text-align: center;
    border: none;
    padding: 0.5rem;
    font-size: 1rem;
    font-weight: 600;
}

.cart-item-quantity input[type="number"]::-webkit-inner-spin-button,
.cart-item-quantity input[type="number"]::-webkit-outer-spin-button {
    -webkit-appearance: none;
    margin: 0;
}

/* Cart Item Subtotal */
.cart-item-subtotal {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--text-color);
    white-space: nowrap;
}

.cart-item-subtotal .amount {
    color: var(--primary-color);
}

/* Cart Actions (Coupon & Update) */
.cart-actions {
    background: white;
    border-radius: 12px;
    padding: 1.75rem;
    margin-top: 1.5rem;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.04);
    border: 1px solid #e5e7eb;
}

.cart-coupon .input-group-text {
    background: #f9fafb;
    border-color: #e5e7eb;
    color: var(--primary-color);
}

.cart-coupon .form-control {
    border-color: #e5e7eb;
    padding: 0.75rem 1rem;
}

.cart-coupon .form-control:focus {
    border-color: var(--primary-color);
    box-shadow: 0 0 0 0.2rem rgba(17, 162, 215, 0.1);
}

.cart-coupon .btn-primary {
    background: var(--primary-color);
    border: none;
    padding: 0.75rem 1.5rem;
    font-weight: 600;
}

.cart-coupon .btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(17, 162, 215, 0.3);
     background: linear-gradient(135deg, var(--primary-color) 0%, var(--secondary-color) 100%);
}

.cart-actions .btn-outline-primary {
    border-color: var(--primary-color);
    color: var(--primary-color);
    padding: 0.75rem 1.5rem;
    font-weight: 600;
}

.cart-actions .btn-outline-primary:hover {
    background: var(--primary-color);
    border-color: var(--primary-color);
    color: white;
}

/* Cart Sidebar */
.cart-sidebar-wrapper {
    position: sticky;
    top: 2rem;
}

/* Cart Table */
.woocommerce-cart-form__contents {
    overflow-x: auto;
    -webkit-overflow-scrolling: touch;
}

.shop_table.cart {
    width: 100%;
    background: white;
    border-radius: 0;
    overflow: visible;
    box-shadow: none;
    border: none;
}

.shop_table.cart thead {
    background: linear-gradient(135deg, rgba(17, 162, 215, 0.08) 0%, rgba(218, 48, 141, 0.08) 100%);
}

.shop_table.cart thead th {
    padding: 1.75rem 1.5rem;
    font-weight: 800;
    text-transform: uppercase;
    font-size: 0.8125rem;
    letter-spacing: 0.08em;
    color: var(--text-color);
    border: none;
    text-align: left;
    font-family: var(--font-heading);
}

.shop_table.cart thead th.product-remove {
    width: 60px;
    text-align: center;
}

.shop_table.cart thead th.product-thumbnail {
    width: 120px;
}

.shop_table.cart thead th.product-name {
    min-width: 300px;
}

.shop_table.cart thead th.product-quantity {
    text-align: center;
    width: 120px;
}

.shop_table.cart thead th.product-subtotal {
    text-align: right;
    width: 140px;
}

.shop_table.cart tbody {
    border: none;
}

.shop_table.cart tbody tr {
    border-bottom: 1px solid rgba(17, 162, 215, 0.08);
    transition: all 0.3s ease;
}

.shop_table.cart tbody tr:hover {
    background: linear-gradient(135deg, rgba(17, 162, 215, 0.02) 0%, rgba(218, 48, 141, 0.02) 100%);
}

.shop_table.cart tbody tr:last-child {
    border-bottom: none;
}

.shop_table.cart td {
    padding: 2rem 1.5rem;
    vertical-align: middle;
    border: none;
}

/* Product Thumbnail */
.product-thumbnail {
    width: 120px;
    padding-right: 0.5rem !important;
}

.product-thumbnail img {
    width: 100px;
    height: 100px;
    object-fit: cover;
    border-radius: 12px;
    box-shadow: 0 2px 12px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease;
    border: 1px solid rgba(17, 162, 215, 0.08);
}

.product-thumbnail img:hover {
    transform: scale(1.05);
    box-shadow: 0 4px 16px rgba(0, 0, 0, 0.15);
}

/* Product Name */
.product-name {
    min-width: 300px;
    padding-right: 1.5rem !important;
}

.product-name a {
    font-weight: 600;
    font-size: 1.125rem;
    color: var(--text-color);
    text-decoration: none;
    transition: color 0.3s ease;
    display: inline-block;
    line-height: 1.4;
}

.product-name a:hover {
    color: var(--primary-color);
}

/* Product Price */
.product-price {
    font-weight: 700;
    font-size: 1.25rem;
    color: var(--primary-color);
}

/* Product Quantity */
.product-quantity {
    text-align: center;
}

.product-quantity .quantity {
    display: inline-block;
}

/* Product Subtotal */
.product-subtotal {
    font-weight: 800;
    font-size: 1.375rem;
    color: var(--text-color);
    text-align: right;
}

/* Quantity Controls */
.product-quantity {
    width: 150px;
}

.quantity {
    display: flex;
    align-items: center;
    gap: 0;
    border: 2px solid rgba(17, 162, 215, 0.15);
    border-radius: 50px;
    overflow: hidden;
    background: white;
    width: fit-content;
}

.quantity input[type="number"] {
    width: 60px;
    text-align: center;
    border: none;
    padding: 0.75rem 0.5rem;
    font-weight: 600;
    font-size: 1rem;
    background: transparent;
}

.quantity input[type="number"]::-webkit-inner-spin-button,
.quantity input[type="number"]::-webkit-outer-spin-button {
    -webkit-appearance: none;
    margin: 0;
}

.quantity input[type="number"]:focus {
    outline: none;
}

.quantity button {
    background: linear-gradient(135deg, var(--primary-color) 0%, var(--secondary-color) 100%);
    color: white;
    border: none;
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    font-size: 1.25rem;
    font-weight: 700;
    transition: all 0.3s ease;
}

.quantity button:hover {
    background: linear-gradient(135deg, #0d8bbf 0%, #b52571 100%);
    transform: scale(1.05);
}

.quantity button:active {
    transform: scale(0.95);
}

/* Product Subtotal */
.product-subtotal {
    font-weight: 800;
    font-size: 1.25rem;
    color: var(--text-color);
}

/* Remove Button */
.product-remove {
    width: 60px;
    text-align: center;
}

.product-remove a {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    background: rgba(239, 68, 68, 0.08);
    color: var(--secondary-color);
    border-radius: 50%;
    text-decoration: none;
    font-size: 1.5rem;
    transition: all 0.3s ease;
    font-weight: 400;
    border: 2px solid transparent;
}

.product-remove a:hover {
    background: rgba(239, 68, 68, 0.15);
    color: #dc2626;
    transform: scale(1.1);
    border-color: var(--secondary-color);
}

.product-remove a i {
    line-height: 1;
}

/* Actions Row */
.actions {
    padding: 2rem 1.5rem !important;
    background: linear-gradient(135deg, rgba(17, 162, 215, 0.04) 0%, rgba(218, 48, 141, 0.04) 100%);
    border-top: 2px solid rgba(17, 162, 215, 0.08);
}

.actions .coupon {
    display: flex;
    gap: 1rem;
    align-items: center;
    flex: 1;
}

.actions .coupon label {
    display: none;
}

.actions .coupon input[type="text"] {
    flex: 1;
    max-width: 280px;
    padding: 1rem 1.25rem;
    border: 1px solid #d1d5db;
    border-radius: 12px;
    font-family: inherit;
    font-size: 1rem;
    transition: all 0.3s ease;
    background: white;
}

.actions .coupon input[type="text"]:focus {
    outline: none;
    border-color: var(--primary-color);
    box-shadow: 0 0 0 4px rgba(17, 162, 215, 0.1);
}

.actions .coupon button {
    padding: 1rem 2.5rem;
    background: linear-gradient(135deg, var(--primary-color) 0%, var(--secondary-color) 100%);
    color: white;
    border: none;
    border-radius: 12px;
    font-weight: 700;
    font-size: 1rem;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: 0 4px 12px rgba(17, 162, 215, 0.3);
    white-space: nowrap;
}

.actions .coupon button:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(218, 48, 141, 0.4);
}

.actions .coupon button:active {
    transform: translateY(0);
}

.actions button[name="update_cart"] {
    padding: 1rem 2rem;
    background: white;
    color: var(--primary-color);
    border: 2px solid var(--primary-color);
    border-radius: 12px;
    font-weight: 700;
    font-size: 1rem;
    cursor: pointer;
    transition: all 0.3s ease;
    margin-left: auto;
}

.actions button[name="update_cart"]:hover {
    background: var(--primary-color);
    color: white;
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(17, 162, 215, 0.3);
}

.actions button[name="update_cart"]:active {
    transform: translateY(0);
}

/* Cart Sidebar */
.cart-sidebar {
    animation: fadeInRight 0.6s ease-out;
}

@keyframes fadeInRight {
    from {
        opacity: 0;
        transform: translateX(30px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

/* Cart Collaterals (Totals Sidebar) */
.cart-collaterals {
    position: sticky;
    top: 2rem;
}

.cart-totals-wrapper {
    position: sticky;
    top: 2rem;
}

.cart_totals {
    background: white;
    padding: 2.5rem;
    border-radius: 20px;
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.08);
    border: 2px solid rgba(17, 162, 215, 0.12);
}

.cart_totals h2 {
    font-size: 1.25rem;
    font-weight: 700;
    margin-bottom: 1.5rem;
    padding-bottom: 1rem;
    border-bottom: 2px solid rgba(17, 162, 215, 0.1);
    color: var(--text-color);
}

.cart_totals table {
    width: 100%;
    margin-bottom: 2rem;
}

.cart_totals th,
.cart_totals td {
    padding: 1rem 0;
    border-bottom: 1px solid rgba(0, 0, 0, 0.05);
    text-align: left;
}

.cart_totals th {
    font-weight: 600;
    color: var(--text-color);
    font-size: 0.9375rem;
}

.cart_totals td {
    text-align: right;
    font-weight: 600;
    color: var(--text-light);
}

.cart_totals .order-total th {
    font-size: 1.25rem;
    font-weight: 800;
    color: var(--text-color);
    padding-top: 1.5rem;
}

.cart_totals .order-total td {
    font-size: 1.75rem;
    font-weight: 800;
    color: var(--primary-color);
    padding-top: 1.5rem;
}

.cart_totals .order-total {
    border-top: 2px solid rgba(17, 162, 215, 0.15);
    border-bottom: none;
}

/* Shipping Calculator */
.shipping-calculator-form {
    background: linear-gradient(135deg, rgba(17, 162, 215, 0.05) 0%, rgba(218, 48, 141, 0.05) 100%);
    padding: 1.5rem;
    border-radius: 12px;
    margin-top: 1rem;
}

.shipping-calculator-form .form-row {
    margin-bottom: 1rem;
}

.shipping-calculator-form input,
.shipping-calculator-form select {
    width: 100%;
    padding: 0.75rem 1rem;
    border: 2px solid rgba(17, 162, 215, 0.15);
    border-radius: 12px;
    font-family: inherit;
    transition: all 0.3s ease;
}

.shipping-calculator-form input:focus,
.shipping-calculator-form select:focus {
    outline: none;
    border-color: var(--primary-color);
    box-shadow: 0 0 0 4px rgba(17, 162, 215, 0.1);
}

.shipping-calculator-form button {
    padding: 0.75rem 1.5rem;
    background: var(--primary-color);
    color: white;
    border: none;
    border-radius: 50px;
    font-weight: 700;
    cursor: pointer;
    transition: all 0.3s ease;
    margin-top: 0.5rem;
}

.shipping-calculator-form button:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(17, 162, 215, 0.3);
}

/* Proceed to Checkout Button */
.wc-proceed-to-checkout {
    margin-top: 2rem;
}

.wc-proceed-to-checkout .checkout-button {
    display: block;
    width: 100%;
    padding: 1.25rem 2rem;
    font-size: 1.125rem;
    font-weight: 700;
    font-family: var(--font-heading);
    background: linear-gradient(135deg, var(--primary-color) 0%, var(--secondary-color) 100%);
    color: white;
    border: none;
    border-radius: 12px;
    cursor: pointer;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    box-shadow: 0 4px 16px rgba(17, 162, 215, 0.3);
    text-align: center;
    text-decoration: none;
    position: relative;
    overflow: hidden;
}

.wc-proceed-to-checkout .checkout-button::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(255, 255, 255, 0.1);
    transform: translateX(-100%);
    transition: transform 0.3s ease;
}

.wc-proceed-to-checkout .checkout-button:hover {
    background: linear-gradient(135deg, #0d8bbf 0%, #b52571 100%);
    transform: translateY(-3px) scale(1.02);
    box-shadow: 0 8px 24px rgba(218, 48, 141, 0.45);
}

.wc-proceed-to-checkout .checkout-button:hover::before {
    transform: translateX(0);
}

.wc-proceed-to-checkout .checkout-button:active {
    transform: translateY(-1px) scale(1);
}

/* Continue Shopping Link */
.continue-shopping {
    text-align: center;
    margin-top: 1.5rem;
}

.continue-shopping a {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    color: var(--text-light);
    text-decoration: none;
    font-weight: 600;
    transition: all 0.3s ease;
    padding: 0.75rem 1.5rem;
    border-radius: 50px;
}

.continue-shopping a:hover {
    color: var(--primary-color);
    background: rgba(17, 162, 215, 0.08);
}

.continue-shopping a::before {
    content: '←';
    font-size: 1.25rem;
}

/* Empty Cart State */
.woocommerce-info,
.cart-empty {
    background: linear-gradient(135deg, rgba(17, 162, 215, 0.1) 0%, rgba(218, 48, 141, 0.1) 100%);
    padding: 3rem;
    border-radius: 20px;
    text-align: center;
    border: 2px dashed rgba(17, 162, 215, 0.2);
    margin: 3rem 0;
}

.woocommerce-info::before,
.cart-empty::before {
    content: '🛒';
    display: block;
    font-size: 4rem;
    margin-bottom: 1rem;
    opacity: 0.5;
}

.return-to-shop {
    text-align: center;
    margin-top: 2rem;
}

.return-to-shop .button {
    display: inline-block;
    padding: 1rem 2.5rem;
    background: linear-gradient(135deg, var(--primary-color) 0%, var(--secondary-color) 100%);
    color: white;
    border: none;
    border-radius: 50px;
    font-weight: 700;
    text-decoration: none;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: 0 4px 14px rgba(17, 162, 215, 0.35);
}

.return-to-shop .button:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 24px rgba(218, 48, 141, 0.45);
}

/* Cross-sells */
.cross-sells {
    margin-top: 4rem;
    animation: fadeInUp 0.6s ease-out 0.4s backwards;
}

.cross-sells h2 {
    font-size: 2rem;
    font-weight: 800;
    margin-bottom: 2rem;
    text-align: center;
    color: var(--text-color);
}

.cross-sells .products {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
    gap: 2rem;
}

/* ===================================
   Checkout Page - Modern Design
=================================== */

/* Fix checkout page margins - remove any extra spacing */
html.woocommerce-checkout,
body.woocommerce-checkout {
    margin: 0 !important;
    padding: 0 !important;
    border: 0 !important;
}

body.woocommerce-checkout #page,
body.woocommerce-checkout .site {
    margin: 0 !important;
    padding: 0 !important;
}

body.woocommerce-checkout .site-header {
    margin-top: 0 !important;
}

body.woocommerce-checkout .site-footer {
    margin-top: 0 !important;
    margin-bottom: 0 !important;
}

body.woocommerce-checkout #content,
body.woocommerce-checkout .site-content {
    margin: 0 !important;
    padding: 0 !important;
}

/* Remove footer margin on checkout page */
body.woocommerce-checkout .site-footer {
    margin-top: 0;
}

.woocommerce-checkout {
    padding: 1.5rem 0 3rem;
    background: linear-gradient(180deg, rgba(17, 162, 215, 0.02) 0%, rgba(255, 255, 255, 0) 100%);
    min-height: 80vh;
}

.checkout-container .container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 1.5rem;
}

/* Checkout Header */
.checkout-container .shop-header {
    margin-bottom: 1rem;
    padding-bottom: 0;
    text-align: center;
    padding-top: 1.7rem;
}

.checkout-container .shop-header h1 {
    font-size: 2rem;
    font-weight: 800;
    background: linear-gradient(135deg, var(--primary-color) 0%, var(--secondary-color) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin-bottom: 0.5rem;
}

.checkout-container .breadcrumbs {
    display: flex;
    justify-content: center;
    gap: 0.5rem;
    font-size: 0.9rem;
    color: var(--text-light);
    margin-top: 1rem;
}

.checkout-container .breadcrumbs a {
    color: var(--primary-color);
    text-decoration: none;
    transition: color 0.3s ease;
}

.checkout-container .breadcrumbs a:hover {
    color: var(--secondary-color);
}

/* Checkout Layout */
.checkout-layout {
    display: grid;
    grid-template-columns: 1fr 420px;
    gap: 2rem;
    align-items: start;
}

/* Main Checkout Form */
.checkout-main {
    animation: fadeInLeft 0.6s ease-out;
}

@keyframes fadeInLeft {
    from {
        opacity: 0;
        transform: translateX(-30px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

.checkout-section {
    background: white;
    border-radius: 16px;
    padding: 1.75rem;
    box-shadow: 0 4px 24px rgba(0, 0, 0, 0.06);
    border: 1px solid rgba(17, 162, 215, 0.08);
    transition: all 0.3s ease;
}

.checkout-section:hover {
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.08);
    border-color: rgba(17, 162, 215, 0.15);
}

.checkout-section h2 {
    font-size: 1.25rem;
    font-weight: 700;
    color: var(--text-color);
    margin-bottom: 1.5rem;
    padding-bottom: 1rem;
    border-bottom: 2px solid rgba(17, 162, 215, 0.1);
}

/* Form Styling */
.woocommerce-billing-fields,
.woocommerce-shipping-fields,
.woocommerce-additional-fields {
    display: grid;
    gap: 1.5rem;
}

.form-row {
    margin-bottom: 0;
}

.woocommerce-billing-fields .form-row,
.woocommerce-shipping-fields .form-row {
    display: flex;
    flex-direction: column;
}

.form-row label {
    font-weight: 600;
    font-size: 0.95rem;
    color: var(--text-color);
    margin-bottom: 0.5rem;
    display: flex;
    align-items: center;
    gap: 0.35rem;
}

.form-row label .required {
    color: var(--error-color);
    font-size: 0.875rem;
}

.form-row input[type="text"],
.form-row input[type="email"],
.form-row input[type="tel"],
.form-row input[type="password"],
.form-row select,
.form-row textarea {
    width: 100%;
    padding: 1rem 1.25rem;
    border: 1px solid #d1d5db;
    border-radius: 12px;
    font-size: 1rem;
    font-family: var(--font-primary);
    color: var(--text-color);
    background: white;
    transition: all 0.3s ease;
    line-height: 1.5;
}

.form-row input[type="text"]:focus,
.form-row input[type="email"]:focus,
.form-row input[type="tel"]:focus,
.form-row input[type="password"]:focus,
.form-row select:focus,
.form-row textarea:focus {
    outline: none;
    border-color: var(--primary-color);
    box-shadow: 0 0 0 3px rgba(17, 162, 215, 0.1);
    background: #fafbfc;
}

.form-row textarea {
    min-height: 140px;
    resize: vertical;
    padding: 1.125rem 1.25rem;
}

.form-row select {
    appearance: none;
    background-image: url("data:image/svg+xml,%3Csvg width='12' height='8' viewBox='0 0 12 8' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M1 1.5L6 6.5L11 1.5' stroke='%231f2937' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: right 1rem center;
    padding-right: 3rem;
}

/* Optional Fields */
.form-row .optional {
    font-size: 0.8rem;
    font-weight: 400;
    color: var(--text-light);
    margin-left: 0.25rem;
}

/* Additional Checkout Field Styling */
.woocommerce-checkout .woocommerce-input-wrapper {
    width: 100%;
}

.woocommerce-checkout input.input-text,
.woocommerce-checkout select {
    width: 100%;
    padding: 12px !important;
    border: 1px solid #ccc;
    border-radius: 12px;
    font-size: 1rem;
    font-family: var(--font-primary);
    color: var(--text-color);
    background: white;
    transition: all 0.3s ease;
    line-height: 1.5;
    box-shadow: 0 1px 3px rgba(0, 0, 0, 0.05);
}

.woocommerce-checkout input.input-text:hover,
.woocommerce-checkout select:hover {
    border-color: #b3b3b3;
}

.woocommerce-checkout input.input-text:focus,
.woocommerce-checkout select:focus {
    outline: none;
    border-color: var(--primary-color);
    box-shadow: 0 0 0 4px rgba(17, 162, 215, 0.12), 0 1px 3px rgba(0, 0, 0, 0.1);
    background: #fafbfc;
}

.woocommerce-checkout textarea {
    width: 100%;
    min-height: 140px;
    padding: 1.125rem 1.5rem;
    border: 1px solid #ccc;
    border-radius: 12px;
    font-size: 1rem;
    font-family: var(--font-primary);
    color: var(--text-color);
    background: white;
    transition: all 0.3s ease;
    line-height: 1.5;
    resize: vertical;
    box-shadow: 0 1px 3px rgba(0, 0, 0, 0.05);
}

.woocommerce-checkout textarea:hover {
    border-color: #b3b3b3;
}

.woocommerce-checkout textarea:focus {
    outline: none;
    border-color: var(--primary-color);
    box-shadow: 0 0 0 4px rgba(17, 162, 215, 0.12), 0 1px 3px rgba(0, 0, 0, 0.1);
    background: #fafbfc;
}

.woocommerce-checkout input.input-text::placeholder,
.woocommerce-checkout textarea::placeholder {
    color: #9ca3af;
    font-style: italic;
}

/* Select2 Dropdown Styling */
.woocommerce-checkout .select2-container {
    width: 100% !important;
}

.woocommerce-checkout .select2-container--default .select2-selection--single {
    height: auto;
    padding: 1.125rem 1.5rem;
    border: 1px solid #ccc;
    border-radius: 12px;
    background: white;
    transition: all 0.3s ease;
    box-shadow: 0 1px 3px rgba(0, 0, 0, 0.05);
}

.woocommerce-checkout .select2-container--default .select2-selection--single:hover {
    border-color: #b3b3b3;
}

.woocommerce-checkout .select2-container--default.select2-container--open .select2-selection--single,
.woocommerce-checkout .select2-container--default.select2-container--focus .select2-selection--single {
    border-color: var(--primary-color);
    box-shadow: 0 0 0 4px rgba(17, 162, 215, 0.12), 0 1px 3px rgba(0, 0, 0, 0.1);
    outline: none;
}

.woocommerce-checkout .select2-container--default .select2-selection--single .select2-selection__rendered {
    line-height: 1.5;
    padding: 0;
    color: var(--text-color);
}

.woocommerce-checkout .select2-container--default .select2-selection--single .select2-selection__arrow {
    height: 100%;
    right: 1rem;
}

.woocommerce-checkout .select2-dropdown {
    border: 1px solid #ccc;
    border-radius: 12px;
    box-shadow: 0 4px 16px rgba(0, 0, 0, 0.12);
    margin-top: 0.5rem;
}

.woocommerce-checkout .select2-container--default .select2-results__option {
    padding: 0.75rem 1.25rem;
    transition: all 0.2s ease;
}

.woocommerce-checkout .select2-container--default .select2-results__option--highlighted[aria-selected] {
    background: rgba(17, 162, 215, 0.1);
    color: var(--text-color);
}

.woocommerce-checkout .select2-container--default .select2-results__option[aria-selected=true] {
    background: rgba(17, 162, 215, 0.15);
    color: var(--primary-color);
    font-weight: 600;
}

/* Order Summary Sidebar */
.checkout-sidebar {
    animation: fadeInRight 0.6s ease-out;
}

@keyframes fadeInRight {
    from {
        opacity: 0;
        transform: translateX(30px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

.checkout-sidebar .order-summary {
    position: sticky;
    top: 1.5rem;
    background: white;
    border-radius: 16px;
    padding: 1.75rem;
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.08);
    border: 2px solid rgba(17, 162, 215, 0.12);
}

.checkout-sidebar .order-summary h2 {
    font-size: 1.25rem;
    font-weight: 700;
    color: var(--text-color);
    margin-bottom: 1.5rem;
    padding-bottom: 1rem;
    border-bottom: 2px solid rgba(17, 162, 215, 0.1);
}

/* Order Items */
.order-items {
    margin-bottom: 1.5rem;
}

.order-item {
    display: grid;
    grid-template-columns: 60px 1fr auto;
    gap: 1rem;
    padding: 1rem 0;
    border-bottom: 1px solid rgba(17, 162, 215, 0.08);
    align-items: center;
}

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

.order-item-image {
    width: 60px;
    height: 60px;
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
}

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

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

.order-item-name {
    font-weight: 600;
    font-size: 0.95rem;
    color: var(--text-color);
    margin-bottom: 0.25rem;
    line-height: 1.3;
}

.order-item-qty {
    font-size: 0.875rem;
    color: var(--text-light);
}

.order-item-price {
    font-weight: 700;
    font-size: 1.05rem;
    color: var(--primary-color);
    text-align: right;
}

/* Order Totals */
.order-totals {
    background: linear-gradient(135deg, rgba(17, 162, 215, 0.05) 0%, rgba(218, 48, 141, 0.05) 100%);
    border-radius: 12px;
    padding: 1.5rem;
    margin-top: 1.5rem;
}

.order-total-row {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0.75rem 0;
    font-size: 0.95rem;
    color: var(--text-color);
}

.order-total-row:not(:last-child) {
    border-bottom: 1px solid rgba(17, 162, 215, 0.08);
}

.order-total-row.total {
    padding-top: 1.25rem;
    margin-top: 0.5rem;
    border-top: 2px solid rgba(17, 162, 215, 0.15);
    font-size: 1.25rem;
    font-weight: 800;
}

.order-total-row.total span:first-child {
    color: var(--text-color);
}

.order-total-row.total span:last-child {
    color: var(--primary-color);
    font-size: 1.5rem;
}

.total-amount-wrapper {
    display: flex;
    align-items: baseline;
    gap: 0.5rem;
}

.total-amount-wrapper .currency-label {
    font-size: 0.75rem;
    font-weight: 600;
    color: var(--text-light);
    background: rgba(17, 162, 215, 0.1);
    padding: 0.2rem 0.5rem;
    border-radius: 4px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

/* Payment Methods */
.woocommerce-checkout-payment {
    background: white;
    border-radius: 16px;
    margin-top: 1.5rem;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.06);
}

.woocommerce-checkout-payment > h3 {
    font-size: 1.25rem;
    font-weight: 700;
    margin-bottom: 1.5rem;
    color: var(--text-color);
    padding-bottom: 0.75rem;
    border-bottom: 2px solid rgba(17, 162, 215, 0.1);
}

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

.wc_payment_method {
    margin-bottom: 0.75rem;
    padding: 0;
    background: white;
    border: 2px solid #e5e7eb;
    border-radius: 12px;
    transition: all 0.3s ease;
    cursor: pointer;
    overflow: hidden;
}

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

.wc_payment_method:hover {
    border-color: #b3b3b3;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08);
    transform: translateY(-1px);
}

.wc_payment_method.selected {
    border-color: var(--primary-color);
    box-shadow: 0 4px 16px rgba(17, 162, 215, 0.15);
    background: rgba(17, 162, 215, 0.02);
}

.wc_payment_method input[type="radio"] {
    position: absolute;
    opacity: 0;
    pointer-events: none;
}

.wc_payment_method input[type="radio"]:checked + label {
    background: rgba(17, 162, 215, 0.05);
    border-left: 4px solid var(--primary-color);
}

.wc_payment_method input[type="radio"]:checked ~ .payment_box {
    display: block;
}

.wc_payment_method label {
    font-weight: 600;
    font-size: 1rem;
    color: var(--text-color);
    display: flex;
    align-items: center;
    gap: 1rem;
    cursor: pointer;
    padding: 1.25rem 1.5rem;
    margin: 0;
    position: relative;
    transition: all 0.3s ease;
}

.wc_payment_method label::before {
    content: '';
    width: 22px;
    height: 22px;
    border: 2px solid #ccc;
    border-radius: 50%;
    flex-shrink: 0;
    transition: all 0.3s ease;
    position: relative;
    background: white;
}

.wc_payment_method input[type="radio"]:checked + label::before {
    border-color: var(--primary-color);
    border-width: 7px;
    background: white;
}

.wc_payment_method label:hover::before {
    border-color: var(--primary-color);
}

.wc_payment_method label img {
    max-height: 24px;
    width: auto;
    margin-left: auto;
}

.wc_payment_method input[type="radio"]:checked + label {
    color: var(--primary-color);
    font-weight: 700;
}

/* Payment Box (Description) */
.payment_box {
    background: rgba(17, 162, 215, 0.03);
    padding: 1.25rem 1.5rem;
    border-top: 1px solid rgba(17, 162, 215, 0.1);
    margin: 0;
    display: none;
}

.payment_box p {
    margin: 0;
    font-size: 0.9rem;
    line-height: 1.6;
    color: #6b7280;
}

.payment_box p:not(:last-child) {
    margin-bottom: 0.75rem;
}

/* Bank Transfer Details */
.payment_box .woocommerce-bacs-bank-details {
    margin-top: 1rem;
}

.payment_box .woocommerce-bacs-bank-details h3 {
    font-size: 0.95rem;
    font-weight: 700;
    margin-bottom: 0.75rem;
    color: var(--text-color);
}

.payment_box .woocommerce-bacs-bank-details ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.payment_box .woocommerce-bacs-bank-details li {
    padding: 0.5rem 0;
    border-bottom: 1px solid rgba(17, 162, 215, 0.1);
    display: flex;
    justify-content: space-between;
    font-size: 0.9rem;
}

.payment_box .woocommerce-bacs-bank-details li:last-child {
    border-bottom: none;
}

/* Payment Method Selected Styles */
.wc_payment_method input[type="radio"]:checked {
    border-color: var(--primary-color);
}

.wc_payment_method input[type="radio"]:checked ~ * {
    border-left-color: var(--primary-color);
}

/* Payment Description Link */
.payment_box a {
    color: var(--primary-color);
    font-weight: 600;
    text-decoration: none;
    border-bottom: 1px solid transparent;
    transition: border-color 0.3s ease;
}

.payment_box a:hover {
    border-bottom-color: var(--primary-color);
}

/* Payment Method Icons/Logos */
.wc_payment_method .payment_method_logo {
    max-height: 30px;
    width: auto;
    margin-left: auto;
}

/* Security & Trust Badges */
.woocommerce-checkout-payment .payment-security-info {
    text-align: center;
    padding: 1.25rem;
    background: rgba(16, 185, 129, 0.05);
    border-radius: 12px;
    margin-top: 1.5rem;
    margin-bottom: 1.5rem;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.75rem;
}

.payment-security-info::before {
    content: '🔒';
    font-size: 1.25rem;
}

.payment-security-info span {
    font-size: 0.9rem;
    color: #059669;
    font-weight: 600;
}

/* Privacy & Security Badge */
.woocommerce-checkout-payment::after {
    content: '';
    display: block;
    clear: both;
}

.woocommerce-privacy-policy-text {
    font-size: 0.85rem;
    color: #6b7280;
    text-align: center;
    padding: 1rem 0 0.5rem;
    border-top: 1px solid rgba(17, 162, 215, 0.1);
    margin-top: 1rem;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
}

.woocommerce-privacy-policy-text::before {
    content: '🔒';
    font-size: 1rem;
}

/* Place Order Button */
.form-row.place-order {
    margin-top: 0;
}

#place_order {
    width: 100%;
    padding: 1rem 2rem;
    background: var(--primary-color);
    color: white;
    border: none;
    border-radius: 50px;
    font-size: 1.15rem;
    font-weight: 700;
    font-family: var(--font-heading);
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: 0 4px 16px rgba(17, 162, 215, 0.3);
    position: relative;
    overflow: hidden;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.75rem;
}

#place_order::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255,255,255,0.2), transparent);
    transition: left 0.5s ease;
}

#place_order:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 24px rgba(17, 162, 215, 0.4);
        background: linear-gradient(135deg, var(--primary-color) 0%, var(--secondary-color) 100%);
}

#place_order:hover::before {
    left: 100%;
}

#place_order:active {
    transform: translateY(0);
}

#place_order:disabled {
    opacity: 0.6;
    cursor: not-allowed;
    transform: none !important;
}

/* Terms and Conditions */
.woocommerce-terms-and-conditions-wrapper {
    background: white;
    border: 2px solid #e5e7eb;
    border-radius: 12px;
    padding: 1.25rem 1.5rem;
    margin-bottom: 1.5rem;
    transition: all 0.3s ease;
}

.woocommerce-terms-and-conditions-wrapper:hover {
    border-color: #ccc;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.06);
}

.woocommerce-terms-and-conditions-wrapper label {
    display: flex;
    align-items: flex-start;
    gap: 1rem;
    font-size: 0.925rem;
    cursor: pointer;
    color: var(--text-color);
    line-height: 1.6;
    position: relative;
}

.woocommerce-terms-and-conditions-wrapper label a {
    color: var(--primary-color);
    font-weight: 600;
    text-decoration: none;
    border-bottom: 1px solid transparent;
    transition: border-color 0.3s ease;
}

.woocommerce-terms-and-conditions-wrapper label a:hover {
    border-bottom-color: var(--primary-color);
}

.woocommerce-terms-and-conditions-wrapper input[type="checkbox"] {
    appearance: none;
    -webkit-appearance: none;
    width: 22px;
    height: 22px;
    min-width: 22px;
    margin-top: 0.125rem;
    border: 2px solid #ccc;
    border-radius: 6px;
    cursor: pointer;
    transition: all 0.3s ease;
    background: white;
    position: relative;
}

.woocommerce-terms-and-conditions-wrapper input[type="checkbox"]:hover {
    border-color: var(--primary-color);
}

.woocommerce-terms-and-conditions-wrapper input[type="checkbox"]:checked {
    background: var(--primary-color);
    border-color: var(--primary-color);
}

.woocommerce-terms-and-conditions-wrapper input[type="checkbox"]:checked::after {
    content: '✓';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    color: white;
    font-size: 14px;
    font-weight: 700;
}

/* Coupon Code Section */
.woocommerce-form-coupon-toggle {
    background: linear-gradient(135deg, rgba(17, 162, 215, 0.05) 0%, rgba(218, 48, 141, 0.05) 100%);
    border: 1px solid rgba(17, 162, 215, 0.15);
    border-radius: 12px;
    padding: 1.25rem 1.5rem;
    margin-bottom: 2rem;
    text-align: center;
}

.woocommerce-form-coupon-toggle .woocommerce-info {
    background: transparent;
    border: none;
    box-shadow: none;
    margin: 0;
    padding: 0;
    color: var(--text-color);
    font-size: 1rem;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
}

.woocommerce-form-coupon-toggle .showcoupon {
    color: var(--primary-color);
    font-weight: 600;
    text-decoration: none;
    transition: all 0.3s ease;
    border-bottom: 2px solid transparent;
}

.woocommerce-form-coupon-toggle .showcoupon:hover {
    color: var(--secondary-color);
    border-bottom-color: var(--secondary-color);
}

.checkout_coupon {
    background: white;
    border: 1px solid rgba(17, 162, 215, 0.15);
    border-radius: 16px;
    padding: 2.5rem;
    margin-bottom: 2rem;
    box-shadow: 0 4px 16px rgba(0, 0, 0, 0.06);
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}

.checkout_coupon p {
    margin-bottom: 1.5rem;
    text-align: center;
}

.checkout_coupon .form-row {
    display: flex;
    gap: 1rem;
    align-items: center;
    margin-bottom: 0;
    justify-content: center;
    width: 100%;
    max-width: 600px;
}

.checkout_coupon input[type="text"] {
    flex: 1;
    min-width: 280px;
    padding: 1.125rem 1.5rem;
    border: 1px solid #ccc;
    border-radius: 12px;
    font-size: 1rem;
    font-family: var(--font-primary);
    color: var(--text-color);
    background: white;
    transition: all 0.3s ease;
    box-shadow: 0 1px 3px rgba(0, 0, 0, 0.05);
}

.checkout_coupon input[type="text"]:hover {
    border-color: #b3b3b3;
}

.checkout_coupon input[type="text"]:focus {
    outline: none;
    border-color: var(--primary-color);
    box-shadow: 0 0 0 4px rgba(17, 162, 215, 0.12), 0 1px 3px rgba(0, 0, 0, 0.1);
    background: #fafbfc;
}

.checkout_coupon button[type="submit"] {
    padding: 1.125rem 2.5rem;
    background: linear-gradient(135deg, var(--primary-color) 0%, var(--secondary-color) 100%);
    color: white;
    border: none;
    border-radius: 12px;
    font-weight: 700;
    font-size: 1rem;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: 0 4px 12px rgba(17, 162, 215, 0.3);
    white-space: nowrap;
}

.checkout_coupon button[type="submit"]:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(218, 48, 141, 0.4);
}

.checkout_coupon button[type="submit"]:active {
    transform: translateY(0);
}

/* Validation Errors */
.woocommerce-error,
.woocommerce-message,
.woocommerce-info {
    background: white;
    border-radius: 12px;
    padding: 1.25rem 1.5rem;
    margin-bottom: 2rem;
    border-left: 4px solid;
    box-shadow: 0 2px 12px rgba(0, 0, 0, 0.08);
}

.woocommerce-error {
    border-left-color: var(--error-color);
    background: rgba(239, 68, 68, 0.05);
}

.woocommerce-message {
    border-left-color: var(--success-color);
    background: rgba(16, 185, 129, 0.05);
}

.woocommerce-info {
    border-left-color: var(--primary-color);
    background: rgba(17, 162, 215, 0.05);
}

/* Checkout Page Notices - Fix icon overlap */
.checkout-container .woocommerce-error,
.checkout-container .woocommerce-message,
.checkout-container .woocommerce-info {
    position: relative;
    padding-left: 4rem;
}

.checkout-container .woocommerce-error::before {
    content: '!';
    position: absolute;
    left: 1.25rem;
    top: 50%;
    transform: translateY(-50%);
    display: flex;
    align-items: center;
    justify-content: center;
    width: 28px;
    height: 28px;
    border-radius: 50%;
    background: var(--error-color);
    color: white;
    font-weight: 700;
    font-size: 14px;
}

.checkout-container .woocommerce-message::before {
    content: '\2713';
    position: absolute;
    left: 1.25rem;
    top: 50%;
    transform: translateY(-50%);
    display: flex;
    align-items: center;
    justify-content: center;
    width: 28px;
    height: 28px;
    border-radius: 50%;
    background: var(--success-color);
    color: white;
    font-weight: 700;
    font-size: 14px;
}

.checkout-container .woocommerce-info::before {
    content: 'i';
    position: absolute;
    left: 1.25rem;
    top: 50%;
    transform: translateY(-50%);
    display: flex;
    align-items: center;
    justify-content: center;
    width: 28px;
    height: 28px;
    border-radius: 50%;
    background: var(--primary-color);
    color: white;
    font-weight: 700;
    font-size: 14px;
    font-style: normal;
}

.checkout-container .woocommerce-error li,
.checkout-container .woocommerce-message li,
.checkout-container .woocommerce-info li {
    list-style: none;
    margin: 0;
    padding: 0.25rem 0;
}

.checkout-container .woocommerce-error ul,
.checkout-container .woocommerce-message ul,
.checkout-container .woocommerce-info ul {
    margin: 0;
    padding: 0;
}

/* ===================================
   Footer
=================================== */
.site-footer {
    background: linear-gradient(135deg, #1a1a2e 0%, #16213e 100%);
    color: white;
    padding: 4rem 0 0;
    position: relative;
    z-index: 100;
}

.footer-content {
    padding-bottom: 3rem;
}

.footer-widget {
    margin-bottom: 0;
}

.footer-widget h3 {
    color: white;
    margin-bottom: 1.5rem;
    font-size: 1.125rem;
    font-weight: 600;
    position: relative;
    padding-bottom: 0.75rem;
}

.footer-widget h3::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 40px;
    height: 2px;
    background: var(--primary-color);
}

.footer-widget p {
    color: rgba(255, 255, 255, 0.75);
    font-size: 0.9375rem;
    line-height: 1.7;
    margin-bottom: 0;
}

.footer-widget ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.footer-widget ul li {
    margin-bottom: 0.625rem;
}

.footer-widget a {
    color: rgba(255, 255, 255, 0.75);
    transition: var(--transition);
    text-decoration: none;
}

.footer-widget a:hover {
    color: var(--primary-color);
    padding-left: 5px;
}

/* Footer Logo */
.footer-logo {
    margin-bottom: 1rem;
}

.footer-logo img {
    max-width: 150px;
    height: auto;
    filter: brightness(0) invert(1);
}

/* S2S Social Links */
.s2s-social-links {
    display: flex;
    gap: 0.75rem;
    flex-wrap: wrap;
}

.s2s-social-link {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 38px;
    height: 38px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 50%;
    color: white;
    font-size: 1rem;
    transition: var(--transition);
    text-decoration: none;
}

.s2s-social-link:hover {
    background: var(--primary-color);
    color: white;
    transform: translateY(-3px);
}

/* S2S Page Links & Custom Links */
.s2s-page-links-list,
.s2s-custom-links-list {
    list-style: none;
    padding: 0;
    margin: 0;
}

.s2s-page-links-list li,
.s2s-custom-links-list li {
    margin-bottom: 0.625rem;
}

.s2s-page-links-list a,
.s2s-custom-links-list a {
    color: rgba(255, 255, 255, 0.75);
    text-decoration: none;
    display: flex;
    align-items: center;
    gap: 0.5rem;
    transition: var(--transition);
    font-size: 0.9375rem;
}

.s2s-page-links-list a i,
.s2s-custom-links-list a i {
    font-size: 0.75rem;
    color: var(--primary-color);
    transition: var(--transition);
}

.s2s-page-links-list a:hover,
.s2s-custom-links-list a:hover {
    color: var(--primary-color);
    padding-left: 5px;
}

/* S2S Contact Details */
.s2s-contact-list {
    list-style: none;
    padding: 0;
    margin: 0;
}

.s2s-contact-item {
    display: flex;
    align-items: flex-start;
    gap: 0.875rem;
    margin-bottom: 1rem;
    color: rgba(255, 255, 255, 0.75);
    font-size: 0.9375rem;
}

.s2s-contact-item:last-child {
    margin-bottom: 0;
}

.s2s-contact-item i {
    color: var(--primary-color);
    font-size: 1.125rem;
    margin-top: 2px;
    flex-shrink: 0;
}

.s2s-contact-item a {
    color: rgba(255, 255, 255, 0.75);
    text-decoration: none;
    transition: var(--transition);
}

.s2s-contact-item a:hover {
    color: var(--primary-color);
}

.s2s-contact-btn {
    display: inline-flex;
    align-items: center;
    padding: 0.5rem 1.25rem;
    border-radius: var(--border-radius);
    transition: var(--transition);
}

.s2s-contact-btn:hover {
    background: var(--primary-color);
    border-color: var(--primary-color);
    color: white;
}

/* Footer Bottom */
.footer-bottom {
    padding: 1.5rem 0;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    color: rgba(255, 255, 255, 0.6);
    font-size: 0.875rem;
}

.footer-bottom p {
    margin-bottom: 0;
}

.footer-bottom-links {
    display: flex;
    gap: 1.5rem;
    justify-content: flex-end;
}

.footer-bottom-links a {
    color: rgba(255, 255, 255, 0.6);
    text-decoration: none;
    transition: var(--transition);
}

.footer-bottom-links a:hover {
    color: var(--primary-color);
}

@media (max-width: 767.98px) {
    .footer-bottom-links {
        justify-content: center;
        margin-top: 0.75rem;
    }
}

/* ===================================
   Responsive Design
=================================== */
@media (max-width: 1024px) {
    .header-main {
        padding: 0.9rem 0;
    }

    .header-content {
        gap: 2rem;
    }

    .main-navigation ul {
        gap: 1.5rem;
    }

    .site-logo {
        font-size: 1.5rem;
    }

    .site-logo svg {
        width: 28px;
        height: 28px;
    }

    /* Mobile Filter Toggle - Show on mobile, inline with title */
    .mobile-filter-toggle {
        display: inline-flex;
    }

    .mobile-filter-overlay {
        display: block;
    }

    .mobile-sidebar-header {
        display: flex;
    }

    /* Shop Sidebar - Slide-out panel on mobile */
    .shop-sidebar {
        position: fixed;
        top: 0;
        left: 0;
        width: 320px;
        max-width: 85vw;
        height: 100vh;
        background: white;
        z-index: 1050;
        padding: 1.5rem;
        overflow-y: auto;
        transform: translateX(-100%);
        transition: transform 0.3s cubic-bezier(0.4, 0, 0.2, 1);
        box-shadow: 4px 0 25px rgba(0, 0, 0, 0.15);
    }

    .shop-sidebar.active {
        transform: translateX(0);
    }

    /* Hide Bootstrap column classes on mobile for sidebar */
    .shop-sidebar.col-lg-3,
    .shop-sidebar.col-md-4 {
        flex: none;
        max-width: none;
    }

    .shop-main {
        padding-left: 0;
    }

    /* Make shop-main full width on mobile */
    .shop-main.col-lg-9,
    .shop-main.col-md-8 {
        flex: 0 0 100%;
        max-width: 100%;
    }

    .product-layout {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

    .product-gallery {
        position: static;
        top: auto;
    }

    .single-product-container .container {
        padding: 0 1rem;
    }

    .main-product-image {
        margin-bottom: 1rem;
        border-radius: 16px;
        padding: 1rem;
    }

    .product-thumbnails {
        gap: 0.5rem;
        grid-template-columns: repeat(4, 1fr);
    }

    .thumbnail {
        border-radius: 8px;
    }

    .product-details {
        padding: 1.5rem;
        border-radius: 16px;
    }

    .product-details h1 {
        font-size: 1.75rem;
    }

    .product-details .product-price {
        font-size: 2rem;
        padding: 0.75rem 0;
    }

    .breadcrumbs {
        padding: 0.75rem 1rem;
        margin-bottom: 1.5rem;
    }

    .product-description {
        padding: 1rem;
        font-size: 0.9rem;
    }

    .product-actions-group {
        flex-wrap: wrap;
    }

    .product-actions-group .btn {
        padding: 0.875rem 1rem;
        font-size: 0.875rem;
        flex: 1 1 calc(50% - 0.5rem);
        min-width: 0;
    }

    .product-actions-group .add-to-cart-btn {
        flex: 1 1 100%;
        order: -1;
    }

    .tab-link {
        padding: 1rem 1.5rem;
        font-size: 0.9rem;
    }

    .tab-content {
        padding: 1.5rem;
    }

    .quantity-selector .qty-btn {
        width: 44px;
        height: 44px;
    }

    .quantity-selector .qty-input {
        width: 60px;
    }

    .tabs-nav {
        flex-wrap: wrap;
        padding: 0.5rem;
    }

    .tab-link {
        padding: 0.75rem 1.25rem;
        font-size: 0.9rem;
    }

    .tab-content {
        padding: 1.75rem;
    }

    /* Checkout Page Responsive */
    .checkout-layout {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }

    .checkout-sidebar .order-summary {
        position: static;
        top: auto;
    }

    .checkout-section {
        padding: 1.5rem;
    }

    /* Cart Page Responsive */
    .cart-layout {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

    .cart-collaterals,
    .cart-totals-wrapper {
        position: static;
        top: auto;
    }

    .cart_totals {
        position: static;
        top: auto;
    }

    .order-details-layout {
        grid-template-columns: 1fr;
    }

    .order-summary-cards {
        grid-template-columns: repeat(2, 1fr);
    }

    .theme-card-large,
    .theme-card-large.reverse {
        grid-template-columns: 1fr;
        min-height: auto;
    }

    .theme-card-large.reverse .theme-card-image,
    .theme-card-large.reverse .theme-card-content {
        order: unset;
    }

    .theme-grid-two-columns {
        grid-template-columns: 1fr;
        gap: 3rem;
    }

    .theme-card-content {
        padding: 2rem;
    }

    .theme-card-content h3 {
        font-size: 2rem;
    }
}

@media (max-width: 768px) {
    .header-top {
        padding: 0.4rem 0;
        font-size: 0.75rem;
    }

    .header-main {
        padding: 0.75rem 0;
    }

    .header-content {
        flex-wrap: nowrap;
        gap: 0.75rem;
        position: relative;
    }

    .site-logo {
        font-size: 1.2rem;
    }

    .site-logo svg {
        width: 24px;
        height: 24px;
    }

    /* Show hamburger menu on mobile */
    .mobile-menu-toggle {
        display: flex;
    }

    /* Header icons - reduce gap on mobile */
    .header-icons {
        gap: 0.5rem;
    }

    .header-icon {
        padding: 0.4rem;
    }

    .header-icon i {
        font-size: 18px;
    }

    /* Hide navigation by default on mobile */
    .main-navigation {
        position: absolute;
        top: 100%;
        left: 0;
        right: 0;
        background: white;
        box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
        border-top: 1px solid #e5e7eb;
        max-height: 0;
        overflow: hidden;
        transition: max-height 0.3s ease, opacity 0.3s ease;
        opacity: 0;
        z-index: 100;
    }

    .main-navigation.active {
        max-height: 400px;
        opacity: 1;
    }

    .main-navigation ul {
        flex-direction: column;
        gap: 0;
        padding: 0.5rem 0;
    }

    .main-navigation li {
        width: 100%;
        text-align: center;
    }

    .main-navigation a {
        display: block;
        font-size: 0.95rem;
        padding: 0.875rem 1.5rem;
        border-bottom: 1px solid #f0f0f0;
    }

    .main-navigation li:last-child a {
        border-bottom: none;
    }

    .main-navigation a:hover {
        background: linear-gradient(135deg, rgba(17, 162, 215, 0.05) 0%, rgba(218, 48, 141, 0.05) 100%);
    }

    .main-navigation a::after {
        display: none;
    }

    .header-icons {
        gap: 0.65rem;
    }

    .header-icon {
        padding: 0.45rem;
    }

    .header-icon svg {
        width: 20px;
        height: 20px;
    }

    .mini-cart-dropdown,
    .mini-wishlist-dropdown {
        width: 350px;
    }

    .search-dropdown {
        width: 320px;
        right: -80px;
    }

    .search-dropdown::before {
        right: 95px;
    }

    /* Reorder shop header elements on mobile */
    .shop-header {
        display: flex;
        flex-direction: column;
    }

    .shop-header-top {
        display: contents;
    }

    .shop-title-row {
        order: 1;
        width: 100%;
        margin-bottom: 0.5rem;
    }

    .shop-header .breadcrumbs {
        order: 2;
        margin-bottom: 1rem;
    }

    .shop-search-box {
        order: 3;
        width: 100%;
        max-width: 100%;
        margin-bottom: 0;
    }

    .hero-section {
        padding: 4rem 0 3rem;
    }

    .hero-content {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

    .hero-text h1 {
        font-size: 2.75rem;
    }

    .hero-text p {
        font-size: 1.1rem;
    }

    .section-title h2 {
        font-size: 2.5rem;
    }

    .section-title p {
        font-size: 1.05rem;
    }

    .theme-card-large {
        min-height: auto;
    }

    .theme-card-image {
        height: 280px;
    }

    .theme-card-content {
        padding: 2rem;
    }

    .theme-card-content h3 {
        font-size: 2rem;
    }

    .theme-card-content p {
        font-size: 1rem;
    }

    .theme-price {
        font-size: 2rem;
    }

    .theme-showcase-grid {
        gap: 2.5rem;
    }

    .mini-cart-dropdown,
    .mini-wishlist-dropdown {
        width: 320px;
    }

    .cta-section {
        padding: 5rem 0;
    }

    .cta-section h2 {
        font-size: 2.5rem;
    }

    .cta-section p {
        font-size: 1.15rem;
    }

    .features-section {
        padding: 4rem 0;
    }

    .features-grid {
        gap: 2rem;
    }

    /* Shop Page Mobile */
    .shop-toolbar {
        flex-direction: column;
        gap: 1rem;
        align-items: stretch;
    }

    .shop-controls {
        justify-content: space-between;
    }

    .sidebar-widget {
        margin-bottom: 1rem;
    }

    .filter-option {
        padding: 0.625rem;
    }

    .filter-label {
        font-size: 0.875rem;
    }

    .filter-count {
        font-size: 0.75rem;
    }

    .active-filters {
        padding: 0.875rem 1rem;
    }

    /* Cart Page Mobile */
    .cart-page-container {
        padding: 1rem 0 2rem;
    }

    .cart-page-container .shop-header h1 {
        font-size: 1.75rem;
    }

    .cart-item {
        padding: 1rem;
        border-radius: 12px;
        position: relative;
    }

    /* Restructure cart item layout for mobile */
    .cart-item > .row {
        display: grid !important;
        grid-template-columns: 70px 1fr auto;
        grid-template-rows: auto auto;
        gap: 0.75rem 1rem;
        align-items: center;
    }

    /* Position remove button in top-right corner */
    .cart-item > .row > .col-auto:first-child {
        position: absolute;
        top: 0.75rem;
        right: 0.75rem;
        z-index: 2;
    }

    .cart-item-remove {
        width: 26px;
        height: 26px;
        font-size: 0.9rem;
        background: rgba(220, 53, 69, 0.1);
        border: none;
        border-radius: 50%;
    }

    .cart-item-remove:hover {
        background: rgba(220, 53, 69, 0.2);
    }

    /* Image column - first row, first column */
    .cart-item > .row > .col-auto:nth-child(2) {
        grid-column: 1;
        grid-row: 1;
    }

    .cart-item-image {
        width: 70px;
        height: 70px;
        border-radius: 10px;
        overflow: hidden;
    }

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

    /* Product details column - first row, second column */
    .cart-item > .row > .col {
        grid-column: 2 / -1;
        grid-row: 1;
        min-width: 0;
        padding-right: 35px;
    }

    .cart-item-name {
        font-size: 0.95rem;
        line-height: 1.35;
        margin-bottom: 0.35rem;
    }

    .cart-item-name a {
        display: -webkit-box;
        -webkit-line-clamp: 2;
        -webkit-box-orient: vertical;
        overflow: hidden;
        word-break: break-word;
    }

    .cart-item-price {
        font-size: 0.875rem;
        color: #666;
    }

    /* Quantity - second row */
    .cart-item > .row > .col-auto:nth-child(4) {
        grid-column: 1 / 3;
        grid-row: 2;
    }

    .cart-item-quantity {
        display: flex;
        align-items: center;
        gap: 0.5rem;
    }

    .cart-item-quantity .qty-label {
        font-size: 0.8rem;
        color: #666;
    }

    .cart-item-quantity input[type="number"] {
        width: 55px;
        padding: 0.5rem;
        font-size: 0.9rem;
        text-align: center;
        border-radius: 8px;
    }

    /* Subtotal - second row, right aligned */
    .cart-item > .row > .col-auto:nth-child(5) {
        grid-column: 3;
        grid-row: 2;
        justify-self: end;
    }

    .cart-item-subtotal {
        font-size: 1.1rem;
        font-weight: 600;
        text-align: right;
    }

    .cart-item-subtotal .amount {
        font-size: 1.1rem;
        color: var(--primary);
    }

    .cart-actions {
        padding: 1rem;
    }

    .cart-actions .row {
        flex-direction: column;
        gap: 1rem;
    }

    .cart-actions .col-md-5 {
        margin-top: 0;
        text-align: left !important;
    }

    .cart-actions .btn {
        width: 100%;
    }

    /* Coupon input group - stack vertically on mobile */
    .cart-coupon .input-group {
        flex-wrap: wrap;
    }

    .cart-coupon .input-group-text {
        flex: 0 0 auto;
        border-radius: 8px 0 0 8px;
    }

    .cart-coupon .form-control {
        flex: 1 1 auto;
        min-width: 120px;
        border-radius: 0 8px 8px 0;
    }

    .cart-coupon .input-group .btn-primary {
        flex: 0 0 100%;
        margin-top: 0.75rem;
        border-radius: 8px;
    }

    .shop_table.cart {
        border-radius: 16px;
    }

    .shop_table.cart thead th {
        padding: 1.25rem 0.875rem;
        font-size: 0.75rem;
    }

    .shop_table.cart td {
        padding: 1.5rem 0.875rem;
    }

    .product-thumbnail {
        width: 80px;
    }

    .product-thumbnail img {
        width: 70px;
        height: 70px;
    }

    .product-name {
        min-width: auto;
    }

    .product-name a {
        font-size: 1rem;
    }

    .product-price {
        font-size: 1.125rem;
    }

    .product-subtotal {
        font-size: 1.25rem;
    }

    .product-remove {
        width: 50px;
    }

    .product-remove a {
        width: 36px;
        height: 36px;
        font-size: 1.25rem;
    }

    .product-price {
        font-size: 1rem;
    }

    .product-quantity {
        width: auto;
    }

    .quantity {
        transform: scale(0.9);
    }

    .actions {
        padding: 1.25rem !important;
        flex-direction: column;
        gap: 1rem;
    }

    .actions .coupon {
        flex-direction: column;
        width: 100%;
    }

    .actions .coupon input[type="text"] {
        max-width: 100%;
        width: 100%;
    }

    .actions .coupon button {
        width: 100%;
    }

    .actions button[name="update_cart"] {
        width: 100%;
        margin-left: 0;
    }

    .cart_totals {
        padding: 2rem 1.5rem;
        border-radius: 16px;
    }

    .cart_totals h2 {
        font-size: 1.15rem;
    }

    .cart_totals .order-total th {
        font-size: 1.1rem;
    }

    .cart_totals .order-total td {
        font-size: 1.5rem;
    }

    .wc-proceed-to-checkout .checkout-button {
        padding: 1.1rem 1.75rem;
        font-size: 1.05rem;
    }

    .cross-sells h2 {
        font-size: 1.75rem;
    }

    .cross-sells .products {
        grid-template-columns: repeat(auto-fill, minmax(200px, 1fr));
        gap: 1.5rem;
    }

    /* Checkout Page Mobile */
    .woocommerce-checkout {
        padding: 1rem 0 2rem;
    }

    .checkout-container .shop-header h1 {
        font-size: 1.75rem;
    }

    .checkout-section {
        padding: 1.25rem;
        border-radius: 12px;
        margin-bottom: 1rem;
    }

    .checkout-section h2 {
        font-size: 1.25rem;
        margin-bottom: 1.25rem;
    }

    .checkout-sidebar .order-summary {
        padding: 1rem;
        border-radius: 16px;
    }

    .checkout-sidebar .order-summary h2 , .order-items {
        padding-left: 1rem;
        padding-right: 1rem;
    }
    .order-item {
        gap: 0.75rem;
        padding: 0.75rem 0;
    }

    .order-item-image {
        width: 50px;
        height: 50px;
    }

    .order-item-name {
        font-size: 0.875rem;
    }

    .order-item-price {
        font-size: 0.95rem;
    }

    .order-totals {
        padding: 1.25rem;
    }

    .order-total-row {
        font-size: 0.875rem;
    }

    .order-total-row.total {
        font-size: 1.1rem;
    }

    .order-total-row.total span:last-child {
        font-size: 1.25rem;
    }

    #place_order {
        padding: 1rem 1.75rem;
        font-size: 1.05rem;
    }

    .form-row input[type="text"],
    .form-row input[type="email"],
    .form-row input[type="tel"],
    .form-row input[type="password"],
    .form-row select,
    .form-row textarea {
        padding: 0.75rem 1rem;
        font-size: 0.95rem;
    }

    .wc_payment_method label {
        padding: 0.875rem 1rem;
        font-size: 0.9rem;
        gap: 0.75rem;
    }

    .payment_box {
        padding: 0.875rem 1rem;
        background: transparent;
        border-top: 1px dashed rgba(17, 162, 215, 0.2);
    }

    .payment_box p {
        font-size: 0.85rem;
        line-height: 1.5;
    }

    /* Remove nested padding on mobile - let parent .order-summary handle padding */
    .woocommerce-checkout-payment {
        padding: 0 !important;
        background: transparent !important;
        border: none !important;
        box-shadow: none !important;
        margin: 0 !important;
    }

    .woocommerce-checkout-payment > h3 {
        font-size: 1.05rem;
        margin-bottom: 0.75rem;
        padding-bottom: 0.5rem;
    }

    .wc_payment_methods {
        margin-bottom: 0.75rem;
        padding: 0;
        background: transparent;
    }

    .wc_payment_method {
        margin-bottom: 0.5rem;
        border-radius: 10px;
        background: rgba(17, 162, 215, 0.05);
    }

    .wc_payment_method label {
        padding: 0.75rem 0.875rem;
        font-size: 0.9rem;
        gap: 0.5rem;
    }

    .payment_box {
        padding: 0.75rem 0.875rem;
        background: transparent;
        border-top: 1px dashed rgba(17, 162, 215, 0.2);
        margin: 0;
    }

    .payment_box p {
        font-size: 0.8rem;
        line-height: 1.4;
        margin: 0;
    }

    /* Privacy policy - more compact on mobile */
    .woocommerce-privacy-policy-text {
        font-size: 0.75rem;
        padding: 0.5rem 0;
        margin-top: 0.5rem;
        line-height: 1.4;
        border-top: none;
    }

    .woocommerce-privacy-policy-text::before {
        font-size: 0.85rem;
    }

    /* Terms wrapper - remove extra padding/background on mobile */
    .woocommerce-terms-and-conditions-wrapper {
        padding: 0.5rem 0;
        margin-bottom: 0.75rem;
        border-radius: 0;
        background: transparent;
        border: none;
    }

    .woocommerce-terms-and-conditions-wrapper label {
        font-size: 0.8rem;
        gap: 0.5rem;
        line-height: 1.4;
    }

    /* Place order button on mobile */
    .form-row.place-order {
        margin-top: 1rem !important;
        padding: 0;
    }

    /* Coupon Section Mobile */
    .checkout_coupon {
        padding: 1.5rem;
    }

    .checkout_coupon .form-row {
        flex-direction: column;
        align-items: stretch;
    }

    .checkout_coupon input[type="text"] {
        max-width: 100%;
    }

    .checkout_coupon button[type="submit"] {
        width: 100%;
        padding: 1rem 2rem;
    }
}

/* Button Responsive Styles */
@media (max-width: 768px) {
    .btn {
        padding: 0.85rem 2rem;
        font-size: 0.95rem;
    }

    .btn-large {
        padding: 1rem 2.5rem;
        font-size: 1.05rem;
    }

    .btn-view-theme {
        padding: 0.95rem 2rem;
        font-size: 0.95rem;
    }
}

@media (max-width: 768px) {
    .order-summary-cards {
        grid-template-columns: 1fr;
    }

    .order-success-header {
        padding: 2rem 1.5rem;
    }

    .order-success-header h1 {
        font-size: 2rem;
    }

    .success-icon {
        width: 80px;
        height: 80px;
    }

    .order-items-table .table {
        font-size: 0.875rem;
    }

    .order-items-table .table thead th {
        padding: 0.75rem 0.5rem;
        font-size: 0.75rem;
    }

    .order-items-table .table tbody td {
        padding: 1rem 0.5rem;
    }

    .product-thumbnail {
        width: 60px;
        height: 60px;
    }

    .order-items-table .badge {
        padding: 0.35rem 0.65rem;
        font-size: 0.75rem;
    }
}

@media (max-width: 480px) {
    h1 { font-size: 2rem; }
    h2 { font-size: 1.75rem; }

    .order-success-header h1 {
        font-size: 1.75rem;
    }

    .success-message {
        font-size: 1rem;
    }

    .card-value {
        font-size: 1.25rem;
    }

    .order-section {
        padding: 1.5rem;
    }

    .order-section h2 {
        font-size: 1.25rem;
    }

    .order-actions {
        flex-direction: column;
    }

    .order-actions .btn {
        width: 100%;
    }

    .btn {
        padding: 0.8rem 1.75rem;
        font-size: 0.9rem;
    }

    .search-dropdown {
        position: fixed;
        top: auto;
        bottom: 0;
        left: 0;
        right: 0;
        width: 100%;
        border-radius: 20px 20px 0 0;
        padding: 1.5rem;
        transform: translateY(100%);
    }

    .search-dropdown.active {
        transform: translateY(0);
    }

    .search-dropdown::before {
        display: none;
    }

    .search-dropdown .search-input {
        padding: 1rem 3rem 1rem 2.75rem;
        font-size: 1rem;
    }

    .btn-large {
        padding: 0.95rem 2.25rem;
        font-size: 1rem;
    }

    .btn-view-theme {
        padding: 0.85rem 1.75rem;
        font-size: 0.9rem;
    }

    .add-to-cart-btn {
        padding: 0.85rem;
        font-size: 0.9rem;
    }

    .product-actions-group {
        gap: 0.5rem;
    }

    .product-actions-group .btn {
        padding: 0.75rem 0.5rem;
        font-size: 0.8rem;
        flex: 1 1 calc(50% - 0.25rem);
    }

    .product-actions-group .btn svg {
        width: 18px;
        height: 18px;
        flex-shrink: 0;
    }

    .product-actions-group .add-to-cart-btn {
        flex: 1 1 100%;
        padding: 0.875rem;
        font-size: 0.875rem;
    }

    .header-top {
        padding: 0.35rem 0;
    }

    .header-top-left span {
        font-size: 0.7rem;
    }

    .header-top-right {
        font-size: 0.7rem;
    }

    .header-main {
        padding: 0.75rem 0;
    }

    .site-logo {
        font-size: 1.25rem;
    }

    .site-logo svg {
        width: 24px;
        height: 24px;
    }

    .main-navigation ul {
        gap: 0.85rem;
    }

    .main-navigation a {
        font-size: 0.85rem;
        padding: 0.2rem 0;
    }

    .header-icon {
        padding: 0.4rem;
    }

    .header-icon svg {
        width: 20px;
        height: 20px;
    }

    .icon-badge {
        font-size: 0.6rem;
        padding: 0.15rem 0.35rem;
    }

    .container {
        padding: 0 1rem;
    }

    .products-grid {
        grid-template-columns: 1fr;
    }

    .mini-cart-dropdown,
    .mini-wishlist-dropdown {
        position: fixed;
        top: 70px;
        right: 1rem;
        left: 1rem;
        width: auto;
        border-radius: 12px;
        max-width: none;
        box-shadow: 0 10px 40px rgba(0, 0, 0, 0.2);
    }

    .hero-section {
        padding: 3rem 0 2rem;
    }

    .hero-text h1 {
        font-size: 2rem;
        line-height: 1.2;
    }

    .hero-text p {
        font-size: 1rem;
    }

    .text-carousel {
        height: 1.1em;
    }

    .btn-large {
        padding: 1rem 2rem;
        font-size: 1rem;
    }

    .section-title h2 {
        font-size: 2rem;
    }

    .section-title p {
        font-size: 1rem;
    }

    .theme-card-image {
        height: 200px;
        padding: 1.5rem;
    }

    .theme-card-content {
        padding: 1.5rem;
    }

    .theme-card-content h3 {
        font-size: 1.65rem;
    }

    .theme-card-content p {
        font-size: 0.95rem;
    }

    .theme-price {
        font-size: 1.75rem;
    }

    .theme-features li {
        font-size: 0.9rem;
    }

    .theme-card-footer {
        flex-direction: column;
        align-items: flex-start;
        gap: 1.25rem;
    }

    .theme-card-actions {
        width: 100%;
    }

    .theme-cart-btn {
        padding: 0.75rem 1.25rem;
        font-size: 0.8125rem;
    }

    .theme-details-btn {
        padding: 0.65rem 1.25rem !important;
        font-size: 0.8125rem;
    }

    .theme-wishlist-btn {
        width: 40px;
        height: 40px;
    }

    /* Modern Showcase Responsive */
    .themes-showcase-modern {
        padding: 3rem 0;
    }

    .showcase-header {
        margin-bottom: 2rem;
    }

    .showcase-header h2 {
        font-size: 2rem;
    }

    .showcase-header p {
        font-size: 1rem;
    }

    .showcase-card {
        padding: 1.5rem;
        border-radius: 20px;
    }

    .card-icon {
        width: 40px;
        height: 40px;
    }

    .card-image-wrapper {
        height: 200px;
        margin-bottom: 1.25rem;
    }

    .card-title {
        font-size: 1.25rem;
    }

    .card-description {
        font-size: 0.875rem;
    }

    .card-price {
        font-size: 1.5rem;
        margin-bottom: 1rem;
    }

    .card-actions {
        flex-direction: row;
        align-items: center;
        gap: 0.5rem;
    }

    .card-wishlist-btn {
        width: 40px;
        height: 40px;
        min-width: 40px;
        font-size: 1rem;
        flex-shrink: 0;
    }

    .card-cart-btn {
        flex: 1;
        padding: 0.625rem 1rem;
        font-size: 0.8rem;
        justify-content: center;
    }

    /* Modern Product Card Responsive */
    .modern-product-card {
        border-radius: 18px;
    }

    .modern-card-image-wrapper {
        height: 250px;
    }

    .modern-card-overlay {
        padding: 1.5rem;
    }

    .modern-card-icon {
        width: 44px;
        height: 44px;
        margin-bottom: 1rem;
    }

    .modern-card-icon svg {
        width: 22px;
        height: 22px;
    }

    .modern-card-title {
        font-size: 1.25rem;
    }

    .modern-card-description {
        font-size: 0.875rem;
        margin-bottom: 1.25rem;
    }

    .modern-card-price {
        font-size: 1.5rem;
    }

    .modern-card-wishlist-btn {
        width: 40px;
        height: 40px;
        font-size: 1rem;
    }

    .modern-card-cart-btn {
        padding: 0.7rem 1.35rem;
        font-size: 0.8125rem;
    }

    .btn-view-theme {
        width: 100%;
        text-align: center;
        padding: 1rem 1.5rem;
    }

    .cta-section h2 {
        font-size: 1.85rem;
    }

    .cta-section p {
        font-size: 1rem;
    }

    .features-section {
        padding: 3rem 0;
    }

    .feature-icon {
        width: 60px;
        height: 60px;
    }

    .feature-card {
        padding: 2rem 1.5rem;
    }
}

/* Very small screens - Product action buttons */
@media (max-width: 360px) {
    .product-actions-group .btn-add-to-wishlist,
    .product-actions-group .btn-live-demo {
        padding: 0.75rem;
        font-size: 0;
        gap: 0;
    }

    .product-actions-group .btn-add-to-wishlist svg,
    .product-actions-group .btn-live-demo svg {
        width: 20px;
        height: 20px;
    }
}

/* ===================================
   Utility Classes
=================================== */
.text-center { text-align: center; }
.text-right { text-align: right; }
.mt-1 { margin-top: 0.5rem; }
.mt-2 { margin-top: 1rem; }
.mt-3 { margin-top: 1.5rem; }
.mt-4 { margin-top: 2rem; }
.mb-1 { margin-bottom: 0.5rem; }
.mb-2 { margin-bottom: 1rem; }
.mb-3 { margin-bottom: 1.5rem; }
.mb-4 { margin-bottom: 2rem; }
.hidden { display: none !important; }
.visible { display: block !important; }

/* ===================================
   Toast Notifications
=================================== */
.toast-container {
    z-index: 9999;
}

#notification-toast {
    min-width: 300px;
    box-shadow: var(--shadow-xl);
    border-radius: var(--border-radius);
    overflow: hidden;
}

#notification-toast .toast-body {
    padding: 1rem 1.25rem;
    font-size: 0.95rem;
    font-weight: 500;
    display: flex;
    align-items: center;
}

#notification-toast .toast-body i {
    font-size: 1.25rem;
    flex-shrink: 0;
}

#notification-toast .toast-message {
    flex: 1;
}

#notification-toast .btn-close {
    opacity: 0.8;
}

#notification-toast .btn-close:hover {
    opacity: 1;
}

/* Toast type specific styles */
#notification-toast.bg-success {
    background: linear-gradient(135deg, #10b981 0%, #059669 100%) !important;
}

#notification-toast.bg-error,
#notification-toast.bg-danger {
    background: linear-gradient(135deg, var(--secondary-color) 0%, #dc2626 100%) !important;
}

#notification-toast.bg-warning {
    background: linear-gradient(135deg, #f59e0b 0%, #d97706 100%) !important;
}

#notification-toast.bg-info {
    background: linear-gradient(135deg, var(--primary-color) 0%, #0891b2 100%) !important;
}

/* ===================================
   Thank You Page - Order Confirmation
=================================== */
.woocommerce-order-confirmation {
    max-width: 1200px;
    margin: 0 auto;
    padding: 2rem 1rem;
}

/* Thank You Header */
.thankyou-header {
    text-align: center;
    padding: 3rem 2rem;
    background: linear-gradient(135deg, var(--primary-color) 0%, var(--secondary-color) 100%);
    border-radius: var(--border-radius-lg);
    margin-bottom: 2rem;
    color: white;
}

.thankyou-header.success {
    background: linear-gradient(135deg, #10b981 0%, #059669 100%);
}

.thankyou-header.failed {
    background: linear-gradient(135deg, var(--secondary-color) 0%, #dc2626 100%);
}

.thankyou-icon {
    font-size: 4rem;
    margin-bottom: 1rem;
    animation: scaleIn 0.5s ease-out;
}

@keyframes scaleIn {
    from {
        transform: scale(0);
        opacity: 0;
    }
    to {
        transform: scale(1);
        opacity: 1;
    }
}

.thankyou-header h1 {
    color: white;
    font-size: 2.5rem;
    margin-bottom: 0.5rem;
}

.thankyou-message {
    font-size: 1.1rem;
    opacity: 0.95;
    margin: 0;
}

/* Order Summary Cards */
.order-summary-cards {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 1.5rem;
    margin-bottom: 2rem;
}

.summary-card {
    background: white;
    padding: 1.5rem;
    border-radius: var(--border-radius);
    box-shadow: var(--shadow-md);
    display: flex;
    align-items: center;
    gap: 1rem;
    transition: var(--transition);
}

.summary-card:hover {
    transform: translateY(-2px);
    box-shadow: var(--shadow-lg);
}

.summary-card-icon {
    width: 50px;
    height: 50px;
    background-color: var(--primary-color);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 1.5rem;
    flex-shrink: 0;
}

.summary-card-content {
    display: flex;
    flex-direction: column;
    gap: 0.25rem;
}

.summary-card-label {
    font-size: 0.85rem;
    color: var(--text-light);
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.summary-card-value {
    font-size: 1.1rem;
    color: var(--text-color);
    font-weight: 700;
}

/* Order Details Section */
.order-details-section {
    background: white;
    padding: 2rem;
    border-radius: var(--border-radius);
    box-shadow: var(--shadow-md);
    margin-bottom: 2rem;
}

.order-details-section h2 {
    color: var(--text-color);
    margin-bottom: 1.5rem;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.order-details-section h2 i {
    color: var(--primary-color);
}

.order-details-table {
    overflow-x: auto;
}

.shop_table.order_details {
    width: 100%;
    border-collapse: collapse;
    margin: 0;
}

.shop_table.order_details thead {
    background: var(--bg-light);
}

.shop_table.order_details thead th {
    padding: 1rem;
    text-align: left;
    font-weight: 700;
    color: var(--text-color);
    border-bottom: 2px solid var(--border-color);
}

.shop_table.order_details tbody td {
    padding: 1.25rem 1rem;
    border-bottom: 1px solid var(--border-color);
}

.shop_table.order_details tbody tr:hover {
    background: var(--bg-light);
}

.shop_table.order_details tfoot th,
.shop_table.order_details tfoot td {
    padding: 1rem;
    border-top: 2px solid var(--border-color);
    font-weight: 600;
}

.shop_table.order_details tfoot tr:last-child th,
.shop_table.order_details tfoot tr:last-child td {
    font-size: 1.1rem;
    color: var(--primary-color);
    font-weight: 700;
}

.woocommerce-table__product-name {
    width: 70%;
}

.woocommerce-table__product-table {
    width: 30%;
    text-align: right;
}

/* Customer Details Sections */
.customer-details-sections {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 1.5rem;
    margin-bottom: 2rem;
}

.customer-info-card {
    background: white;
    padding: 1.5rem;
    border-radius: var(--border-radius);
    box-shadow: var(--shadow-md);
}

.customer-info-card h3 {
    color: var(--text-color);
    margin-bottom: 1rem;
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-size: 1.1rem;
}

.customer-info-card h3 i {
    color: var(--primary-color);
    font-size: 1.3rem;
}

.customer-info-content {
    color: var(--text-color);
}

.info-row {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    padding: 0.75rem 0;
    border-bottom: 1px solid var(--border-color);
}

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

.info-row i {
    color: var(--primary-color);
    font-size: 1.1rem;
}

.info-label {
    font-weight: 600;
    color: var(--text-light);
    min-width: 60px;
}

.info-value {
    color: var(--text-color);
}

.customer-info-card address {
    font-style: normal;
    line-height: 1.8;
    color: var(--text-color);
}

/* Downloads Section */
.downloads-section {
    background: linear-gradient(135deg, #f0f9ff 0%, #e0f2fe 100%);
    padding: 2rem;
    border-radius: var(--border-radius);
    border: 2px solid var(--primary-color);
    margin-bottom: 2rem;
}

.downloads-section h2 {
    color: var(--text-color);
    margin-bottom: 1rem;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.downloads-section h2 i {
    color: var(--primary-color);
}

.downloads-info {
    color: var(--text-light);
    margin-bottom: 1.5rem;
}

.woocommerce-table--order-downloads {
    background: white;
    border-radius: var(--border-radius);
    overflow: hidden;
    box-shadow: var(--shadow-sm);
}

.woocommerce-table--order-downloads thead {
    background: var(--primary-color);
    color: white;
}

.woocommerce-table--order-downloads thead th {
    padding: 1rem;
    text-align: left;
    font-weight: 600;
}

.woocommerce-table--order-downloads tbody td {
    padding: 1rem;
    border-bottom: 1px solid var(--border-color);
}

.woocommerce-table--order-downloads tbody tr:last-child td {
    border-bottom: none;
}

.woocommerce-table--order-downloads .download-file a {
    color: var(--primary-color);
    font-weight: 600;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    transition: var(--transition);
}

.woocommerce-table--order-downloads .download-file a:hover {
    color: var(--secondary-color);
    text-decoration: underline;
}

.woocommerce-table--order-downloads .download-file a::before {
    content: "\f30b";
    font-family: 'bootstrap-icons';
    font-size: 1.2rem;
}

/* Thank You Actions */
.thankyou-actions {
    display: flex;
    gap: 1rem;
    justify-content: center;
    flex-wrap: wrap;
    margin-top: 2rem;
}

.thankyou-actions .button {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 1rem 2rem;
    border-radius: var(--border-radius);
    font-weight: 600;
    text-decoration: none;
    transition: var(--transition);
    border: none;
    cursor: pointer;
}

.thankyou-actions .btn-primary {
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
    color: white;
}

.thankyou-actions .btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: var(--shadow-lg);
}

.thankyou-actions .btn-secondary {
    background: white;
    color: var(--primary-color);
    border: 2px solid var(--primary-color);
}

.thankyou-actions .btn-secondary:hover {
    background: var(--primary-color);
    color: white;
    transform: translateY(-2px);
    box-shadow: var(--shadow-md);
}

/* Responsive Design */
@media (max-width: 768px) {
    .thankyou-header {
        padding: 2rem 1rem;
    }

    .thankyou-header h1 {
        font-size: 1.75rem;
    }

    .thankyou-icon {
        font-size: 3rem;
    }

    .order-summary-cards {
        grid-template-columns: 1fr;
    }

    .customer-details-sections {
        grid-template-columns: 1fr;
    }

    .order-details-section,
    .downloads-section {
        padding: 1.5rem;
    }

    .shop_table.order_details thead th,
    .shop_table.order_details tbody td,
    .shop_table.order_details tfoot th,
    .shop_table.order_details tfoot td {
        padding: 0.75rem 0.5rem;
        font-size: 0.9rem;
    }

    .thankyou-actions {
        flex-direction: column;
    }

    .thankyou-actions .button {
        width: 100%;
        justify-content: center;
    }
}

/* ===================================
   Login Page - Modern Design
=================================== */
.login-page-container {
    min-height: calc(100vh - 200px);
    padding: 4rem 0;
    background: linear-gradient(135deg, rgba(17, 162, 215, 0.03) 0%, rgba(218, 48, 141, 0.03) 100%);
}

/* Login Page Error/Success Notices */
.login-page-container .woocommerce-notices-wrapper {
    max-width: 1000px;
    margin: 0 auto 2rem;
}

.login-page-container .woocommerce-error,
.login-page-container .woocommerce-message,
.login-page-container .woocommerce-info {
    display: flex;
    align-items: center;
    gap: 1rem;
    padding: 1.25rem 1.5rem;
    border-radius: 16px;
    margin: 0;
    font-size: 0.95rem;
    line-height: 1.5;
    list-style: none;
}

.login-page-container .woocommerce-error {
    background: linear-gradient(135deg, rgba(239, 68, 68, 0.1) 0%, rgba(239, 68, 68, 0.05) 100%);
    border: 1px solid rgba(239, 68, 68, 0.2);
    color: #b91c1c;
}

.login-page-container .woocommerce-message {
    background: linear-gradient(135deg, rgba(16, 185, 129, 0.1) 0%, rgba(16, 185, 129, 0.05) 100%);
    border: 1px solid rgba(16, 185, 129, 0.2);
    color: #047857;
}

.login-page-container .woocommerce-info {
    background: linear-gradient(135deg, rgba(17, 162, 215, 0.1) 0%, rgba(17, 162, 215, 0.05) 100%);
    border: 1px solid rgba(17, 162, 215, 0.2);
    color: #0369a1;
}

.login-page-container .woocommerce-error li,
.login-page-container .woocommerce-message li,
.login-page-container .woocommerce-info li {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    flex: 1;
}

.login-page-container .woocommerce-error::before,
.login-page-container .woocommerce-message::before,
.login-page-container .woocommerce-info::before {
    font-family: 'bootstrap-icons';
    font-size: 1.25rem;
    flex-shrink: 0;
}

.login-page-container .woocommerce-error::before {
    content: '\f33a';
    color: #dc2626;
    margin-left: -14px;
    margin-top: 6px;
    font-size: 14px;
}

.login-page-container .woocommerce-message::before {
    content: '\f26b';
    color: #10b981;
}

.login-page-container .woocommerce-info::before {
    content: '\f431';
    color: var(--primary-color);
}

.login-page-container .woocommerce-error a,
.login-page-container .woocommerce-message a,
.login-page-container .woocommerce-info a {
    font-weight: 600;
    text-decoration: underline;
}

.login-wrapper {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
    max-width: 1000px;
    margin: 0 auto;
    align-items: center;
}

/* Login Card */
.login-card,
.register-card {
    background: white;
    border-radius: 24px;
    padding: 3rem;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.08);
    border: 1px solid rgba(0, 0, 0, 0.05);
}

.login-card-header {
    text-align: center;
    margin-bottom: 2rem;
}

.login-icon {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, var(--primary-color) 0%, var(--secondary-color) 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.5rem;
    font-size: 2rem;
    color: white;
    box-shadow: 0 8px 24px rgba(17, 162, 215, 0.3);
}

.login-card-header h2 {
    font-size: 1.75rem;
    font-weight: 800;
    color: var(--text-color);
    margin-bottom: 0.5rem;
}

.login-card-header p {
    color: var(--text-light);
    font-size: 1rem;
    margin: 0;
}

/* Form Groups */
.login-card .form-group,
.register-card .form-group {
    margin-bottom: 1.5rem;
}

.login-card label,
.register-card label {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-weight: 600;
    color: var(--text-color);
    margin-bottom: 0.5rem;
    font-size: 0.9375rem;
}

.login-card label i,
.register-card label i {
    color: var(--primary-color);
    font-size: 1rem;
}

.login-card .form-control,
.register-card .form-control {
    padding: 1rem 1.25rem;
    border: 2px solid #e5e7eb;
    border-radius: 12px;
    font-size: 1rem;
    transition: all 0.3s ease;
    background: #fafafa;
}

.login-card .form-control:hover,
.register-card .form-control:hover {
    border-color: #d1d5db;
    background: white;
}

.login-card .form-control:focus,
.register-card .form-control:focus {
    border-color: var(--primary-color);
    box-shadow: 0 0 0 4px rgba(17, 162, 215, 0.1);
    background: white;
    outline: none;
}

/* Password Input Wrapper */
.password-input-wrapper {
    position: relative;
}

.password-input-wrapper .form-control {
    padding-right: 3rem;
}

.password-toggle {
    position: absolute;
    right: 1rem;
    top: 50%;
    transform: translateY(-50%);
    background: none;
    border: none;
    color: var(--text-light);
    cursor: pointer;
    padding: 0.5rem;
    font-size: 1.125rem;
    transition: color 0.3s ease;
    z-index: 10;
    line-height: 1;
    display: flex;
    align-items: center;
    justify-content: center;
    display: none;
}

.password-toggle:hover {
    color: var(--primary-color);
}

/* Captcha Styles */
.captcha-group {
    margin-bottom: 1.5rem;
}

.captcha-wrapper {
    display: flex;
    gap: 1rem;
    align-items: center;
}

.captcha-question {
    flex-shrink: 0;
    background: linear-gradient(135deg, rgba(17, 162, 215, 0.1) 0%, rgba(218, 48, 141, 0.1) 100%);
    padding: 1rem 1.5rem;
    border-radius: 12px;
    border: 2px dashed rgba(17, 162, 215, 0.3);
}

.captcha-text {
    font-size: 1.25rem;
    font-weight: 700;
    color: var(--text-color);
    font-family: var(--font-heading);
}

.captcha-input {
    flex: 1;
    max-width: 120px;
    text-align: center;
    font-weight: 600;
    font-size: 1.125rem;
}

.captcha-hint {
    display: block;
    margin-top: 0.5rem;
    color: var(--text-light);
    font-size: 0.8125rem;
}

/* Form Options */
.form-options {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 1.5rem;
}

.remember-me-label {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    cursor: pointer;
    font-size: 0.9375rem;
    color: var(--text-color);
}

.remember-me-label input[type="checkbox"] {
    width: 18px;
    height: 18px;
    accent-color: var(--primary-color);
}

.forgot-password-link {
    color: var(--primary-color);
    font-size: 0.9375rem;
    text-decoration: none;
    font-weight: 500;
    transition: color 0.3s ease;
}

.forgot-password-link:hover {
    color: var(--secondary-color);
}

/* Login Button */
.btn-login {
    width: 100%;
    padding: 1rem 1.5rem;
    font-size: 1rem;
    font-weight: 600;
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
}

/* Login Card Footer */
.login-card-footer {
    text-align: center;
    margin-top: 2rem;
    padding-top: 2rem;
    border-top: 1px solid #e5e7eb;
}

.login-card-footer p {
    color: var(--text-light);
    margin-bottom: 0.5rem;
    font-size: 0.9375rem;
}

.toggle-register-form,
.toggle-login-form {
    color: var(--primary-color);
    font-weight: 600;
    text-decoration: none;
    transition: color 0.3s ease;
}

.toggle-register-form:hover,
.toggle-login-form:hover {
    color: var(--secondary-color);
}

/* Password Notice */
.password-notice {
    background: rgba(17, 162, 215, 0.05);
    padding: 1rem;
    border-radius: 8px;
    color: var(--text-light);
    font-size: 0.875rem;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.password-notice i {
    color: var(--primary-color);
}

/* Info Panel */
.login-info-panel {
    background: linear-gradient(135deg, var(--primary-color) 0%, var(--secondary-color) 100%);
    border-radius: 24px;
    padding: 3rem;
    color: white;
    display: flex;
    align-items: center;
}

.info-panel-content h3 {
    font-size: 1.5rem;
    font-weight: 700;
    margin-bottom: 2rem;
    color: white;
}

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

.benefits-list li {
    display: flex;
    align-items: center;
    gap: 1rem;
    padding: 1rem 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.15);
}

.benefits-list li:last-child {
    border-bottom: none;
}

.benefits-list li i {
    width: 40px;
    height: 40px;
    background: rgba(255, 255, 255, 0.2);
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.125rem;
    flex-shrink: 0;
}

.benefits-list li span {
    font-size: 1rem;
    font-weight: 500;
}

/* Login Page Responsive */
@media (max-width: 991.98px) {
    .login-wrapper {
        grid-template-columns: 1fr;
        max-width: 500px;
    }

    .login-info-panel {
        display: none;
    }
}

@media (max-width: 575.98px) {
    .login-page-container {
        padding: 2rem 0;
    }

    .login-card,
    .register-card {
        padding: 2rem 1.5rem;
        border-radius: 16px;
    }

    .captcha-wrapper {
        flex-direction: column;
    }

    .captcha-input {
        max-width: 100%;
    }

    .form-options {
        flex-direction: column;
        gap: 1rem;
        align-items: flex-start;
    }
}

/* ===================================
   Lost Password Page - Modern Design
=================================== */
.lost-password-page-container {
    min-height: calc(100vh - 200px);
    padding: 4rem 0;
    background: linear-gradient(135deg, rgba(17, 162, 215, 0.03) 0%, rgba(218, 48, 141, 0.03) 100%);
}

/* Lost Password Page Notices */
.lost-password-page-container .woocommerce-notices-wrapper {
    max-width: 1000px;
    margin: 0 auto 2rem;
}

.lost-password-page-container .woocommerce-error,
.lost-password-page-container .woocommerce-message,
.lost-password-page-container .woocommerce-info {
    display: flex;
    align-items: center;
    gap: 1rem;
    padding: 1.25rem 1.5rem;
    border-radius: 16px;
    margin: 0;
    font-size: 0.95rem;
    line-height: 1.5;
    list-style: none;
}

.lost-password-page-container .woocommerce-error {
    background: linear-gradient(135deg, rgba(239, 68, 68, 0.1) 0%, rgba(239, 68, 68, 0.05) 100%);
    border: 1px solid rgba(239, 68, 68, 0.2);
    color: #b91c1c;
}

.lost-password-page-container .woocommerce-message {
    background: linear-gradient(135deg, rgba(16, 185, 129, 0.1) 0%, rgba(16, 185, 129, 0.05) 100%);
    border: 1px solid rgba(16, 185, 129, 0.2);
    color: #047857;
}

.lost-password-page-container .woocommerce-info {
    background: linear-gradient(135deg, rgba(17, 162, 215, 0.1) 0%, rgba(17, 162, 215, 0.05) 100%);
    border: 1px solid rgba(17, 162, 215, 0.2);
    color: #0369a1;
}

.lost-password-page-container .woocommerce-error::before,
.lost-password-page-container .woocommerce-message::before,
.lost-password-page-container .woocommerce-info::before {
    font-family: 'bootstrap-icons';
    font-size: 1.25rem;
    flex-shrink: 0;
}

.lost-password-page-container .woocommerce-error::before {
    content: '\f33a';
    color: #dc2626;
}

.lost-password-page-container .woocommerce-message::before {
    content: '\f26b';
    color: #10b981;
}

.lost-password-page-container .woocommerce-info::before {
    content: '\f431';
    color: var(--primary-color);
}

.lost-password-wrapper {
    display: grid;
    grid-template-columns: 1.2fr 1fr;
    gap: 3rem;
    max-width: 1000px;
    margin: 0 auto;
    align-items: center;
}

/* Lost Password Card */
.lost-password-card {
    background: white;
    border-radius: 24px;
    padding: 3rem;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.08);
    border: 1px solid rgba(0, 0, 0, 0.05);
}

.lost-password-card-header {
    text-align: center;
    margin-bottom: 2rem;
}

.lost-password-icon {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, var(--primary-color) 0%, var(--secondary-color) 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.5rem;
    font-size: 2rem;
    color: white;
    box-shadow: 0 8px 24px rgba(17, 162, 215, 0.3);
}

.lost-password-card-header h2 {
    font-size: 1.75rem;
    font-weight: 800;
    color: var(--text-color);
    margin-bottom: 0.5rem;
}

.lost-password-card-header p {
    color: var(--text-light);
    font-size: 0.95rem;
    margin: 0;
    line-height: 1.6;
}

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

.lost-password-card .form-group label {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-weight: 600;
    color: var(--text-color);
    margin-bottom: 0.625rem;
    font-size: 0.9rem;
}

.lost-password-card .form-group label i {
    color: var(--primary-color);
    font-size: 1rem;
}

.lost-password-card .form-group .required {
    color: var(--secondary-color);
}

.lost-password-card .form-control {
    width: 100%;
    padding: 0.875rem 1rem;
    border: 2px solid #e5e7eb;
    border-radius: 12px;
    font-size: 1rem;
    transition: all 0.3s ease;
    background: #f9fafb;
}

.lost-password-card .form-control:focus {
    outline: none;
    border-color: var(--primary-color);
    background: white;
    box-shadow: 0 0 0 4px rgba(17, 162, 215, 0.1);
}

.lost-password-card .form-control::placeholder {
    color: #9ca3af;
}

.lost-password-card .submit-group {
    margin-top: 2rem;
    margin-bottom: 0;
}

.lost-password-card .btn-reset-password {
    width: 100%;
    padding: 1rem 1.5rem;
    font-size: 1rem;
    font-weight: 600;
    border-radius: 12px;
    border: none;
    background: linear-gradient(135deg, var(--primary-color) 0%, var(--secondary-color) 100%);
    color: white;
    cursor: pointer;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    box-shadow: 0 4px 15px rgba(17, 162, 215, 0.3);
}

.lost-password-card .btn-reset-password:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(17, 162, 215, 0.4);
}

.lost-password-card-footer {
    text-align: center;
    margin-top: 2rem;
    padding-top: 1.5rem;
    border-top: 1px solid #e5e7eb;
}

.lost-password-card-footer p {
    color: var(--text-light);
    font-size: 0.9rem;
    margin-bottom: 0.5rem;
}

.lost-password-card-footer .back-to-login {
    color: var(--primary-color);
    font-weight: 600;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    transition: color 0.3s ease;
}

.lost-password-card-footer .back-to-login:hover {
    color: var(--secondary-color);
}

/* Lost Password Info Panel */
.lost-password-info-panel {
    background: linear-gradient(135deg, var(--primary-color) 0%, var(--secondary-color) 100%);
    border-radius: 24px;
    padding: 2.5rem;
    color: white;
    height: 100%;
    display: flex;
    align-items: center;
}

.lost-password-info-panel .info-panel-content {
    width: 100%;
}

.lost-password-info-panel h3 {
    font-size: 1.5rem;
    font-weight: 700;
    margin-bottom: 1.5rem;
    color: white;
}

.lost-password-info-panel .instructions-list {
    list-style: none;
    padding: 0;
    margin: 0 0 1.5rem 0;
}

.lost-password-info-panel .instructions-list li {
    display: flex;
    align-items: flex-start;
    gap: 1rem;
    margin-bottom: 1rem;
    font-size: 0.95rem;
    line-height: 1.5;
}

.lost-password-info-panel .instructions-list li:last-child {
    margin-bottom: 0;
}

.lost-password-info-panel .step-number {
    width: 28px;
    height: 28px;
    background: rgba(255, 255, 255, 0.2);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    font-size: 0.85rem;
    flex-shrink: 0;
}

.lost-password-info-panel .help-note {
    background: rgba(255, 255, 255, 0.1);
    border-radius: 12px;
    padding: 1rem;
    display: flex;
    align-items: flex-start;
    gap: 0.75rem;
    font-size: 0.85rem;
    line-height: 1.5;
    margin-top: 1.5rem;
}

.lost-password-info-panel .help-note i {
    font-size: 1.1rem;
    flex-shrink: 0;
    margin-top: 0.1rem;
}

/* Reset Link Sent Confirmation */
.reset-link-sent-wrapper {
    max-width: 550px;
    margin: 0 auto;
}

.reset-link-sent-card {
    background: white;
    border-radius: 24px;
    padding: 3rem;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.08);
    border: 1px solid rgba(0, 0, 0, 0.05);
    text-align: center;
}

.success-animation {
    position: relative;
    width: 120px;
    height: 120px;
    margin: 0 auto 2rem;
}

.success-icon {
    width: 120px;
    height: 120px;
    background: linear-gradient(135deg, rgba(16, 185, 129, 0.1) 0%, rgba(16, 185, 129, 0.05) 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 3.5rem;
    color: #10b981;
    animation: pulse-success 2s ease-in-out infinite;
}

.success-checkmark {
    position: absolute;
    bottom: -5px;
    right: -5px;
    width: 40px;
    height: 40px;
    background: linear-gradient(135deg, #10b981 0%, #059669 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 1.25rem;
    box-shadow: 0 4px 12px rgba(16, 185, 129, 0.4);
    animation: bounce-in 0.5s ease-out;
}

@keyframes pulse-success {
    0%, 100% {
        transform: scale(1);
        box-shadow: 0 0 0 0 rgba(16, 185, 129, 0.2);
    }
    50% {
        transform: scale(1.02);
        box-shadow: 0 0 0 15px rgba(16, 185, 129, 0);
    }
}

@keyframes bounce-in {
    0% {
        transform: scale(0);
        opacity: 0;
    }
    50% {
        transform: scale(1.2);
    }
    100% {
        transform: scale(1);
        opacity: 1;
    }
}

.reset-link-sent-card h2 {
    font-size: 1.75rem;
    font-weight: 800;
    color: var(--text-color);
    margin-bottom: 1rem;
}

.reset-link-sent-card .success-message {
    color: var(--text-light);
    font-size: 1rem;
    line-height: 1.7;
    margin-bottom: 2rem;
    max-width: 400px;
    margin-left: auto;
    margin-right: auto;
}

.reset-link-sent-card .email-tips {
    background: #f8fafc;
    border-radius: 16px;
    padding: 1.5rem;
    text-align: left;
    margin-bottom: 2rem;
}

.reset-link-sent-card .email-tips h4 {
    font-size: 0.95rem;
    font-weight: 700;
    color: var(--text-color);
    margin-bottom: 1rem;
}

.reset-link-sent-card .email-tips ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.reset-link-sent-card .email-tips ul li {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    padding: 0.5rem 0;
    color: var(--text-light);
    font-size: 0.9rem;
}

.reset-link-sent-card .email-tips ul li i {
    color: var(--primary-color);
    font-size: 1.1rem;
    width: 24px;
    flex-shrink: 0;
}

.confirmation-actions {
    display: flex;
    gap: 1rem;
    justify-content: center;
}

.confirmation-actions .btn {
    padding: 0.875rem 1.5rem;
    font-size: 0.95rem;
    font-weight: 600;
    border-radius: 12px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
    text-decoration: none;
}

.confirmation-actions .btn-try-again {
    background: white;
    border: 2px solid #e5e7eb;
    color: var(--text-color);
}

.confirmation-actions .btn-try-again:hover {
    border-color: var(--primary-color);
    color: var(--primary-color);
    background: rgba(17, 162, 215, 0.05);
}

.confirmation-actions .btn-back-login {
    background: linear-gradient(135deg, var(--primary-color) 0%, var(--secondary-color) 100%);
    border: none;
    color: white;
    box-shadow: 0 4px 15px rgba(17, 162, 215, 0.3);
}

.confirmation-actions .btn-back-login:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(17, 162, 215, 0.4);
    color: white;
}

/* Hide WooCommerce default notices on confirmation page - we have custom UI */
.reset-link-sent-wrapper + .woocommerce-notices-wrapper,
.reset-link-sent-wrapper ~ .woocommerce-message,
.lost-password-page-container .reset-link-sent-wrapper ~ .woocommerce,
.lost-password-page-container:has(.reset-link-sent-wrapper) .woocommerce-notices-wrapper,
.lost-password-page-container:has(.reset-link-sent-wrapper) .woocommerce-message,
.lost-password-page-container:has(.reset-link-sent-wrapper) .woocommerce-info {
    display: none !important;
}

/* Enhanced Confirmation Page Animations */
.reset-link-sent-wrapper {
    animation: fadeInUp 0.6s ease-out;
}

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Decorative Background Elements */
.reset-link-sent-card {
    position: relative;
    overflow: hidden;
}

.reset-link-sent-card::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -50%;
    width: 100%;
    height: 100%;
    background: radial-gradient(circle, rgba(16, 185, 129, 0.03) 0%, transparent 70%);
    pointer-events: none;
}

/* Success Icon Enhancement */
.success-icon {
    position: relative;
}

.success-icon::after {
    content: '';
    position: absolute;
    width: 100%;
    height: 100%;
    border-radius: 50%;
    border: 2px dashed rgba(16, 185, 129, 0.3);
    animation: rotate-border 20s linear infinite;
}

@keyframes rotate-border {
    from {
        transform: rotate(0deg);
    }
    to {
        transform: rotate(360deg);
    }
}

/* Celebration Dots Animation */
.success-animation::before,
.success-animation::after {
    content: '';
    position: absolute;
    width: 8px;
    height: 8px;
    background: #10b981;
    border-radius: 50%;
    animation: float-dots 3s ease-in-out infinite;
}

.success-animation::before {
    top: 10px;
    left: -5px;
    animation-delay: 0s;
}

.success-animation::after {
    top: 20px;
    right: -10px;
    animation-delay: 1.5s;
}

@keyframes float-dots {
    0%, 100% {
        transform: translateY(0) scale(1);
        opacity: 0.6;
    }
    50% {
        transform: translateY(-10px) scale(1.2);
        opacity: 1;
    }
}

/* Email Tips Card Enhancement */
.reset-link-sent-card .email-tips {
    position: relative;
    background: linear-gradient(135deg, #f0fdf4 0%, #ecfdf5 100%);
    border: 1px solid rgba(16, 185, 129, 0.1);
}

.reset-link-sent-card .email-tips ul li {
    transition: all 0.3s ease;
}

.reset-link-sent-card .email-tips ul li:hover {
    transform: translateX(5px);
    color: var(--text-color);
}

/* Staggered Animation for Tips */
.reset-link-sent-card .email-tips ul li:nth-child(1) {
    animation: slideInRight 0.5s ease-out 0.2s both;
}

.reset-link-sent-card .email-tips ul li:nth-child(2) {
    animation: slideInRight 0.5s ease-out 0.4s both;
}

.reset-link-sent-card .email-tips ul li:nth-child(3) {
    animation: slideInRight 0.5s ease-out 0.6s both;
}

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

/* Button Enhancements */
.confirmation-actions .btn {
    position: relative;
    overflow: hidden;
}

.confirmation-actions .btn::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.2), transparent);
    transition: left 0.5s ease;
}

.confirmation-actions .btn:hover::before {
    left: 100%;
}

/* Success Message Enhancement */
.reset-link-sent-card h2 {
    background: linear-gradient(135deg, #10b981 0%, #059669 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

/* ===================================
   Fallback Styles for Default WooCommerce
   Password Reset Confirmation Page
   (Only applies when confirmation message is shown, not the form)
=================================== */
.woocommerce-lost-password.woocommerce-page .woocommerce:has(.woocommerce-message):not(:has(.lost-password-page-container)),
.woocommerce-account .woocommerce .woocommerce-ResetPassword.lost_reset_password ~ p {
    max-width: 550px;
    margin: 3rem auto;
    padding: 0 1rem;
}

/* Style the default confirmation message container */
.woocommerce-lost-password.woocommerce-page .woocommerce-message,
.woocommerce-account .woocommerce-message:first-child {
    background: linear-gradient(135deg, rgba(16, 185, 129, 0.1) 0%, rgba(16, 185, 129, 0.05) 100%);
    border: 1px solid rgba(16, 185, 129, 0.2);
    border-radius: 16px;
    padding: 1.5rem 2rem 1.5rem 3.5rem;
    color: #047857;
    font-size: 1rem;
    font-weight: 600;
    margin-bottom: 1.5rem;
    position: relative;
}

.woocommerce-lost-password.woocommerce-page .woocommerce-message::before,
.woocommerce-account .woocommerce-message:first-child::before {
    content: '\f26b';
    font-family: 'bootstrap-icons';
    font-size: 1.5rem;
    color: #10b981;
    position: absolute;
    left: 1.25rem;
    top: 50%;
    transform: translateY(-50%);
}

/* Style the confirmation paragraph text */
.woocommerce-lost-password.woocommerce-page .woocommerce > p,
.woocommerce-account .woocommerce .woocommerce-message + p {
    background: white;
    border-radius: 20px;
    padding: 2.5rem;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.08);
    border: 1px solid rgba(0, 0, 0, 0.05);
    color: var(--text-light);
    font-size: 1rem;
    line-height: 1.8;
    text-align: center;
    position: relative;
}

.woocommerce-lost-password.woocommerce-page .woocommerce > p::before,
.woocommerce-account .woocommerce .woocommerce-message + p::before {
    content: '\f32f';
    font-family: 'bootstrap-icons';
    font-size: 4rem;
    color: #10b981;
    display: block;
    margin-bottom: 1.5rem;
    opacity: 0.8;
}

/* Add a back to login link style enhancement */
.woocommerce-lost-password.woocommerce-page .woocommerce > p::after {
    content: '';
    display: block;
    margin-top: 2rem;
    padding-top: 1.5rem;
    border-top: 1px solid #e5e7eb;
}

/* Page background for lost password */
.woocommerce-lost-password.woocommerce-page,
body.page-template-default.woocommerce-lost-password {
    background: linear-gradient(135deg, rgba(17, 162, 215, 0.03) 0%, rgba(218, 48, 141, 0.03) 100%);
    min-height: calc(100vh - 200px);
}

/* Responsive Lost Password Page */
@media (max-width: 768px) {
    .lost-password-page-container {
        padding: 2rem 0;
    }

    .lost-password-wrapper {
        grid-template-columns: 1fr;
        gap: 2rem;
        padding: 0 1rem;
    }

    .lost-password-card {
        padding: 2rem;
        order: 1;
    }

    .lost-password-info-panel {
        order: 2;
        padding: 2rem;
    }

    .lost-password-icon {
        width: 70px;
        height: 70px;
        font-size: 1.75rem;
    }

    .lost-password-card-header h2 {
        font-size: 1.5rem;
    }

    .reset-link-sent-wrapper {
        padding: 0 1rem;
    }

    .reset-link-sent-card {
        padding: 2rem;
    }

    .success-animation {
        width: 100px;
        height: 100px;
    }

    .success-icon {
        width: 100px;
        height: 100px;
        font-size: 2.5rem;
    }

    .success-checkmark {
        width: 35px;
        height: 35px;
        font-size: 1rem;
    }

    .reset-link-sent-card h2 {
        font-size: 1.5rem;
    }

    .confirmation-actions {
        flex-direction: column;
    }

    .confirmation-actions .btn {
        width: 100%;
    }
}

/* ===================================
   My Account Page - Modern Design
=================================== */
.myaccount-page-container {
    padding: 3rem 0 4rem;
    background: #f8fafc;
    min-height: calc(100vh - 200px);
}

/* Account Header */
.myaccount-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    background: white;
    padding: 2rem;
    border-radius: 16px;
    margin-bottom: 2rem;
    box-shadow: 0 2px 12px rgba(0, 0, 0, 0.06);
}

.myaccount-welcome {
    display: flex;
    align-items: center;
    gap: 1.5rem;
}

.user-avatar {
    width: 80px;
    height: 80px;
    border-radius: 50%;
    overflow: hidden;
    border: 4px solid rgba(17, 162, 215, 0.1);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
}

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

.user-info h1 {
    font-size: 1.5rem;
    font-weight: 700;
    margin-bottom: 0.25rem;
    color: var(--text-color);
}

.user-info h1 span {
    background: linear-gradient(135deg, var(--primary-color) 0%, var(--secondary-color) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.user-email {
    color: var(--text-light);
    font-size: 0.9375rem;
    margin: 0;
}

.logout-btn {
    border-radius: 10px;
    padding: 0.75rem 1.25rem;
}

/* Account Sidebar */
.myaccount-sidebar {
    display: flex;
    flex-direction: column;
    background: white;
    border-radius: 16px;
    padding: 1.5rem;
    box-shadow: 0 2px 12px rgba(0, 0, 0, 0.06);
    position: sticky;
    top: 2rem;
    z-index: 10;
    align-self: flex-start;
    overflow: visible;
}

.woocommerce-MyAccount-navigation {
    overflow: visible;
    width: 100%;
}

.woocommerce-MyAccount-navigation ul {
    list-style: none;
    padding: 0;
    margin: 0;
    overflow: visible;
    width: 100%;
}

.woocommerce-MyAccount-navigation ul li {
    margin-bottom: 0.5rem;
    overflow: visible;
    width: 100%;
}

.woocommerce-MyAccount-navigation ul li:last-child {
    margin-bottom: 0;
    margin-top: 1rem;
    padding-top: 1rem;
    border-top: 1px solid #e5e7eb;
}

.woocommerce-MyAccount-navigation ul li a {
    display: flex;
    align-items: center;
    gap: 0.875rem;
    padding: 0.875rem 1rem;
    border-radius: 10px;
    color: var(--text-color);
    text-decoration: none;
    font-weight: 500;
    transition: all 0.3s ease;
    white-space: nowrap;
    width: 100%;
    box-sizing: border-box;
}

.woocommerce-MyAccount-navigation ul li a span {
    white-space: nowrap;
}

.woocommerce-MyAccount-navigation ul li a i {
    font-size: 1.125rem;
    color: var(--primary-color) !important;
    transition: color 0.3s ease;
}

.woocommerce-MyAccount-navigation ul li a:hover {
    background: rgba(17, 162, 215, 0.05);
    color: var(--primary-color);
}

.woocommerce-MyAccount-navigation ul li a:hover i {
    color: var(--primary-color);
}

.woocommerce-MyAccount-navigation ul li.is-active a {
    /* background: linear-gradient(135deg, var(--primary-color) 0%, var(--secondary-color) 100%); */
    color: var(--primary-color);
    font-weight: bold;
    overflow: visible;
    min-width: 100% !important;
}

.woocommerce-MyAccount-navigation ul li.is-active a i {
    color: white;
}

.nav-badge {
    margin-left: auto;
    background: rgba(17, 162, 215, 0.15);
    color: var(--primary-color);
    padding: 0.125rem 0.5rem;
    border-radius: 10px;
    font-size: 0.75rem;
    font-weight: 600;
}

.woocommerce-MyAccount-navigation ul li.is-active .nav-badge {
    background: rgba(255, 255, 255, 0.2);
    color: white;
}

/* Account Main Content */
.myaccount-main-content {
    background: white;
    border-radius: 16px;
    padding: 2rem;
    box-shadow: 0 2px 12px rgba(0, 0, 0, 0.06);
    min-height: 400px;
}

/* Dashboard Stats */
.dashboard-stats {
    margin-bottom: 2rem;
}

.stat-card {
    background: white;
    border-radius: 16px;
    padding: 1.5rem;
    border: 1px solid #e5e7eb;
    position: relative;
    overflow: hidden;
    transition: all 0.3s ease;
}

.stat-card:hover {
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.1);
    transform: translateY(-4px);
}

.stat-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
}

.stat-orders::before {
    background: linear-gradient(90deg, var(--primary-color), #0ea5e9);
}

.stat-downloads::before {
    background: linear-gradient(90deg, #10b981, #34d399);
}

.stat-wishlist::before {
    background: linear-gradient(90deg, var(--secondary-color), #f472b6);
}

.stat-icon {
    width: 50px;
    height: 50px;
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    margin-bottom: 1rem;
}

.stat-orders .stat-icon {
    background: rgba(17, 162, 215, 0.1);
    color: var(--primary-color);
}

.stat-downloads .stat-icon {
    background: rgba(16, 185, 129, 0.1);
    color: #10b981;
}

.stat-wishlist .stat-icon {
    background: rgba(218, 48, 141, 0.1);
    color: var(--secondary-color);
}

.stat-content h3 {
    font-size: 2rem;
    font-weight: 800;
    color: var(--text-color);
    margin-bottom: 0.25rem;
}

.stat-content p {
    color: var(--text-light);
    font-size: 0.875rem;
    margin: 0;
}

.stat-link {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    margin-top: 1rem;
    font-size: 0.875rem;
    font-weight: 600;
    color: var(--primary-color);
    text-decoration: none;
    transition: gap 0.3s ease;
}

.stat-link:hover {
    gap: 0.75rem;
}

/* Quick Actions */
.quick-actions-section {
    margin-bottom: 2rem;
}

.section-title {
    font-size: 1.25rem;
    font-weight: 700;
    color: var(--text-color);
    margin-bottom: 1.25rem;
}

.quick-actions {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 1rem;
}

.quick-action-btn {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.75rem;
    padding: 1.5rem 1rem;
    background: #f8fafc;
    border-radius: 12px;
    text-decoration: none;
    color: var(--text-color);
    transition: all 0.3s ease;
    border: 1px solid transparent;
}

.quick-action-btn i {
    font-size: 1.5rem;
    color: var(--primary-color);
}

.quick-action-btn span {
    font-size: 0.875rem;
    font-weight: 500;
    text-align: center;
}

.quick-action-btn:hover {
    background: white;
    border-color: rgba(17, 162, 215, 0.2);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
    transform: translateY(-2px);
}

/* Recent Orders Section */
.myaccount-main-content .section-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 1.25rem;
}

.view-all-link {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    color: var(--primary-color);
    font-weight: 600;
    font-size: 0.875rem;
    text-decoration: none;
    transition: gap 0.3s ease;
}

.view-all-link:hover {
    gap: 0.75rem;
}

.recent-orders-list {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.recent-order-card {
    display: flex;
    align-items: center;
    gap: 1.5rem;
    padding: 1.25rem;
    background: #f8fafc;
    border-radius: 12px;
    transition: all 0.3s ease;
}

.recent-order-card:hover {
    background: white;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
}

.order-info {
    display: flex;
    flex-direction: column;
    gap: 0.375rem;
    min-width: 150px;
}

.order-number strong {
    font-size: 1rem;
    color: var(--text-color);
}

.order-date {
    display: block;
    font-size: 0.8125rem;
    color: var(--text-light);
}

.order-status {
    display: inline-block;
    padding: 0.25rem 0.75rem;
    border-radius: 20px;
    font-size: 0.75rem;
    font-weight: 600;
    text-transform: capitalize;
}

.order-status.status-completed {
    background: rgba(16, 185, 129, 0.1);
    color: #10b981;
}

.order-status.status-processing {
    background: rgba(59, 130, 246, 0.1);
    color: #3b82f6;
}

.order-status.status-on-hold {
    background: rgba(245, 158, 11, 0.1);
    color: #f59e0b;
}

.order-status.status-pending {
    background: rgba(156, 163, 175, 0.1);
    color: #6b7280;
}

.order-status.status-cancelled,
.order-status.status-failed {
    background: rgba(239, 68, 68, 0.1);
    color: #ef4444;
}

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

.order-item-name {
    color: var(--text-color);
    font-size: 0.9375rem;
}

.more-items {
    color: var(--text-light);
    font-size: 0.8125rem;
    margin-left: 0.5rem;
}

.order-total {
    font-weight: 700;
    color: var(--text-color);
}

.order-actions .btn {
    border-radius: 8px;
    padding: 0.5rem 1rem;
    font-size: 0.8125rem;
}

/* Empty State */
.empty-state {
    text-align: center;
    padding: 3rem 2rem;
}

.empty-state i {
    font-size: 4rem;
    color: #d1d5db;
    margin-bottom: 1.5rem;
}

.empty-state h3 {
    font-size: 1.25rem;
    color: var(--text-color);
    margin-bottom: 0.5rem;
}

.empty-state p {
    color: var(--text-light);
    margin-bottom: 1.5rem;
}

/* My Account Tables */
.myaccount-main-content table {
    width: 100%;
    border-collapse: collapse;
}

.myaccount-main-content table thead th {
    background: #f8fafc;
    padding: 1rem;
    text-align: left;
    font-weight: 600;
    color: var(--text-color);
    font-size: 0.875rem;
    border-bottom: 2px solid #e5e7eb;
}

.myaccount-main-content table tbody td {
    padding: 1rem;
    border-bottom: 1px solid #e5e7eb;
    color: var(--text-color);
    font-size: 0.9375rem;
}

.myaccount-main-content table tbody tr:hover {
    background: #f8fafc;
}

.myaccount-main-content table .button {
    padding: 0.5rem 1rem;
    font-size: 0.8125rem;
    border-radius: 8px;
}

/* My Account Responsive */
@media (max-width: 991.98px) {
    .myaccount-header {
        flex-direction: column;
        text-align: center;
        gap: 1.5rem;
    }

    .myaccount-welcome {
        flex-direction: column;
    }

    .quick-actions {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 767.98px) {
    .myaccount-page-container {
        padding: 2rem 0;
    }

    .myaccount-sidebar {
        margin-bottom: 1.5rem;
        position: static;
    }

    .myaccount-main-content {
        padding: 1.5rem;
    }

    .stat-content h3 {
        font-size: 1.5rem;
    }

    .recent-order-card {
        flex-direction: column;
        align-items: flex-start;
        gap: 1rem;
    }

    .order-details {
        width: 100%;
        flex-direction: column;
        align-items: flex-start;
        gap: 0.5rem;
    }

    .order-actions {
        width: 100%;
    }

    .order-actions .btn {
        width: 100%;
        justify-content: center;
    }

    .myaccount-main-content table {
        display: block;
        overflow-x: auto;
    }
}

/* ===================================
   Pricing Page Styles
=================================== */
.pricing-page {
    background: #fafbfc;
    min-height: 100vh;
}

/* Hero Section */
.pricing-hero {
    background: linear-gradient(135deg, var(--primary-color) 0%, var(--secondary-color) 100%);
    padding: 4rem 0 6rem;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.pricing-hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cg fill='%23ffffff' fill-opacity='0.05'%3E%3Cpath d='M36 34v-4h-2v4h-4v2h4v4h2v-4h4v-2h-4zm0-30V0h-2v4h-4v2h4v4h2V6h4V4h-4zM6 34v-4H4v4H0v2h4v4h2v-4h4v-2H6zM6 4V0H4v4H0v2h4v4h2V6h4V4H6z'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
    opacity: 0.5;
}

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

.pricing-badge {
    display: inline-block;
    background: rgba(255, 255, 255, 0.2);
    color: white;
    padding: 0.5rem 1.25rem;
    border-radius: 50px;
    font-size: 0.875rem;
    font-weight: 600;
    margin-bottom: 1.5rem;
    backdrop-filter: blur(10px);
}

.pricing-hero h1 {
    color: white;
    font-size: 3rem;
    font-weight: 800;
    margin-bottom: 1rem;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
}

.pricing-hero p {
    color: rgba(255, 255, 255, 0.9);
    font-size: 1.25rem;
    max-width: 600px;
    margin: 0 auto;
}

/* Pricing Section */
.pricing-section {
    padding: 0 0 4rem;
    margin-top: -3rem;
    position: relative;
    z-index: 2;
}

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

/* Pricing Card */
.pricing-card {
    background: white;
    border-radius: 20px;
    padding: 2rem;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.08);
    border: 2px solid transparent;
    transition: all 0.3s ease;
    position: relative;
    display: flex;
    flex-direction: column;
}

.pricing-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.12);
}

.pricing-card.popular {
    border-color: var(--plan-color);
    transform: scale(1.05);
    z-index: 1;
}

.pricing-card.popular:hover {
    transform: scale(1.05) translateY(-8px);
}

.popular-badge {
    position: absolute;
    top: -12px;
    left: 50%;
    transform: translateX(-50%);
    background: linear-gradient(135deg, var(--plan-color) 0%, var(--secondary-color) 100%);
    color: white;
    padding: 0.4rem 1.25rem;
    border-radius: 50px;
    font-size: 0.75rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    white-space: nowrap;
}

.pricing-card-header {
    text-align: center;
    padding-bottom: 1.5rem;
    border-bottom: 1px solid #eee;
    margin-bottom: 1.5rem;
}

.plan-name {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--plan-color);
    margin-bottom: 0.25rem;
}

.plan-subtitle {
    color: var(--text-light);
    font-size: 0.9rem;
    margin-bottom: 1.25rem;
}

.plan-price {
    display: flex;
    align-items: baseline;
    justify-content: center;
    gap: 0.25rem;
}

.plan-price .currency {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--text-color);
}

.plan-price .amount {
    font-size: 3.5rem;
    font-weight: 800;
    color: var(--text-color);
    line-height: 1;
}

.plan-price .period {
    font-size: 0.875rem;
    color: var(--text-light);
    margin-left: 0.25rem;
}

/* Features List */
.pricing-card-body {
    flex-grow: 1;
}

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

.features-list li {
    display: flex;
    align-items: flex-start;
    gap: 0.75rem;
    padding: 0.6rem 0;
    font-size: 0.9375rem;
    color: var(--text-color);
}

.features-list li svg {
    flex-shrink: 0;
    margin-top: 2px;
}

.features-list li.included svg {
    color: #10b981;
}

.features-list li.not-included {
    color: var(--text-light);
    opacity: 0.6;
}

.features-list li.not-included svg {
    color: #cbd5e1;
}

/* CTA Button */
.pricing-card-footer {
    margin-top: 1.5rem;
    padding-top: 1.5rem;
    border-top: 1px solid #eee;
}

.pricing-cta-btn {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.75rem;
    width: 100%;
    padding: 1rem 1.5rem;
    background: linear-gradient(135deg, var(--plan-color) 0%, color-mix(in srgb, var(--plan-color) 80%, #000) 100%);
    color: white;
    border: none;
    border-radius: 12px;
    font-size: 1rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    text-decoration: none;
}

.pricing-cta-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.2);
    color: white;
}

.pricing-cta-btn svg {
    flex-shrink: 0;
}

/* Add-ons Section */
.addons-section {
    padding: 4rem 0;
    background: white;
}

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

.section-header h2 {
    font-size: 2rem;
    font-weight: 700;
    color: var(--text-color);
    margin-bottom: 0.5rem;
}

.section-header p {
    color: var(--text-light);
    font-size: 1.1rem;
}

.addons-grid {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 1rem;
    max-width: 900px;
    margin: 0 auto;
}

.addon-card {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 1.5rem;
    background: #f8fafc;
    padding: 1rem 1.5rem;
    border-radius: 12px;
    border: 1px solid #e2e8f0;
    min-width: 220px;
    transition: all 0.3s ease;
}

.addon-card:hover {
    border-color: var(--primary-color);
    box-shadow: 0 4px 12px rgba(17, 162, 215, 0.1);
}

.addon-name {
    font-weight: 600;
    color: var(--text-color);
}

.addon-price {
    font-weight: 700;
    color: var(--primary-color);
    white-space: nowrap;
}

/* What's Included Section */
.included-section {
    padding: 4rem 0;
    background: linear-gradient(180deg, #f8fafc 0%, white 100%);
}

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

.included-item {
    text-align: center;
    padding: 2rem 1.5rem;
    background: white;
    border-radius: 16px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.05);
    transition: all 0.3s ease;
}

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

.included-icon {
    width: 64px;
    height: 64px;
    background: linear-gradient(135deg, rgba(17, 162, 215, 0.1) 0%, rgba(218, 48, 141, 0.1) 100%);
    border-radius: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.25rem;
    color: var(--primary-color);
}

.included-item h4 {
    font-size: 1.125rem;
    font-weight: 700;
    color: var(--text-color);
    margin-bottom: 0.5rem;
}

.included-item p {
    color: var(--text-light);
    font-size: 0.9rem;
    line-height: 1.5;
    margin: 0;
}

/* FAQ Section */
.faq-section {
    padding: 4rem 0;
    background: white;
}

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

.faq-item {
    background: #f8fafc;
    padding: 1.5rem;
    border-radius: 12px;
    border-left: 4px solid var(--primary-color);
}

.faq-item h4 {
    font-size: 1rem;
    font-weight: 700;
    color: var(--text-color);
    margin-bottom: 0.5rem;
}

.faq-item p {
    color: var(--text-light);
    font-size: 0.9rem;
    line-height: 1.6;
    margin: 0;
}

/* CTA Section */
.pricing-cta-section {
    padding: 4rem 0;
    background: linear-gradient(135deg, var(--primary-color) 0%, var(--secondary-color) 100%);
    text-align: center;
}

.cta-content h2 {
    color: white;
    font-size: 2.25rem;
    font-weight: 700;
    margin-bottom: 0.75rem;
}

.cta-content p {
    color: rgba(255, 255, 255, 0.9);
    font-size: 1.125rem;
    margin-bottom: 2rem;
}

.cta-btn {
    display: inline-flex;
    align-items: center;
    gap: 0.75rem;
    background: white;
    color: var(--primary-color);
    padding: 1rem 2.5rem;
    border-radius: 50px;
    font-size: 1.125rem;
    font-weight: 700;
    text-decoration: none;
    transition: all 0.3s ease;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.2);
}

.cta-btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.3);
    color: var(--secondary-color);
}

.cta-btn svg {
    color: #25D366;
}

/* Pricing Page Responsive */
@media (max-width: 1024px) {
    .pricing-grid {
        grid-template-columns: repeat(3, 1fr);
        gap: 1.5rem;
    }

    .pricing-card.popular {
        transform: scale(1.02);
    }

    .pricing-card.popular:hover {
        transform: scale(1.02) translateY(-8px);
    }

    .included-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 900px) {
    .pricing-grid {
        grid-template-columns: 1fr;
        max-width: 450px;
    }

    .pricing-card.popular {
        transform: none;
        order: -1;
    }

    .pricing-card.popular:hover {
        transform: translateY(-8px);
    }

    .faq-grid {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 768px) {
    .pricing-hero {
        padding: 3rem 0 5rem;
    }

    .pricing-hero h1 {
        font-size: 2.25rem;
    }

    .pricing-hero p {
        font-size: 1rem;
    }

    .plan-price .amount {
        font-size: 2.75rem;
    }

    .section-header h2 {
        font-size: 1.5rem;
    }

    .included-grid {
        grid-template-columns: 1fr;
        max-width: 350px;
        margin: 0 auto;
    }

    .addons-grid {
        flex-direction: column;
        align-items: stretch;
    }

    .addon-card {
        min-width: auto;
    }

    .cta-content h2 {
        font-size: 1.75rem;
    }
}

@media (max-width: 480px) {
    .pricing-hero {
        padding: 2rem 0 4rem;
    }

    .pricing-hero h1 {
        font-size: 1.75rem;
    }

    .pricing-section {
        margin-top: -2rem;
    }

    .pricing-card {
        padding: 1.5rem;
    }

    .plan-price .amount {
        font-size: 2.5rem;
    }

    .features-list li {
        font-size: 0.875rem;
    }

    .faq-item {
        padding: 1.25rem;
    }

    .cta-btn {
        padding: 0.875rem 2rem;
        font-size: 1rem;
    }
}
