/* Product Categories Grid */
.product-categories-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    grid-column-gap: 40px;
    grid-row-gap: 40px;
    margin-top: 50px;
    width: 100%;
}

.product-category-item {
    background-color: var(--white);
    border-bottom: 4px solid var(--deep-sky-blue);
    position: relative;
    overflow: hidden;
    transition: box-shadow 1s;
    box-shadow: 0 2px 12px 2px #0003;
}

.product-category-item:hover {
    box-shadow: 0 2px 12px 2px #00000073;
}

.product-category-link {
    display: block;
    width: 100%;
    height: 100%;
    color: var(--dark-slate-grey-2);
    text-decoration: none;
}

.product-category-image-holder {
    position: relative;
    width: 100%;
    height: 200px;
    overflow: hidden;
}

.product-category-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: filter 1s, transform 1s;
}

.product-category-overlay {
    position: absolute;
    inset: 0;
    background-color: #00000040;
    opacity: 0;
    transition: opacity 1s;
}

.product-category-item:hover .product-category-image {
    filter: brightness(80%);
    transform: scale(1.05);
}

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

.product-category-content {
    padding: 24px 20px 20px;
    min-height: 120px;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

.product-category-title {
    color: var(--deep-sky-blue);
    font-size: 24px;
    font-weight: 700;
    margin-bottom: 10px;
    transition: color 1s;
}

.product-category-item:hover .product-category-title {
    color: var(--dark-slate-grey);
}

.product-category-description {
    color: var(--dim-grey-2);
    font-size: 16px;
    line-height: 1.4;
}

.product-category-arrow {
    text-align: right;
}

.category-arrow-icon {
    font-size: 24px;
    font-weight: 700;
    color: var(--deep-sky-blue);
    transition: color 1s, transform 1s;
}

.product-category-item:hover .category-arrow-icon {
    color: var(--dark-slate-grey);
    transform: translateX(5px);
}

/* Responsive */
@media (max-width: 991px) {
    .product-categories-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 479px) {
    .product-categories-grid {
        grid-template-columns: 1fr;
    }
}

/* Product Carousel */
.product-carousel-wrapper {
    width: 100%;
    margin-top: 50px;
    position: relative;
    overflow: visible;
}
.product-carousel {
    width: 100%;
    position: relative;
}
.product-carousel-track-container {
    width: 100%;
    overflow: hidden;
}
.product-carousel-track {
    display: flex;
    transition: transform 0.5s ease;
}
.product-carousel-slide {
    flex: 0 0 33.333%;
    max-width: 33.333%;
    padding: 0 10px;
    box-sizing: border-box;
}

/* Navigation Arrows */
.product-carousel-nav {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background-color: var(--deep-sky-blue, #00bcd4);
    color: #fff;
    cursor: pointer;
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    width: 50px;
    height: 50px;
    z-index: 10;
    transition: all 0.3s ease;
    border: none;
    outline: none;
    padding: 0;
}
.product-carousel-nav:hover {
    background-color: #0097a7;
    transform: translateY(-50%) scale(1.1);
}
.product-carousel-prev {
    left: -25px;
}
.product-carousel-next {
    right: -25px;
}
.product-carousel-nav .arrow-icon {
    font-size: 24px;
    font-weight: bold;
    line-height: 1;
    color: #fff;
}

/* Product-specific additions to blog-item */
.product-carousel .blog-item.product-card {
    height: 100%;
}
.product-carousel .product-carousel-price {
    font-size: 14px;
    color: #333;
    margin-bottom: 10px;
}
.product-carousel .product-carousel-price strong {
    font-size: 18px;
    color: var(--deep-sky-blue, #00bcd4);
}
.product-carousel .star-ratings-holder.product {
    display: flex;
    gap: 3px;
    margin-bottom: 12px;
}
.product-carousel .ratings-star.product {
    width: 16px;
    height: 16px;
}
.product-carousel .product-carousel-button {
    margin-top: auto;
}
.product-carousel .product-carousel-button .main-button {
    display: inline-block;
}

/* Responsive */
@media screen and (max-width: 991px) {
    .product-carousel-slide {
        flex: 0 0 50%;
        max-width: 50%;
    }
    .product-carousel-prev {
        left: 5px;
    }
    .product-carousel-next {
        right: 5px;
    }
    .product-carousel-nav {
        width: 40px;
        height: 40px;
    }
}
@media screen and (max-width: 479px) {
    .product-carousel-slide {
        flex: 0 0 100%;
        max-width: 100%;
    }
}

/* Popular Uses in Product Carousel */
.product-popular-uses {
    font-size: 15px;
    color: #666;
    padding: 10px 15px;
    line-height: 1.5;
}

.product-popular-uses strong {
    color: #333;
}

/* Products Grid */
.products-grid {
    display: grid;
    gap: 30px;
    margin-top: 30px;
}

/* Column variations */
.products-grid.columns-2 {
    grid-template-columns: repeat(2, 1fr);
}
.products-grid.columns-3 {
    grid-template-columns: repeat(3, 1fr);
}
.products-grid.columns-4 {
    grid-template-columns: repeat(4, 1fr);
}

/* Products Toolbar - Result Count & Sorting */
.products-toolbar {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-top: 30px;
    padding-bottom: 20px;
    border-bottom: 1px solid #eee;
    flex-wrap: wrap;
    gap: 15px;
}

.products-result-count {
    font-size: 14px;
    color: #666;
}

.products-sorting {
    position: relative;
}

.products-orderby {
    appearance: none;
    -webkit-appearance: none;
    -moz-appearance: none;
    background-color: #fff;
    border: 1px solid #ddd;
    border-radius: 4px;
    padding: 10px 40px 10px 15px;
    font-size: 14px;
    color: #333;
    cursor: pointer;
    min-width: 200px;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' viewBox='0 0 12 12'%3E%3Cpath fill='%23333' d='M6 8L1 3h10z'/%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: right 15px center;
    transition: border-color 0.3s ease;
}

.products-orderby:hover,
.products-orderby:focus {
    border-color: var(--deep-sky-blue, #00bcd4);
    outline: none;
}

/* Product card specific styles */
.products-grid .product-card {
    height: 100%;
    display: flex;
    flex-direction: column;
}

/* Popular Uses - description under product name */
.products-grid .product-popular-uses {
    font-size: 15px;
    color: #666;
    margin-bottom: 10px;
    line-height: 1.5;
}

.products-grid .product-popular-uses p {
    margin: 0;
}

.products-grid .product-grid-price {
    font-size: 14px;
    color: #333;
    margin-bottom: 10px;
}
.products-grid .product-grid-price strong {
    font-size: 18px;
    color: var(--deep-sky-blue, #00bcd4);
}

.products-grid .star-ratings-holder.product {
    display: flex;
    gap: 3px;
    margin-bottom: 12px;
}
.products-grid .ratings-star.product {
    width: 16px;
    height: 16px;
}

.products-grid .product-grid-button {
    margin-top: auto;
}
.products-grid .product-grid-button .main-button {
    display: inline-block;
}

/* Pagination */
.products-pagination {
    margin-top: 50px;
    text-align: center;
}
.products-pagination ul {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    justify-content: center;
    gap: 10px;
    flex-wrap: wrap;
}
.products-pagination li {
    display: inline-block;
}
.products-pagination a,
.products-pagination span {
    display: inline-block;
    padding: 10px 15px;
    border: 2px solid var(--deep-sky-blue, #00bcd4);
    border-radius: 5px;
    color: var(--deep-sky-blue, #00bcd4);
    text-decoration: none;
    font-weight: 600;
    transition: all 0.3s ease;
}
.products-pagination a:hover {
    background-color: var(--deep-sky-blue, #00bcd4);
    color: #fff;
}
.products-pagination .current {
    background-color: var(--deep-sky-blue, #00bcd4);
    color: #fff;
}

/* Responsive */
@media screen and (max-width: 991px) {
    .products-grid.columns-3,
    .products-grid.columns-4 {
        grid-template-columns: repeat(2, 1fr);
    }
    .products-grid {
        gap: 20px;
    }
    
    .products-toolbar {
        flex-direction: column;
        align-items: flex-start;
    }
}

@media screen and (max-width: 479px) {
    .products-grid.columns-2,
    .products-grid.columns-3,
    .products-grid.columns-4 {
        grid-template-columns: 1fr;
    }
    
    .products-orderby {
        width: 100%;
        min-width: unset;
    }
    
    .products-sorting {
        width: 100%;
    }
}

/* Fix for product category gallery section spacing */
.product-category-gallery .image-grid {
    padding-bottom: 80px;
}



/* Custom Cart Page Styles */
.cart-layout {
    display: grid;
    grid-template-columns: 1fr 380px;
    gap: 40px;
    margin-top: 40px;
}
.cart-items-container {
    display: flex;
    flex-direction: column;
    gap: 20px;
}
.cart-item-card {
    display: grid;
    grid-template-columns: 150px 1fr;
    gap: 25px;
    background: #fff;
    border: 2px solid var(--deep-sky-blue, #00aeef);
    border-radius: 8px;
    padding: 20px;
}
.cart-item-image {
    width: 150px;
    height: 150px;
    overflow: hidden;
    border-radius: 6px;
    background: #f5f5f5;
}
.cart-item-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}
.cart-item-details {
    display: flex;
    flex-direction: column;
}
.cart-item-header {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    margin-bottom: 8px;
}
.cart-item-name {
    font-size: 18px;
    font-weight: 600;
    margin: 0;
    line-height: 1.3;
}
.cart-item-name a {
    color: #333;
    text-decoration: none;
}
.cart-item-name a:hover {
    color: var(--deep-sky-blue, #00aeef);
}
.cart-item-remove .remove-item {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 30px;
    height: 30px;
    background: #f0f0f0;
    border-radius: 50%;
    color: #666;
    text-decoration: none;
    font-size: 20px;
    line-height: 1;
    transition: all 0.3s ease;
}
.cart-item-remove .remove-item:hover {
    background: #ff4444;
    color: #fff;
}
.cart-item-sku {
    font-size: 13px;
    color: #888;
    margin-bottom: 10px;
}
.cart-item-meta {
    font-size: 14px;
    color: #555;
    margin-bottom: 15px;
}
.cart-item-meta dl {
    margin: 0;
    display: flex;
    flex-direction: column;
    gap: 5px;
}
.cart-item-meta dt {
    font-weight: 600;
    display: inline;
}
.cart-item-meta dd {
    margin: 0;
    display: inline;
}
.cart-item-meta dd p {
    margin: 0;
    display: inline;
}
.cart-item-footer {
    display: flex;
    align-items: center;
    gap: 30px;
    margin-top: auto;
    padding-top: 15px;
    border-top: 1px solid #eee;
}
.cart-item-price,
.cart-item-quantity,
.cart-item-subtotal {
    display: flex;
    align-items: center;
    gap: 8px;
}
.cart-item-price .label,
.cart-item-quantity .label,
.cart-item-subtotal .label {
    font-size: 13px;
    color: #888;
}
.cart-item-price .value,
.cart-item-subtotal .value {
    font-size: 16px;
    font-weight: 600;
    color: #333;
}
.cart-item-subtotal .value {
    color: var(--deep-sky-blue, #00aeef);
    font-size: 18px;
}
.cart-item-quantity .quantity {
    display: flex;
    align-items: center;
}
.cart-item-quantity .quantity input {
    width: 60px;
    height: 40px;
    text-align: center;
    border: 2px solid #ddd;
    border-radius: 5px;
    font-size: 16px;
    font-weight: 600;
}
.cart-item-quantity .quantity input:focus {
    border-color: var(--deep-sky-blue, #00aeef);
    outline: none;
}
.cart-actions {
    display: flex;
    justify-content: space-between;
    gap: 15px;
    padding-top: 20px;
}
.cart-actions .main-button {
    padding: 12px 25px;
}
.cart-totals-container {
    position: sticky;
    top: 120px;
    height: fit-content;
}
.cart-totals-box {
    background: #f8f9fa;
    border: 2px solid #e9ecef;
    border-radius: 8px;
    padding: 25px;
}
.cart-totals-box h3 {
    font-size: 20px;
    font-weight: 600;
    margin: 0 0 20px 0;
    padding-bottom: 15px;
    border-bottom: 2px solid var(--deep-sky-blue, #00aeef);
}
.cart-coupon {
    margin-bottom: 20px;
    padding-bottom: 20px;
    border-bottom: 1px solid #ddd;
}
.cart-coupon label {
    display: block;
    font-size: 14px;
    font-weight: 600;
    margin-bottom: 10px;
    color: #333;
}
.coupon-input-group {
    display: flex;
    gap: 10px;
}
.coupon-input-group input {
    flex: 1;
    padding: 10px 15px;
    border: 2px solid #ddd;
    border-radius: 5px;
    font-size: 14px;
}
.coupon-input-group input:focus {
    border-color: var(--deep-sky-blue, #00aeef);
    outline: none;
}
.apply-coupon-btn {
    background: #333;
    color: #fff;
    border: none;
    padding: 10px 20px;
    border-radius: 5px;
    font-size: 14px;
    font-weight: 600;
    cursor: pointer;
    transition: background 0.3s ease;
}
.apply-coupon-btn:hover {
    background: var(--deep-sky-blue, #00aeef);
}
.cart-totals-rows {
    display: flex;
    flex-direction: column;
    gap: 12px;
    margin-bottom: 25px;
}
.totals-row {
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-size: 15px;
}
.totals-row .label {
    color: #666;
}
.totals-row .value {
    font-weight: 600;
    color: #333;
}
.totals-row.coupon-row .value {
    color: #28a745;
}
.totals-row.total {
    padding-top: 15px;
    margin-top: 10px;
    border-top: 2px solid #ddd;
    font-size: 18px;
}
.totals-row.total .label {
    font-weight: 700;
    color: #333;
}
.totals-row.total .value {
    font-size: 22px;
    color: var(--deep-sky-blue, #00aeef);
}
.cart-checkout-button {
    margin-bottom: 20px;
}
.cart-checkout-button .main-button.full-width {
    display: block;
    width: 100%;
    text-align: center;
    padding: 15px 25px;
    font-size: 16px;
}
.payment-icons {
    text-align: center;
    padding-top: 15px;
    border-top: 1px solid #ddd;
}
.payment-icons span {
    display: block;
    font-size: 12px;
    color: #888;
    margin-bottom: 10px;
}
.payment-icons-row {
    display: flex;
    justify-content: center;
    gap: 10px;
}
.payment-icon {
    height: 25px;
    width: auto;
    opacity: 0.7;
}
.cart-empty-container {
    text-align: center;
    padding: 60px 20px;
}
.cart-empty-container p {
    font-size: 18px;
    color: #666;
    margin-bottom: 25px;
}
@media screen and (max-width: 991px) {
    .cart-layout {
        grid-template-columns: 1fr;
        gap: 30px;
    }
    .cart-totals-container {
        position: relative;
        top: 0;
    }
    .cart-item-footer {
        flex-wrap: wrap;
        gap: 15px;
    }
}
@media screen and (max-width: 767px) {
    .cart-item-card {
        grid-template-columns: 100px 1fr;
        gap: 15px;
        padding: 15px;
    }
    .cart-item-image {
        width: 100px;
        height: 100px;
    }
    .cart-item-name {
        font-size: 16px;
    }
    .cart-item-footer {
        flex-direction: column;
        align-items: flex-start;
        gap: 10px;
    }
    .cart-actions {
        flex-direction: column;
    }
    .cart-actions .main-button {
        width: 100%;
        text-align: center;
    }
}
@media screen and (max-width: 479px) {
    .cart-item-card {
        grid-template-columns: 1fr;
    }
    .cart-item-image {
        width: 100%;
        height: 200px;
    }
    .coupon-input-group {
        flex-direction: column;
    }
    .apply-coupon-btn {
        width: 100%;
    }
}







/* Checkout Page Styles */
.checkout-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 40px 20px;
}

.checkout-title {
    text-align: center;
    margin-bottom: 40px;
}

.checkout-title h1 {
    font-size: 32px;
    font-weight: 700;
    color: #333;
    margin: 0 0 10px 0;
}

.checkout-title .title-border {
    width: 60px;
    height: 4px;
    background: #0ea5e9;
    margin: 0 auto;
}

/* Two Column Layout */
.checkout-columns {
    display: grid;
    grid-template-columns: 1fr 420px;
    gap: 40px;
    align-items: start;
}

/* Left Column - Forms */
.checkout-column-left {
    background: #fff;
    border-radius: 12px;
    padding: 30px;
    box-shadow: 0 2px 10px rgba(0,0,0,0.05);
}

/* Right Column - Order Summary */
.checkout-column-right {
    position: sticky;
    top: 120px;
}

/* Section Headers */
.checkout-section-title {
    font-size: 20px;
    font-weight: 600;
    color: #333;
    margin: 0 0 25px 0;
    padding-bottom: 15px;
    border-bottom: 2px solid #0ea5e9;
}

/* Form Fields */
.woocommerce-billing-fields__field-wrapper,
.woocommerce-shipping-fields__field-wrapper,
.woocommerce-additional-fields__field-wrapper {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
}

.woocommerce-billing-fields__field-wrapper .form-row-wide,
.woocommerce-shipping-fields__field-wrapper .form-row-wide,
.woocommerce-additional-fields__field-wrapper .form-row-wide {
    grid-column: 1 / -1;
}

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

.form-row label {
    display: block;
    font-size: 14px;
    font-weight: 500;
    color: #555;
    margin-bottom: 8px;
}

.form-row label .required {
    color: #e53e3e;
}

.form-row input[type="text"],
.form-row input[type="email"],
.form-row input[type="tel"],
.form-row input[type="password"],
.form-row textarea,
.form-row select {
    width: 100%;
    padding: 14px 16px;
    border: 2px solid #e5e7eb;
    border-radius: 8px;
    font-size: 15px;
    transition: border-color 0.2s ease, box-shadow 0.2s ease;
    background: #fff;
}

.form-row input:focus,
.form-row textarea:focus,
.form-row select:focus {
    outline: none;
    border-color: #0ea5e9;
    box-shadow: 0 0 0 3px rgba(14, 165, 233, 0.1);
}

.form-row textarea {
    min-height: 100px;
    resize: vertical;
}

/* Select2 Overrides */
.select2-container--default .select2-selection--single {
    height: 50px !important;
    border: 2px solid #e5e7eb !important;
    border-radius: 8px !important;
}

.select2-container--default .select2-selection--single .select2-selection__rendered {
    line-height: 46px !important;
    padding-left: 16px !important;
    color: #333 !important;
}

.select2-container--default .select2-selection--single .select2-selection__arrow {
    height: 46px !important;
    right: 10px !important;
}

/* Order Review Box */
.order-review-box {
    background: #f8fafc;
    border: 2px solid #e5e7eb;
    border-radius: 12px;
    overflow: hidden;
}

.order-review-header {
    background: #0ea5e9;
    color: #fff;
    padding: 20px 25px;
}

.order-review-header h3 {
    margin: 0;
    font-size: 18px;
    font-weight: 600;
}

.order-review-content {
    padding: 25px;
}

/* Order Items */
.order-review-items {
    margin-bottom: 20px;
}

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

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

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

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

.order-item-details {
    flex: 1;
    min-width: 0;
}

.order-item-name {
    font-size: 14px;
    font-weight: 600;
    color: #333;
    margin-bottom: 4px;
}

.order-item-meta {
    font-size: 12px;
    color: #666;
    line-height: 1.4;
}

.order-item-qty {
    font-size: 13px;
    color: #0ea5e9;
    font-weight: 500;
    margin-top: 4px;
}

.order-item-price {
    font-size: 15px;
    font-weight: 600;
    color: #333;
    white-space: nowrap;
}

/* Order Totals */
.order-totals {
    border-top: 2px solid #e5e7eb;
    padding-top: 20px;
    margin-top: 10px;
}

.order-totals-row {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 10px 0;
    font-size: 14px;
}

.order-totals-row.total {
    border-top: 2px solid #e5e7eb;
    margin-top: 10px;
    padding-top: 15px;
    font-size: 18px;
    font-weight: 700;
}

.order-totals-row.total .amount {
    color: #0ea5e9;
    font-size: 22px;
}

/* Payment Methods */
.payment-methods-section {
    margin-top: 25px;
    padding-top: 25px;
    border-top: 2px solid #e5e7eb;
}

.payment-methods-title {
    font-size: 16px;
    font-weight: 600;
    margin-bottom: 15px;
    color: #333;
}

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

#payment .wc_payment_method {
    background: #fff;
    border: 2px solid #e5e7eb;
    border-radius: 8px;
    margin-bottom: 10px;
    overflow: hidden;
}

#payment .wc_payment_method label {
    display: flex;
    align-items: center;
    padding: 15px;
    cursor: pointer;
    font-weight: 500;
    margin: 0;
}

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

#payment .wc_payment_method .payment_box {
    padding: 15px;
    background: #f8fafc;
    border-top: 1px solid #e5e7eb;
    font-size: 13px;
    color: #666;
}

#payment .wc_payment_method.payment_method_stripe img,
#payment .wc_payment_method img {
    max-height: 24px;
    margin-left: 10px;
}

/* Place Order Button */
#place_order {
    width: 100%;
    background: #0ea5e9 !important;
    color: #fff !important;
    border: none !important;
    border-radius: 8px !important;
    padding: 18px 30px !important;
    font-size: 16px !important;
    font-weight: 600 !important;
    cursor: pointer !important;
    transition: all 0.3s ease !important;
    margin-top: 20px !important;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

#place_order:hover {
    background: #0284c7 !important;
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(14, 165, 233, 0.3);
}

/* Privacy Policy */
.woocommerce-privacy-policy-text {
    font-size: 12px;
    color: #666;
    margin-top: 15px;
    text-align: center;
}

.woocommerce-privacy-policy-text a {
    color: #0ea5e9;
}

/* Coupon Section */
.woocommerce-form-coupon-toggle {
    background: #f0f9ff;
    border: 1px solid #bae6fd;
    border-radius: 8px;
    padding: 15px 20px;
    margin-bottom: 30px;
}

.woocommerce-form-coupon-toggle .woocommerce-info {
    margin: 0;
    padding: 0;
    background: none;
    border: none;
    color: #0369a1;
    font-size: 14px;
}

.woocommerce-form-coupon-toggle .woocommerce-info::before {
    display: none;
}

.woocommerce-form-coupon-toggle a {
    color: #0ea5e9;
    font-weight: 600;
}

.checkout_coupon {
    background: #f8fafc;
    border: 2px solid #e5e7eb;
    border-radius: 8px;
    padding: 20px;
    margin-bottom: 30px;
}

.checkout_coupon .form-row-first {
    width: 70%;
    display: inline-block;
}

.checkout_coupon .form-row-last {
    width: 28%;
    display: inline-block;
}

.checkout_coupon button {
    background: #333;
    color: #fff;
    border: none;
    border-radius: 6px;
    padding: 14px 20px;
    cursor: pointer;
    font-weight: 600;
    width: 100%;
}

/* Additional Information */
.woocommerce-additional-fields {
    margin-top: 30px;
    padding-top: 30px;
    border-top: 2px solid #f0f0f0;
}

/* Error Messages */
.woocommerce-error,
.woocommerce-message {
    padding: 15px 20px;
    border-radius: 8px;
    margin-bottom: 20px;
}

.woocommerce-error {
    background: #fef2f2;
    border: 1px solid #fecaca;
    color: #dc2626;
}

.woocommerce-message {
    background: #f0fdf4;
    border: 1px solid #bbf7d0;
    color: #16a34a;
}

/* No Payment Methods Warning */
.woocommerce-notice--info {
    background: #fffbeb;
    border: 1px solid #fcd34d;
    color: #b45309;
    padding: 15px;
    border-radius: 8px;
    font-size: 13px;
}

/* Hide default WooCommerce table */
.woocommerce-checkout-review-order-table {
    display: none;
}

/* Responsive */
@media (max-width: 991px) {
    .checkout-columns {
        grid-template-columns: 1fr;
    }
    
    .checkout-column-right {
        position: static;
    }
    
    .woocommerce-billing-fields__field-wrapper,
    .woocommerce-shipping-fields__field-wrapper {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 480px) {
    .checkout-column-left {
        padding: 20px;
    }
    
    .order-review-content {
        padding: 20px;
    }
    
    .order-item {
        flex-direction: column;
    }
    
    .order-item-price {
        margin-top: 10px;
    }
}

#payment .wc_payment_method label {
    display: flex;
    align-items: center;
    padding: 0px;
    cursor: pointer;
    font-weight: 500;
    margin: 0;
}

#add_payment_method #payment ul.payment_methods li, .woocommerce-cart #payment ul.payment_methods li, .woocommerce-checkout #payment ul.payment_methods li {
    line-height: 2;
    text-align: left;
    margin: 0;
    font-weight: 400;
    padding: 20px;
}

#add_payment_method #payment ul.payment_methods, .woocommerce-cart #payment ul.payment_methods, .woocommerce-checkout #payment ul.payment_methods {
    text-align: left;
    padding: 0px;
    border-bottom: 1px solid rgba(104, 87, 125, .14);
    margin: 0;
    list-style: none outside;
}