/* Custom Product Detail Page Styles */
.catalog-product-view .page-main {
    /*max-width: 1200px;
    margin: 0 auto;
    padding: 20px;*/
}

/* Product Title */
.page-title-wrapper .page-title {
    font-size: 24px;
    font-weight: 600;
    color: #333;
    margin-bottom: 10px;
    line-height: 1.3;
}

/* Price Styling */
/*.product-info-price {
    margin: 20px 0;
}

.product-info-price .price-box {
    display: flex;
    align-items: center;
    gap: 15px;
}

.product-info-price .price {
    font-size: 28px;
    font-weight: 700;
    color: #e74c3c;
}

.product-info-price .old-price {
    font-size: 18px;
    color: #999;
    text-decoration: line-through;
}*/

/* Shipping Info */
.custom-shipping-info {
    background: #e8f5e8;
    border: 1px solid #4caf50;
    border-radius: 20px;
    padding: 8px 16px;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    margin: 15px 0;
    font-size: 14px;
    color: #2e7d32;
}

.custom-shipping-info::before {
    content: "✓";
    color: #4caf50;
    font-weight: bold;
}

/* Size Selection */
.product-options-wrapper {
    margin: 25px 0;
}

.product-options-wrapper .field {
    margin-bottom: 20px;
}

.product-options-wrapper .field .label {
    font-size: 16px;
    font-weight: 600;
    color: #333;
    margin-bottom: 10px;
    display: block;
}

/* Size buttons */
.size-options {
    display: flex;
    gap: 10px;
    flex-wrap: wrap;
}

.size-option {
    padding: 10px 20px;
    border: 2px solid #ddd;
    border-radius: 25px;
    background: white;
    cursor: pointer;
    font-size: 14px;
    font-weight: 500;
    transition: all 0.3s ease;
}

.size-option:hover {
    border-color: #007bff;
    color: #007bff;
}

.size-option.selected {
    background: #007bff;
    border-color: #007bff;
    color: white;
}

/* Quantity and Add to Cart Section */
.custom-quantity-section {
    display: flex;
    align-items: center;
    gap: 15px;
    margin: 0px 0;
    padding: 20px 0;
}

.qty-wrapper {
  display: flex;
  align-items: center;
  border: 1px solid #ddd;
  border-radius: 25px;
  overflow: hidden;
  background: #fff;
  width: 200px;
}

.qty-btn {
    width: 40px;
    height: 40px;
    border: none;
    background: #fff;
    cursor: pointer;
    font-size: 18px;
    font-weight: bold;
    transition: background 0.3s ease;
}

/*.qty-btn:hover {
    background: #e9ecef;
}*/
button:hover, .cart.table-wrapper .actions-toolbar > .action:hover, .action-gift:hover {
  background: none;
  border: 0px solid #fff;
  color: #555;
}
.qty-input {
    width: 60px;
    height: 40px;
    text-align: center;
    border: none;
    font-size: 16px;
    font-weight: 600;
	border-left: 1px solid #ddd;
    border-right: 1px solid #ddd;
}

/* Add to Cart Button */
.action.primary.tocart {
    background: linear-gradient(135deg, #4285f4 0%, #1e40af 100%);
    border: none;
    border-radius: 25px;
    color: white;
    font-size: 16px;
    font-weight: 600;
    /*padding: 15px 40px;*/
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(66, 133, 244, 0.3);
}

.action.primary.tocart:hover {
    background: linear-gradient(135deg, #1e40af 0%, #1e3a8a 100%);
    box-shadow: 0 6px 20px rgba(66, 133, 244, 0.4);
    transform: translateY(-2px);
}

/* Product Tabs */
.custom-product-tabs {
    border-top: 1px solid #eee;
    padding-top: 30px;
	background: #fff;
	background: #fff;
	padding: 20px;
}

.tab-nav {
    display: flex;
    gap: 0;
    margin-bottom: 20px;
    border-bottom: 1px solid #eee;
}

.tab-nav button {
    padding: 15px 25px;
    border: none;
    background: transparent;
    cursor: pointer;
    font-size: 16px;
    font-weight: 500;
    color: #666;
    border-bottom: 3px solid transparent;
    transition: all 0.3s ease;
}

.tab-nav button.active {
    color: #007bff;
    border-bottom-color: #007bff;
}

.tab-nav button:hover {
    color: #007bff;
}

.tab-content {
    padding: 20px 0;
    line-height: 1.6;
}

/* Mobile Responsive */
@media (max-width: 768px) {
    .custom-quantity-section {
        flex-direction: column;
        align-items: stretch;
        gap: 15px;
    }
    
    .action.primary.tocart {
        width: 100%;
        text-align: center;
    }
    
    .size-options {
        justify-content: center;
    }
    
    .tab-nav {
        flex-wrap: wrap;
        justify-content: center;
    }
}